/* Find Events page */
.find-events-main {
    padding-top: 80px;
    min-height: 100vh;
    background: #000000;
}

.find-events-hero {
    padding: 2rem 0 1.5rem;
    text-align: center;
}

.find-events-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.find-events-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    color: #e5e7eb;
}

.search-row {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 480px;
    margin: 0 auto;
}

.search-input {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1rem;
    border: 1px solid #374151;
    border-radius: 8px;
    background: #111827;
    color: #ffffff;
    font-size: 1rem;
}

.search-input::placeholder {
    color: #9ca3af;
}

.search-input:focus {
    outline: none;
    border-color: #DC2626;
}

.search-btn {
    padding: 0.75rem 1.25rem;
    background: #DC2626;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.search-btn:hover {
    background: #B91C1C;
}

.find-events-content {
    padding: 1rem 0 2rem;
}

.find-events-container {
    display: grid;
    grid-template-columns: 1fr 360px;
    grid-template-rows: auto auto;
    gap: 1.5rem;
    align-items: start;
}

.map-section {
    grid-column: 1;
    grid-row: 1;
    position: sticky;
    top: 100px;
}

.list-section {
    grid-column: 2;
    grid-row: 1 / -1;
}

.ad-banner-wrap {
    grid-column: 1;
    grid-row: 2;
}

@media (max-width: 900px) {
    .find-events-container {
        grid-template-columns: 1fr;
        grid-template-rows: unset;
    }
    .map-section {
        grid-column: auto;
        grid-row: auto;
        position: static;
    }
    .list-section {
        grid-column: auto;
        grid-row: auto;
        position: relative;
        z-index: 1;
    }
    .ad-banner-wrap {
        grid-column: auto;
        grid-row: auto;
    }
}

.map-container {
    height: 420px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #1f2937;
}

.map-hint {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-top: 0.5rem;
}

.ad-banner-wrap {
    margin-top: 1rem;
    padding: 1rem;
    background: #111827;
    border-radius: 12px;
    border-top: 3px solid #DC2626;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-section {
    background: #111827;
    border-radius: 12px;
    padding: 1.25rem;
    min-height: 200px;
}

.list-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.event-card {
    padding: 0.75rem 1rem;
    background: #1f2937;
    border-radius: 8px;
    border-left: 3px solid #DC2626;
}

.event-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.event-card .event-meta {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 0.25rem;
}

.event-card .event-address {
    font-size: 0.8rem;
    color: #6b7280;
}

.event-card a {
    font-size: 0.875rem;
    color: #DC2626;
    text-decoration: none;
    margin-top: 0.5rem;
    display: inline-block;
}

.event-card a:hover {
    text-decoration: underline;
}

.events-empty,
.events-loading {
    color: #9ca3af;
    font-size: 0.95rem;
    padding: 1rem 0;
}

/* CTA section */
.find-events-cta {
    padding: 3rem 0;
    text-align: center;
    background: #0a0a0a;
    border-top: 1px solid #1f2937;
}

.cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.cta-description {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    color: #e5e7eb;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.lead-form-container {
    margin-bottom: 1rem;
}

.lead-form-label {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.lead-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.lead-input {
    padding: 0.6rem 1rem;
    border: 1px solid #374151;
    border-radius: 8px;
    background: #111827;
    color: #ffffff;
    font-size: 0.95rem;
    min-width: 180px;
}

.lead-input::placeholder {
    color: #9ca3af;
}

.lead-submit {
    padding: 0.6rem 1.25rem;
    background: #DC2626;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.lead-submit:hover {
    background: #B91C1C;
}

.lead-hint {
    font-size: 0.85rem;
    color: #9ca3af;
}

.lead-success {
    color: #10b981;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .store-btn {
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
}

.cta-buttons .store-btn img {
    display: block;
}
