/* What's On page styles */

.whats-background {
    position: relative;
    background-color: var(--color-bg);
    overflow: hidden;
}

.whats-background::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        url("../assets/logos/1 Charcoal/3x/Charcoal _ Ball@3x.png"),
        url("../assets/logos/1 Charcoal/3x/Charcoal _ Coconut@3x.png"),
        url("../assets/logos/1 Charcoal/3x/Charcoal _ Disco@3x.png"),
        url("../assets/logos/1 Charcoal/3x/Charcoal _ Guitar@3x.png"),
        url("../assets/logos/1 Charcoal/3x/Charcoal _ Vinyl@3x.png");
    background-repeat: no-repeat;
    background-size: 200px, 220px, 260px, 200px, 220px;
    background-position:
        8% 22%,
        78% 26%,
        54% 86%,
        14% 74%,
        86% 72%;
    opacity: 0.28;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: multiply;
}

.whats-background > * {
    position: relative;
    z-index: 1;
}

.whats-page {
    background: transparent;
    color: var(--color-text);
}

.whats-hero-banner {
    position: relative;
    padding: 44px 24px 82px;
    background: var(--globe-charcoal);
    overflow: hidden;
    color: var(--globe-cream);
}

.whats-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 24px;
}

.whats-hero-copy {
    display: grid;
    gap: 14px;
}

.whats-hero-copy .text-kicker {
    font-size: 26px;
    color: var(--orange);
    letter-spacing: 0.01em;
    line-height: 1.25;
}

.whats-hero-logo {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.whats-hero-logo > img {
    max-width: 520px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 12px 22px rgb(57 28 28 / 20%));
}

.whats-logo-cycle {
    position: relative;
    width: min(320px, 70vw);
    height: min(320px, 70vw);
}

.whats-logo-cycle__item {
    position: absolute;
    inset: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 12px 22px rgb(57 28 28 / 20%));
    animation: whats-logo-cycle 20s ease-in-out infinite;
    animation-delay: calc(var(--logo-index) * 2.5s);
    animation-fill-mode: both;
}

@keyframes whats-logo-cycle {
    0% {
        opacity: 0;
        transform: scale(0.96);
    }

    6% {
        opacity: 1;
        transform: scale(1);
    }

    12.5% {
        opacity: 1;
        transform: scale(1);
    }

    18% {
        opacity: 0;
        transform: scale(1.02);
    }

    100% {
        opacity: 0;
        transform: scale(1.02);
    }
}

.whats-hero-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    width: 120%;
    height: 90px;
    padding-top:  100px;
    
}

.whats-hero-wave path {
    fill: var(--color-bg);
}


.whats-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px 72px;
    display: grid;
    gap: 44px;
}

.whats-find {
    display: grid;
    gap: 16px;
    align-items: center;
}

.whats-find .text-section-headline {
    margin: 0;
    text-align: center;
}

.whats-find-map img {
    display: block;
    width: min(900px, 90%);
    height: auto;
    border-radius: var(--radius-tile);
    box-shadow: 0 0 12px rgb(241 107 129 / 45%), 0 0 28px rgb(241 107 129 / 30%);
}

.whats-find-map {
    display: flex;
    justify-content: center;
}

.explore-plan {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    align-items: start;
}

.explore-column {
    display: grid;
    gap: 14px;
}

.explore-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.feature-tiles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.feature-tiles .placeholder {
    min-height: 420px;
}

.plan-visit {
    display: grid;
    margin-top: 55px;
    gap: 6px;
    padding: 16px 16px 18px;
    border-radius: var(--radius-control);
    background: transparent;
    border: 1px solid rgb(57 28 28 / 18%);
    box-shadow:
        0 18px 34px rgb(241 107 129 / 18%),
        0 1px 0 rgb(241 107 129 / 16%),
        inset 0 1px 0 rgb(255 255 255 / 60%);
    height: 490px;
    
}


.plan-visit .text-section-headline {
    margin: 0;
    opacity: 1;
}

.plan-visit-options {
    display: grid;
    gap: 15px;
}

.plan-visit-option {
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius-control);
    background: rgb(255 255 255 / 75%);
    backdrop-filter: blur(6px);
    padding: 10px 12px;
    box-shadow: none;
    opacity: 1;
}

.plan-visit-option > *:not(summary) {
    display: block;
}

.plan-visit-option summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.plan-visit-option[open] summary {
    margin-bottom: 6px;
}

.plan-visit-option summary::-webkit-details-marker {
    display: none;
}

.plan-visit-option summary::after {
    content: "▾";
    font-size: 12px;
    color: var(--color-text-muted);
    transition: transform 200ms ease;
}

.plan-visit-option[open] summary::after {
    transform: rotate(180deg);
}

.plan-visit-content {
    display: grid;
    gap: 6px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-4px);
    transition: max-height 260ms ease, opacity 200ms ease, transform 200ms ease;
}

.plan-visit-option.is-open .plan-visit-content {
    opacity: 1;
    transform: translateY(0);
}

.plan-info {
    margin: 0;
    padding: 4px 0 6px;
    height: auto;
    opacity: 1;
    overflow: visible;
    line-height: 1.65;
    color: var(--color-text-muted);
}

.plan-visit-link {
    display: inline;
    color: var(--globe-red);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
    margin-top: 2px;
    line-height: 1.4;
}

.image-strip-full {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 32px 0;
}

.image-strip-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 1fr);
    gap: 16px;
    align-items: stretch;
    overflow: hidden;
    padding: 0 24px;
}

.image-strip-track .placeholder {
    min-height: 320px;
}

.coming-soon {
    display: grid;
    gap: 16px;
}

.coming-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.coming-header img {
    max-width: 120px;
    height: auto;
}

.coming-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
}

.coming-grid .placeholder {
    min-height: 160px;
}

.event-card {
    display: grid;
    gap: 8px;
    flex: 0 1 320px;
    max-width: 320px;
    text-decoration: none;
    color: var(--globe-charcoal);
    border-radius: var(--radius-tile);
    padding: 0;
    background: rgb(255 255 255 / 72%);
    box-shadow: 0 16px 30px rgb(57 28 28 / 16%);
    backdrop-filter: blur(6px);
    border: 1px solid rgb(57 28 28 / 12%);
    transition: transform 150ms ease, box-shadow 150ms ease;
}

.event-meta {
    display: grid;
    gap: 2px;
    padding: 8px 12px 12px;
}

.event-title {
    margin: 0;
    font-weight: 700;
}

.event-card .placeholder {
    height: auto;
    min-height: 0;
    border-radius: var(--radius-tile) var(--radius-tile) 0 0;
    overflow: hidden;
}

.event-card .event-image img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 36px rgb(57 28 28 / 20%);
}

@media (width <= 980px) {
    .whats-hero-inner,
    .explore-plan {
        grid-template-columns: 1fr;
    }

    .whats-hero-logo {
        justify-content: center;
    }

    .whats-find {
        gap: 12px;
    }

    .plan-visit {
        height: auto;
    }

    .whats-hero-wave {
        height: 30px;
        padding-top: 40px;
    }

    .coming-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (width <= 640px) {
    .whats-hero-banner {
        padding: 40px 18px 68px;
    }

    .whats-hero-logo {
        justify-content: center;
    }

    .whats-hero-wave {
        height: 20px;
        padding-top: 40px;
    }

    .whats-page {
        overflow-x: hidden;
    }

    .whats-content {
        padding: 8px 18px 56px;
    }

    .whats-hero-copy .text-kicker {
        font-size: 22px;
    }

    .image-strip-full {
        display: none;
    }

    .whats-hero-logo img {
        max-width: 260px;
    }

    .feature-tiles {
        grid-template-columns: 1fr;
    }

    .feature-tiles .placeholder {
        min-height: 260px;
    }

    .image-strip-track {
        grid-auto-columns: minmax(220px, 1fr);
        gap: 12px;
    }

    .coming-grid {
        gap: 14px;
    }
}

@media (width <= 480px) {
    .whats-hero-banner {
        padding: 32px 16px 58px;
    }

    .plan-visit {
        padding: 14px;
    }

    .plan-visit-options {
        gap: 12px;
    }
}
