/* Complete Global Styles for Bennewitz Festival - From program.html */

:root {
    --accent-red: #b72321;
    --text-primary: #1a1a1a;
    --text-secondary: #666;
    --glass-light: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(0, 0, 0, 0.03);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #fafafa;
    color: var(--text-primary);
    overflow-x: hidden;
    opacity: 1;
    /* page fade removed for instant render */
    font-weight: 400;
    letter-spacing: 0.02em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 400;
    letter-spacing: 0.05em;
}

h1 {
    font-size: 2.8rem;
    line-height: 1.4;
}

h2 {
    font-size: 2.8rem;
    line-height: 1.4;
}

h3 {
    font-size: 1.6rem;
    line-height: 1.4;
}

p {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.9;
    letter-spacing: 0.02em;
}

@keyframes pageFadeIn {
    to {
        opacity: 1;
    }
}

/* Base white layer (bottom) */
.base-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #ffffff;
    pointer-events: none;
}

/* Animated color blobs (middle - on white) */
.color-blob {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    filter: blur(100px) brightness(1.3);
    opacity: 0.8;
    pointer-events: none !important;
    z-index: 2;
    mix-blend-mode: normal;
    will-change: transform;
    contain: strict;
}

.blob-red {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #ff3838 0%, rgba(255, 56, 56, 0.5) 50%, rgba(183, 35, 33, 0) 70%);
    animation: moveRed 25s ease-in-out infinite;
}

.blob-yellow {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, #ffd700 0%, rgba(255, 215, 0, 0.5) 50%, rgba(244, 196, 48, 0) 70%);
    animation: moveYellow 30s ease-in-out infinite;
}

.blob-blue {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #5b8fff 0%, rgba(91, 143, 255, 0.5) 50%, rgba(65, 105, 225, 0) 70%);
    animation: moveBlue 28s ease-in-out infinite;
}

/* Glass layer over colors (top of background) */
.glass-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: rgba(200, 200, 200, 0.3);
    backdrop-filter: blur(60px) saturate(150%) brightness(0.95);
    -webkit-backdrop-filter: blur(60px) saturate(150%) brightness(0.95);
    pointer-events: none;
}

@keyframes moveRed {
    0%, 100% {
        transform: translate(-10vw, -10vh) scale(1);
    }
    25% {
        transform: translate(70vw, -5vh) scale(1.2);
    }
    50% {
        transform: translate(80vw, 60vh) scale(0.9);
    }
    75% {
        transform: translate(10vw, 70vh) scale(1.1);
    }
}

@keyframes moveYellow {
    0%, 100% {
        transform: translate(-10vw, 70vh) scale(1);
    }
    33% {
        transform: translate(30vw, 10vh) scale(1.15);
    }
    66% {
        transform: translate(75vw, 50vh) scale(0.85);
    }
}

@keyframes moveBlue {
    0%, 100% {
        transform: translate(80vw, 40vh) scale(1);
    }
    30% {
        transform: translate(60vw, 70vh) scale(1.1);
    }
    60% {
        transform: translate(20vw, 5vh) scale(0.95);
    }
}


/* Disable blob animations on mobile to prevent CLS */
@media (max-width: 768px) {
    .color-blob {
        animation: none !important;
        opacity: 0.4;
    }
    .blob-red {
        transform: translate(-10vw, -10vh) scale(1);
    }
    .blob-yellow {
        transform: translate(-10vw, 70vh) scale(1);
    }
    .blob-blue {
        transform: translate(80vw, 40vh) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .color-blob {
        animation: none !important;
    }
}
/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 3rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: background 0.3s ease, box-shadow 0.3s ease, border-bottom 0.3s ease;
    display: flex;
    align-items: center;
    pointer-events: auto;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-container > a {
    display: flex;
    align-items: center;
    line-height: 0;
    height: auto;
    align-self: center;
}

.logo {
    height: 50px;
    transition: transform 0.3s ease;
    display: block;
    vertical-align: middle;
}

nav.scrolled .logo {
    height: 50px;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-red);
}

/* Tickets Dropdown Menu */
.nav-tickets-btn {
    position: relative;
    order: 2;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
    background: var(--accent-red);
    color: #fff !important;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-dropdown-toggle:hover {
    background: #9a1d1b;
    color: #fff !important;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.nav-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%; padding-top: 0.75rem;
    right: 0;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 1;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-loading {
    padding: 1.5rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.dropdown-event {
    display: block;
    padding: 1rem 1.25rem;
    text-decoration: none;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.dropdown-event:last-child {
    border-bottom: none;
}

.dropdown-event:hover {
    background: rgba(183, 35, 33, 0.05);
    padding-left: 1.5rem;
}

.dropdown-event-date {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-red);
    margin-bottom: 0.25rem;
}

.dropdown-event-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
}

.dropdown-no-events {
    padding: 1.5rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.dropdown-all-link {
    display: block;
    padding: 1rem 1.25rem;
    text-align: center;
    background: rgba(183, 35, 33, 0.05);
    color: var(--accent-red) !important;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-all-link:hover {
    background: var(--accent-red);
    color: #fff !important;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10001;
    align-self: center;
    margin: 0;
    position: relative;
    min-width: 40px;
    min-height: 40px;
    justify-content: center;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    transform-origin: center;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 1;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

body.menu-open,
body.tickets-modal-open {
    overflow: hidden;
}

/* Main content */
main {
    position: relative;
    z-index: 10;
    padding: 150px 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

/* Event cards - Timeline Layout */
.events-list {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Timeline vertical line */
.events-list::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, transparent, var(--accent-red) 5%, var(--accent-red) 95%, transparent);
    transform: translateX(-50%);
}

.event-card-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-bottom: 4rem;
    position: relative;
    padding: 0 2rem;
}

/* Timeline dot */
.event-card-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 18px;
    background: var(--accent-red);
    border: 4px solid #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 10px rgba(183, 35, 33, 0.4);
    z-index: 10;
}

/* Card on left side (odd items) - text aligned right (towards photo) */
.event-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
    text-align: right;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.08),
        0 8px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    width: 100%;
    max-width: 420px;
    order: 1;
}

/* Arrow pointing to timeline - right side */
.event-card::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 12px solid rgba(255, 255, 255, 0.95);
}

/* Photo wrapper on right side */
.event-photo-wrapper {
    width: 100%;
    max-width: 420px;
    order: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.event-photo-wrapper.empty {
    display: none;
}

.event-artist-photo {
    width: 100%;
    max-width: 350px;
    height: 280px;
    border-radius: 20px;
    object-fit: cover;
    object-position: center top;
    border: 4px solid rgba(183, 35, 33, 0.15);
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.event-card-wrapper:hover .event-artist-photo {
    border-color: var(--accent-red);
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(183, 35, 33, 0.2);
}

/* Alternate sides - even items (card on right, photo on left) */
.event-card-wrapper:nth-child(even) .event-card {
    order: 2;
    align-items: flex-start;
    text-align: left;
}

.event-card-wrapper:nth-child(even) .event-card::after {
    right: auto;
    left: -10px;
    border-left: none;
    border-right: 12px solid rgba(255, 255, 255, 0.95);
}

.event-card-wrapper:nth-child(even) .event-photo-wrapper {
    order: 1;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.12),
        0 15px 40px rgba(0, 0, 0, 0.08);
}

.event-date {
    text-align: center;
    padding: 0.75rem 1rem;
    background: rgba(183, 35, 33, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(183, 35, 33, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
    min-width: 70px;
}

.event-card:hover .event-date {
    background: rgba(183, 35, 33, 0.08);
}

.event-day {
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
    color: var(--accent-red);
    line-height: 1;
}

.event-month {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent-red);
    margin-top: 0.5rem;
    font-weight: 400;
}

.event-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-info h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.event-info .artist {
    font-size: 0.95rem;
    color: var(--accent-red);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.event-info .details {
    color: var(--text-secondary);
    font-weight: 300;
    font-size: 0.85rem;
}

.event-btn {
    padding: 0.6rem 1.5rem;
    background: #ffffff;
    border: 2px solid var(--accent-red);
    border-radius: 50px;
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.event-btn:hover {
    background: var(--accent-red);
    color: #ffffff;
}

/* Footer */
footer {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 6rem;
    padding: 2rem 2rem 1rem;
}

/* Compact Footer */
.footer-compact {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-main-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
}

.footer-main-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.footer-logo-compact {
    height: 50px;
}

.footer-basic-info {
    flex: 1;
}

.footer-venue {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.footer-contact {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-contact a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--accent-red);
}

.footer-expand-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-expand-toggle:hover {
    color: var(--accent-red);
}

.footer-expand-toggle.active .arrow-icon {
    transform: rotate(180deg);
}

.arrow-icon {
    transition: transform 0.3s ease;
    display: block;
}

.footer-expand-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s ease,
                margin-top 0.4s ease;
    opacity: 1;
    margin-top: 0;
}

.footer-expand-content.expanded {
    max-height: 500px;
    opacity: 1;
    margin-top: 2rem;
}

.footer-details-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.footer-detail-section h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.footer-detail-section p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.35rem;
    line-height: 1.5;
}

.footer-detail-section .role {
    opacity: 0.7;
    font-size: 0.75rem;
}

.footer-detail-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.8rem;
}

.footer-detail-section a:hover {
    color: var(--accent-red);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a,
.footer-section p,
.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-menu a:hover,
.footer-section a:hover {
    color: var(--accent-red);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(183, 35, 33, 0.1);
    border-radius: 50%;
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-red);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-red);
}

.footer-links span {
    color: var(--text-secondary);
}

/* Responsive - Mobile: clean list without timeline */
@media (max-width: 900px) {
    /* Hide timeline completely on mobile */
    .events-list {
        padding: 0 1.5rem;
    }

    .events-list::before {
        display: none;
    }

    .event-card-wrapper {
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin-bottom: 2rem;
    }

    /* Hide timeline dots on mobile */
    .event-card-wrapper::before {
        display: none;
    }

    .event-card,
    .event-card-wrapper:nth-child(even) .event-card {
        order: 2;
        max-width: 100%;
        text-align: left;
        align-items: flex-start;
        border-radius: 0 0 20px 20px;
        border-top: none;
    }

    /* Hide card arrows on mobile */
    .event-card::after,
    .event-card-wrapper:nth-child(even) .event-card::after {
        display: none;
    }

    .event-photo-wrapper,
    .event-card-wrapper:nth-child(even) .event-photo-wrapper {
        order: 1;
        max-width: 100%;
        width: 100%;
    }

    /* Big photos on mobile */
    .event-artist-photo {
        max-width: 100%;
        width: 100%;
        height: 220px;
        border-radius: 20px 20px 0 0;
        border: none;
        border-bottom: none;
    }

    .event-card-wrapper:hover .event-artist-photo {
        transform: none;
    }
}

@media (max-width: 768px) {
    .events-list {
        padding: 0 1.5rem;
    }

    nav {
        padding: 0.75rem 1rem;
        min-height: auto;
    }

    .nav-container {
        align-items: center;
        min-height: 60px;
        display: flex;
        justify-content: space-between;
    }

    .nav-container > a {
        display: flex;
        align-items: center;
        height: 100%;
        flex: 0 0 auto;
    }

    .logo {
        height: 50px;
        display: block;
        object-fit: contain;
    }

    /* Right side: tickets + hamburger */
    .nav-container .nav-tickets-btn {
        margin-left: auto;
    }

    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        align-self: center;
        order: 2;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        opacity: 1;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.35s; }
    .nav-links.active li:nth-child(7) { transition-delay: 0.4s; }

    .nav-links a {
        font-size: 1.2rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    /* Mobile: Tickets button next to hamburger */
    .nav-tickets-btn {
        order: 1;
        margin-right: 1rem;
    }

    .nav-dropdown-toggle {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }

    .dropdown-arrow {
        display: none;
    }

    /* Mobile: Dropdown as fullscreen modal */
    .nav-dropdown-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        min-width: 100vw;
        max-width: 100vw;
        margin: 0;
        padding: 0;
        border: none;
        border-radius: 0;
        background: #fff;
        z-index: 10002;
        display: flex;
        flex-direction: column;
        opacity: 1;
        visibility: hidden;
        transform: translateY(100%);
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        box-shadow: none;
    }

    .nav-dropdown.active .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.25rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        background: #fff;
        flex-shrink: 0;
    }

    .dropdown-modal-title {
        font-family: 'Cinzel', serif;
        font-size: 1.2rem;
        font-weight: 500;
        color: var(--text-primary);
    }

    .dropdown-modal-close {
        width: 44px;
        height: 44px;
        border: none;
        background: rgba(0, 0, 0, 0.05);
        border-radius: 50%;
        font-size: 1.8rem;
        line-height: 1;
        color: var(--text-secondary);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
    }

    .dropdown-modal-close:active {
        background: var(--accent-red);
        color: white;
    }

    .dropdown-events-list {
        flex: 1 1 auto;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        min-height: 0;
    }

    .dropdown-event {
        padding: 1rem 1.25rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .dropdown-event:active {
        background: rgba(183, 35, 33, 0.1);
    }

    .dropdown-event-date {
        font-size: 0.85rem;
        margin-bottom: 0.2rem;
    }

    .dropdown-event-title {
        font-size: 1rem;
    }

    .dropdown-all-link {
        padding: 1.25rem;
        font-size: 1rem;
        flex-shrink: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    main {
        padding: 120px 1.5rem 3rem;
    }

    .page-title {
        font-size: clamp(2rem, 7vw, 3rem);
        margin-bottom: 2rem;
    }

    .event-card:hover {
        transform: translateY(-4px);
    }

    .event-info h2 {
        font-size: 1.5rem;
    }

    .event-info .artist {
        font-size: 1rem;
    }

    .event-info .details {
        font-size: 0.9rem;
    }

    .event-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    footer {
        padding: 2rem 1.5rem 1rem;
        margin-top: 4rem;
    }
    
    .footer-main-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .footer-main-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        width: 100%;
    }
    
    .footer-logo-compact {
        height: 45px;
    }
    
    .footer-venue {
        font-size: 1rem;
    }
    
    .footer-contact {
        font-size: 0.85rem;
    }
    
    .footer-expand-toggle {
        align-self: center;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .footer-details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .footer-details-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .events-list {
        padding: 0 1rem;
    }

    nav {
        padding: 0.625rem 0.875rem;
        display: flex;
        align-items: center;
        min-height: auto;
    }

    .nav-container {
        width: 100%;
        align-items: center;
        min-height: 50px;
    }

    .nav-container > a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        height: 100%;
    }

    .logo {
        height: 42px;
        display: block;
        margin: 0;
        object-fit: contain;
    }

    .mobile-menu-toggle {
        align-self: center;
    }

    .nav-links {
        width: 100%;
        right: -100%;
    }

    main {
        padding: 100px 1rem 2rem;
    }

    .page-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .event-card {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }

    .event-date {
        padding: 1rem;
    }

    .event-day {
        font-size: 2.5rem;
    }

    .event-month {
        font-size: 0.75rem;
    }

    .event-info h2 {
        font-size: 1.3rem;
    }

    .event-info .artist {
        font-size: 0.95rem;
    }

    .event-info .details {
        font-size: 0.85rem;
    }

    footer {
        padding: 1.5rem 1rem 1rem;
        margin-top: 3rem;
    }

    .footer-logo-compact {
        height: 40px;
    }
    
    .footer-venue {
        font-size: 0.95rem;
    }
    
    .footer-contact {
        font-size: 0.8rem;
    }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

/* Base scroll reveal - fade in from bottom */
.scroll-reveal {
    opacity: 1;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays for multiple elements */
.scroll-reveal:nth-child(1) { transition-delay: 0.1s; }
.scroll-reveal:nth-child(2) { transition-delay: 0.2s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.3s; }
.scroll-reveal:nth-child(4) { transition-delay: 0.4s; }
.scroll-reveal:nth-child(5) { transition-delay: 0.5s; }
.scroll-reveal:nth-child(6) { transition-delay: 0.6s; }

/* Fade in from left */
.scroll-fade-left {
    opacity: 1;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-fade-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Fade in from right */
.scroll-fade-right {
    opacity: 1;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-fade-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Scale up animation */
.scroll-scale {
    opacity: 1;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Prevent animations on page load for hero elements */
.hero .scroll-reveal,
.hero .scroll-fade-left,
.hero .scroll-fade-right,
.hero .scroll-scale {
    opacity: 1;
    transform: none;
}

/* Fix footer links clickability */
.footer-bottom {
    position: relative;
    z-index: 100;
}

.footer-links a {
    position: relative;
    z-index: 101;
    cursor: pointer;
    pointer-events: auto;
}
