﻿.nav__logo-text {
    color: var(--cream);
}

.nav__links a {
    color: var(--cream);
}

.nav.is-scrolled .nav__logo-text {
    color: var(--dark);
}

.nav.is-scrolled .nav__links a {
    color: var(--dark);
}

.nav.is-scrolled .nav__links li.is-active a {
    color: var(--gold);
    font-weight: 500;
}

.nav__links li.is-active a {
    color: var(--gold);
    font-weight: 500;
}

.nav__links a:hover {
    opacity: 0.6;
}

.nav__cta {
    color: #fff;
    background: var(--dark);
}

    .nav__cta:hover {
        background: #2e1f06;
        transform: scale(0.98);
    }

    .nav__cta svg {
        width: 13px;
        height: 13px;
        stroke: currentColor;
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.nav__burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 110;
    opacity: 0;
    animation: fadeDown 0.8s 0.3s var(--ease) forwards;
}

    .nav__burger span {
        display: block;
        width: 22px;
        height: 1.5px;
        background: var(--cream);
        transition: transform 0.3s var(--ease), opacity 0.3s;
        transform-origin: center;
    }

.nav.is-scrolled .nav__burger span {
    background: var(--dark);
}

/* ── Desktop breakpoints (nav) ── */
@media (min-width: 768px) {
    .nav {
        height: 80px;
    }

    .nav__links {
        display: flex;
    }

    .nav__cta {
        display: flex;
    }

    .nav__burger {
        display: none;
    }

    .nav__drawer-close {
        top: 1.75rem;
        right: 3rem;
    }
}

/* ════════════════════════════════════════════
       EVENT HERO — Featured Recording
    ════════════════════════════════════════════ */
.eventhero {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}



.eventhero__topbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 7.5rem 0 1.5rem;
}

.eventhero__eyebrow {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(245,237,216,0.5);
    margin-bottom: 0.75rem;
}

.eventhero__title {
    font-family: 'Satoshi';
    font-weight: 500;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    line-height: 1.15;
    color: var(--cream);
    text-align: center;
}

.eventhero__nav {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.eventhero__nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(245,237,216,0.35);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

    .eventhero__nav-btn:hover {
        background: rgba(245,237,216,0.08);
        border-color: rgba(245,237,216,0.6);
    }

    .eventhero__nav-btn svg {
        width: 15px;
        height: 15px;
        stroke: var(--cream);
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.eventhero__player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

    .eventhero__player iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

@media (min-width: 768px) {
    .eventhero__topbar {
        padding: 8.5rem 0 2rem;
    }

    .eventhero__nav-btn {
        width: 44px;
        height: 44px;
    }
}

/* ════════════════════════════════════════════
       BOOKING — dark CTA with request form
    ════════════════════════════════════════════ */
.booking {
    padding: 3rem 0;
}

    .booking::before {
        display: none;
    }


.booking__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

/* ── Left: copy ── */
.booking__eyebrow {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(245,237,216,0.45);
    margin-bottom: 1rem;
}

.booking__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(2.25rem, 6vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 1.25rem;
}

.booking__desc {
    font-size: 0.925rem;
    line-height: 1.6;
    color: rgba(245,237,216,0.55);
    max-width: 340px;
}

/* ── Right: form card ── */
.booking__card {
    max-width: 960px;
    margin-inline: auto;
}

.booking__card-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(26,18,8,0.4);
    margin-bottom: 1.1rem;
    line-height: 1.5;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.booking-form__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.booking-form__field {
    position: relative;
}

    .booking-form__field input,
    .booking-form__field textarea {
        width: 100%;
        font-family: 'Inter', sans-serif;
        font-size: 0.85rem;
        color: var(--dark);
        background: #FFFDF7;
        border: 1px solid rgba(26,18,8,0.12);
        border-radius: 99999px;
        padding: 0.9rem 1.1rem;
        outline: none;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .booking-form__field textarea {
        border-radius: 14px;
    }

        .booking-form__field input::placeholder,
        .booking-form__field textarea::placeholder {
            color: rgba(26,18,8,0.4);
        }

        .booking-form__field input:focus,
        .booking-form__field textarea:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px var(--gold-dim);
        }

    .booking-form__field textarea {
        resize: vertical;
        min-height: 130px;
        line-height: 1.55;
    }

.booking-form__field-icon {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    stroke: rgba(26,18,8,0.4);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
}

.booking-form__field input[type="date"] {
    padding-right: 2.5rem;
    color: transparent;
    -webkit-appearance: none;
    appearance: none;
}

    .booking-form__field input[type="date"]:valid {
        color: var(--dark);
    }

/* Custom placeholder — the native `placeholder` attribute is ignored
       on date inputs by every browser, and is often just blank on mobile. */
.booking-form__date-placeholder {
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(26,18,8,0.4);
    pointer-events: none;
}

.booking-form__field input[type="date"]:valid ~ .booking-form__date-placeholder {
    display: none;
}

/* Hide the native calendar icon so only our custom arrow shows.
       display:none is used instead of opacity:0 — opacity alone still
       leaves the icon visible on several mobile browsers (notably
       Android Chrome), even though it works fine on desktop. */
.booking-form__field input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
}

.booking-form__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    background: var(--dark);
    border: none;
    border-radius: 99999px;
    padding: 1rem 1.5rem;
    margin-top: 0.5rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

    .booking-form__submit:hover {
        background: #2e1f06;
    }

    .booking-form__submit:active {
        transform: scale(0.98);
    }

    .booking-form__submit svg {
        width: 15px;
        height: 15px;
        stroke: #fff;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .booking-form__submit.is-sent {
        background: var(--gold);
        pointer-events: none;
    }

@media (min-width: 640px) {
    .booking-form__row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .booking {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .booking__grid {
        grid-template-columns: 0.85fr 1fr;
        gap: 4rem;
    }
}

@media (min-width: 1280px) {
}

