/* ============================================================
   SCHEDULE PAGE – HERO
============================================================ */

.hero.schedule-hero {
    min-height: 36vh;
    padding-top: calc(var(--nav-h) + 40px);
    padding-bottom: 40px;
    text-align: center;
}

.hero.schedule-hero h1 {
    font-size: clamp(52px, 7vw, 78px);
}

.hero.schedule-hero p {
    font-size: clamp(18px, 3vw, 24px);
    max-width: 640px;
    margin-inline: auto;
    margin-top: 8px;
    color: var(--gold);
}

.schedule-hero-tag {
    display: inline-block;
    padding: 7px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), #f5e2b3);
    color: #4b2e00;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(0, 0, 0, 0.1);
}

@media (max-width: 900px) {
    .hero.schedule-hero {
        padding-top: calc(var(--nav-h) + 24px);
        padding-bottom: 30px;
    }
}

/* ============================================================
   MAIN SCHEDULE BAND – LIVE CALENDAR
============================================================ */

.schedule-section.content-section {
    position: relative;
    padding: clamp(40px, 7vw, 64px) 20px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.04), transparent 60%),
        radial-gradient(circle at bottom right, rgba(246, 196, 83, 0.08), transparent 60%),
        var(--brand-deep);
    color: #fff;
}

.schedule-section::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -12px;
    height: 12px;
    background: linear-gradient(90deg, var(--gold), #ffe29b);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.schedule-section .section-inner {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.schedule-heading-block {
    max-width: 720px;
    margin-bottom: clamp(24px, 3vw, 32px);
}

.schedule-heading-block--center {
    text-align: center;
    margin-inline: auto;
}

.schedule-heading-block h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 44px);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffffff;
    position: relative;
}

.schedule-heading-block h2::after {
    content: "";
    display: block;
    width: 260px;
    height: 8px;
    margin: 10px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), #ffe29b);
}

.schedule-heading-block p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Calendar card */

.schedule-card {
    border-radius: 26px;
    padding: clamp(24px, 3.8vw, 34px);
    background: #ffffff;
    color: var(--text);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.24),
        0 3px 12px rgba(0, 0, 0, 0.14);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.schedule-card--full {
    max-width: 980px;
    margin: 0 auto;
}

.schedule-card__header {
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.schedule-card__title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.schedule-card__icon {
    width: 44px;
    height: auto;
    flex-shrink: 0;
}

.schedule-card__title {
    margin: 0;
    font-size: 1.6rem;
    color: var(--brand-deep);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.schedule-card__subtitle {
    margin: 4px 0 0;
    font-size: 1.02rem;
    color: rgba(0, 0, 0, 0.7);
}

.schedule-calendar-frame {
    margin-top: 14px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.16),
        0 3px 10px rgba(0, 0, 0, 0.07);
    background: #ffffff;
}

.schedule-calendar-frame iframe {
    width: 100%;
    min-height: 700px;
    border: 0;
    display: block;
}

.schedule-card__footnote {
    margin-top: 12px;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.7);
}

.schedule-card__footnote a {
    color: var(--brand-deep);
    text-decoration: bold;
}

.schedule-card__footnote a:hover {
    color: var(--gold);
}

@media (max-width: 768px) {
    .schedule-card--full {
        max-width: 100%;
    }

    .schedule-calendar-frame iframe {
        min-height: 540px;
    }
}

@media (max-width: 480px) {
    .schedule-card {
        padding: 18px 14px 20px;
    }

    .schedule-calendar-frame iframe {
        min-height: 480px;
    }
}

/* ============================================================
   UPCOMING STOPS – DARK BAND + COASTAL CARDS
============================================================ */

.schedule-upcoming.content-section {
    background:
        radial-gradient(circle at top left, rgba(128, 255, 255, 0.06), transparent 58%),
        radial-gradient(circle at bottom right, rgba(246, 196, 83, 0.08), transparent 55%),
        #041b1b;
    color: #fff;
}

.schedule-upcoming .section-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.schedule-upcoming__header {
    margin-bottom: clamp(24px, 3vw, 32px);
}

.schedule-upcoming__header h2 {
    margin: 0;
    color: #ffffff;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: clamp(26px, 3.4vw, 32px);
    position: relative;
}

.schedule-upcoming__header h2::after {
    content: "";
    display: block;
    width: 220px;
    height: 7px;
    margin-top: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), #ffe29b);
}

.schedule-upcoming__header p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.92);
}

/* List layout */

.schedule-upcoming .schedule-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 4px;
}

@media (min-width: 720px) {
    .schedule-upcoming .schedule-list {
        grid-template-columns: 1fr 1fr;
    }
}

/* Event cards */

.schedule-upcoming .event-card {
    position: relative;
    padding: 16px 18px 18px;
    border-radius: 20px;
    background:
        radial-gradient(circle at top left, rgba(18, 128, 128, 0.16), transparent 55%),
        radial-gradient(circle at bottom right, rgba(246, 196, 83, 0.12), transparent 60%),
        #ffffff;
    border: 1px solid rgba(5, 54, 54, 0.12);
    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.25),
        0 2px 10px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    color: var(--text);
}

.schedule-upcoming .event-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 5px;
    border-radius: 999px;
    background: linear-gradient(to bottom, var(--gold), var(--brand));
}

.schedule-upcoming .event-card:hover {
    transform: translateY(-2px);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.32),
        0 4px 14px rgba(0, 0, 0, 0.16);
}

.schedule-upcoming .event-card__header {
    margin-bottom: 6px;
}

.schedule-upcoming .event-card__title {
    margin: 0;
    font-size: 0.98rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand-deep);
}

.schedule-upcoming .event-card__datetime {
    margin: 4px 0 0;
    font-size: 0.9rem;
    color: var(--gold-deep);
}

/* Primary date/time header */

.schedule-upcoming .event-card__datetime--primary {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-deep);
}

/* Location */

.schedule-upcoming .event-card__location {
    display: block;
    margin: 8px 0 0;
    font-size: 1rem;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.schedule-upcoming .event-card__location::before {
    content: "📍";
    margin-right: 6px;
}

.schedule-upcoming .event-card__location a {
    color: var(--brand-deep);
    text-decoration: none;
}

.schedule-upcoming .event-card__location a:hover {
    color: var(--gold-deep);
}

/* Description */

.schedule-upcoming .event-card__description {
    margin: 8px 0 0;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.8);
}

/* Optional modifier for private events */

.schedule-upcoming .event-card.event-card--private {
    background:
        radial-gradient(circle at top left, rgba(5, 54, 54, 0.35), transparent 60%),
        #f7f9f6;
}

/* Loading + small print */

.schedule-loading {
    margin: 0;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.34);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.98rem;
}

.schedule-small-print {
    margin-top: 16px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.88);
}

.schedule-small-print .schedule-link {
    border-bottom-color: rgba(255, 255, 255, 0.6);
}

.schedule-small-print a,
.schedule-small-print .schedule-link {
    color: var(--gold);
    text-decoration: none;
}

.schedule-small-print a:hover,
.schedule-small-print .schedule-link:hover {
    color: var(--gold-deep);
}

.schedule-upcoming .event-card__location .map-choice {
    color: var(--brand-deep);
    cursor: pointer;
}

.schedule-upcoming .event-card__location .map-choice:hover {
    color: var(--gold-deep);
}