/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color palette inspired by Alberta Conservative blue */
    --primary-blue: #003F7F;
    --secondary-blue: #0056B3;
    --light-blue: #4A90E2;
    --dark-blue: #002952;
    --accent-blue: #1E88E5;
    --warm-yellow: #FFD23F;
    --teal-blue: #1B4F72;
    --dark-teal: #0D2F45;
    --warm-red: #E74C3C;
    --soft-cream: #F8F9FA;
    --light-gray: #F8F9FA;
    --medium-gray: #6C757D;
    --dark-gray: #343A40;
    --white: #FFFFFF;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 5rem 0;
    --element-spacing: 2rem;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

.is-hidden {
    display: none !important;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--teal-blue);
    text-decoration: none;
    white-space: nowrap;
}

/* Mid-size breakpoint fix for logo */
@media (max-width: 1024px) and (min-width: 769px) {
    .logo {
        font-size: 1.3rem;
    }
}

@media (max-width: 900px) and (min-width: 769px) {
    .logo {
        font-size: 1.1rem;
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.countdown-timer-nav {
    background: linear-gradient(135deg, var(--warm-yellow) 0%, #FFE066 100%);
    color: var(--dark-blue);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(255, 210, 63, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    min-width: 140px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.countdown-timer-nav::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 4s ease-in-out infinite;
}

.countdown-number-nav {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.countdown-labels {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    line-height: 1;
}

.countdown-days-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1px;
}

.countdown-togo-label {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

/* Special styling for celebration state */
.countdown-timer-nav[data-celebration="true"] {
    justify-content: center;
    text-align: center;
    padding: 0.6rem 1rem;
}

.countdown-timer-nav[data-celebration="true"] .countdown-number-nav {
    font-size: 1.2rem;
    line-height: 1.3;
    flex-shrink: 1;
    white-space: normal;
}

.countdown-timer-nav[data-celebration="true"] .countdown-labels {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--teal-blue);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 50%, var(--warm-yellow) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
    text-align: center;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 63, 127, 0.1) 0%, rgba(0, 86, 179, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    width: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-text {
    max-width: 800px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10;
}

.highlight {
    color: var(--warm-yellow);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}


@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.event-info-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 0.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.event-details {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    min-height: 400px; /* Ensure enough height for proper spacing */
}

.event-schedule {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 15px;
    position: relative;
}

.schedule-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.schedule-icon {
    width: 35px;
    height: 35px;
    background: var(--warm-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.schedule-header h3 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.schedule-table-container {
    overflow-x: auto;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--white);
}

.schedule-table th {
    background: rgba(255, 211, 63, 0.9);
    color: var(--dark-blue);
    padding: 0.75rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px 8px 0 0;
}

.schedule-table th:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 0;
}

.schedule-table th:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 0;
}

.schedule-table td {
    padding: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}

.schedule-table td:first-child {
    font-weight: 600;
    color: var(--warm-yellow);
    white-space: nowrap;
}

.schedule-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.schedule-table tbody tr:last-child td {
    border-bottom: none;
}

/* Headliner styling - simple version */
.headliner {
    color: var(--warm-yellow);
    font-weight: 700;
}

.timeline-line {
    position: absolute;
    left: calc(1.5rem + 17.5px - 1px); /* Center with 35px icons (17.5px is center) */
    top: calc(1.5rem + 35px + 0.5rem - 5px); /* Start just below first icon, shifted up 5px */
    bottom: calc(1.5rem + 17.5px); /* End at center of last icon */
    width: 2px;
    background: linear-gradient(to bottom, var(--warm-yellow), rgba(255, 211, 63, 0.3));
    border-radius: 1px;
}

/* Mobile responsive positioning */
@media (max-width: 768px) {
    .event-info-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 450px;
    }
    
    .event-details,
    .event-schedule {
        width: 100%;
        max-width: none;
        box-sizing: border-box; /* Ensure padding doesn't affect width calculation */
    }
    
    .event-details {
        min-height: 420px; /* More height for mobile to give bullets breathing room */
    }
    
    .timeline-line {
        left: calc(1.25rem + 15px - 1px); /* Center with 30px mobile icons */
        top: calc(1.25rem + 30px + 0.375rem - 5px); /* Start below first mobile icon */
        bottom: calc(1.25rem + 15px); /* End at center of last mobile icon */
    }
    
    .schedule-header .schedule-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .schedule-table th,
    .schedule-table td {
        padding: 0.6rem 0.5rem;
        font-size: 0.85rem;
    }
}

.detail-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    font-size: 1.05rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
    position: relative;
    text-align: left;
}

.detail-icon {
    width: 35px;
    height: 35px;
    background: var(--warm-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.detail-item span {
    flex: 1;
    text-align: left;
}

.detail-item a {
    color: inherit;
    text-decoration: underline;
}

.cta-button {
    background: var(--teal-blue);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: var(--dark-teal);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-graphics {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-images {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: flex-start;
    margin: 0.5rem auto 1rem;
    max-width: 1100px;
    flex-wrap: wrap;
}

.hero-wide-photo-header {
    flex-basis: 100%;
    text-align: center;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-wide-photo-header h2 {
    font-size: clamp(1.5rem, 2vw + 1rem, 2.5rem);
    margin: 0 0 0.5rem;
}

.hero-wide-photo {
    flex-basis: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-wide-photo-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.hero-poster, .hero-map {
    flex: 1;
    max-width: 550px;
    min-width: 300px;
    position: relative;
    z-index: 2;
}

.hero-poster-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image-caption {
    margin-top: 0.75rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-style: italic;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.lightbox-trigger {
    cursor: pointer;
}

.hero-wide-photo-image:hover, .hero-poster-image:hover, .hero-map-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.hero-map-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1294 / 2000;
    object-fit: cover;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: -10px;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.festival-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--warm-yellow);
    border: 2px solid rgba(255, 255, 255, 0.3);
    /* GSAP animations replace CSS float animation */
    transition: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

/* Removed CSS float animations - now handled by GSAP */

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    /* Fill now defined in SVG gradient */
    transform: rotate(180deg);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--teal-blue);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: var(--section-padding);
    background: var(--soft-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    border: 1px solid rgba(0, 63, 127, 0.1);
}

/* .about-card:hover disabled - now handled by GSAP */

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--teal-blue);
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--medium-gray);
    line-height: 1.7;
}

/* Sponsorship Section */
.sponsorship-section {
    padding: var(--section-padding);
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
}

.sponsorship-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.sponsorship-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--warm-yellow);
}

.sponsorship-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.sponsorship-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.sponsor-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.benefit i {
    color: var(--warm-yellow);
    font-size: 1.2rem;
    width: 20px;
}

.sponsorship-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sponsor-highlight {
    margin-bottom: 2rem;
}

.sponsor-highlight i {
    font-size: 3rem;
    color: var(--warm-yellow);
    margin-bottom: 1rem;
}

.sponsor-highlight h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.sponsor-highlight p {
    opacity: 0.9;
    margin-bottom: 0;
}

.sponsor-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--warm-yellow);
    color: var(--dark-blue);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.sponsor-btn:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.contact-sponsor p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.contact-sponsor a {
    color: var(--warm-yellow);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

.contact-sponsor a:hover {
    text-decoration: underline;
}

.vendor-booth-notice {
    background: linear-gradient(135deg, #E74C3C 0%, #FF6B6B 100%);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

.vendor-booth-notice i {
    font-size: 1.3rem;
    color: var(--warm-yellow);
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    }
    100% {
        box-shadow: 0 4px 20px rgba(231, 76, 60, 0.5);
    }
}

/* Volunteer Section */
.volunteer-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--warm-yellow) 0%, #FFE066 100%);
    color: var(--dark-blue);
}

.volunteer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.volunteer-image {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.volunteer-poster-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.volunteer-poster-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.volunteer-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.volunteer-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: var(--dark-blue);
}

.volunteer-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--dark-blue);
}

.volunteer-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.volunteer-benefits .benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    color: var(--dark-blue);
}

.volunteer-benefits .benefit i {
    color: var(--primary-blue);
    font-size: 1.2rem;
    width: 20px;
}

.volunteer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary-blue);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 63, 127, 0.3);
}

.volunteer-btn:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 63, 127, 0.4);
}

/* Mobile responsive for volunteer section */
@media (max-width: 768px) {
    .volunteer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .volunteer-text h2 {
        font-size: 2rem;
    }
    
    .volunteer-text h3 {
        font-size: 1.5rem;
    }
    
    .volunteer-benefits {
        align-items: center;
    }
}

/* Activities Section */
.activities-section {
    padding: var(--section-padding);
    background: var(--white);
}

.activities-grid {
    display: grid;
    /* For wider screens, create 2 columns; minmax ensures cards don't get too small */
    /* auto-fit will wrap to fewer columns if space is insufficient */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 2.5rem; /* Increased gap slightly for better spacing in 2-column layout */
}

/* Responsive adjustments for .activities-grid */
@media (min-width: 769px) { /* Target tablets and desktops */
    .activities-grid {
        /* Explicitly set 2 columns for larger screens if auto-fit isn't behaving as desired */
        /* This ensures cards try to fill two columns before wrapping */
        grid-template-columns: repeat(2, minmax(320px, 1fr));
    }
}

@media (max-width: 768px) { /* Mobile and smaller tablets */
    .activities-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Fallback to original for mobile */
        gap: 2rem; /* Original gap for single column */
    }
}

.activity-card {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 63, 127, 0.1), transparent);
    transition: left 0.5s ease;
}

.activity-card:hover::before {
    left: 100%;
}

.activity-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 63, 127, 0.2);
}

.activity-icon {
    width: 70px;
    height: 70px;
    background: var(--teal-blue);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.activity-card:hover .activity-icon {
    background: var(--primary-blue);
    transform: scale(1.1);
}

.activity-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--teal-blue);
    margin-bottom: 1rem;
}

.activity-card p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.coming-soon {
    background: linear-gradient(90deg, #FFE066 0%, #FFD23F 100%);
    color: #3a2c00;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    display: inline-block;
    margin-top: 1rem;
    font-size: 1.05rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    border: none;
}

/* Location Section */
.location-section {
    padding: var(--section-padding);
    background: var(--soft-cream);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--teal-blue);
    margin-bottom: 2rem;
}

.address h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.address p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.detail i {
    color: var(--primary-blue);
    font-size: 1.2rem;
    width: 20px;
}

.map-placeholder {
    background: var(--white);
    border-radius: 20px;
    padding: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    min-height: 250px;
    border-radius: 15px;
}

.map-content i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--warm-yellow);
}

.map-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.map-button {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.map-button:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--teal-blue), var(--dark-teal));
    color: var(--white);
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-sponsorship {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--warm-yellow);
    color: var(--dark-blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-primary:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--teal-blue);
}

.btn-sponsorship:hover {
    background: var(--dark-blue);
    color: var(--warm-yellow);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 63, 127, 0.3);
}

.vendor-booth-notice-cta {
    background: linear-gradient(135deg, #E74C3C 0%, #FF6B6B 100%);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse-glow 2s ease-in-out infinite alternate;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.vendor-booth-notice-cta i {
    font-size: 1.3rem;
    color: var(--warm-yellow);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 1rem;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--warm-yellow);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section h4 {
    color: var(--warm-yellow);
    margin-bottom: 1rem;
}

.footer-section p {
    line-height: 1.7;
    opacity: 0.8;
}

.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: var(--teal-blue);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.6;
}

/* Responsive Design - Show hamburger menu on tablets and mobile */
@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .countdown-timer-nav {
        display: none;
    }

    .hero-title {
        font-size: 3rem;
    }
    
    .hero-graphics {
        gap: 1rem;
    }
    
    .festival-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .event-details {
        padding: 1.25rem;
    }
    
    /* timeline-line mobile styles moved to main definition */
    
    .detail-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .detail-item {
        gap: 0.75rem;
        font-size: 1rem;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 200px;
    }
    
    .about-grid, .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    
    .hero-images {
        flex-direction: column;
        gap: 1rem;
        max-width: 420px;
    }
    
    .hero-poster, .hero-map {
        max-width: 420px;
        margin: 0 auto;
    }
    
    .sponsorship-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .sponsorship-text h2 {
        font-size: 2rem;
    }
    
    .sponsorship-text h3 {
        font-size: 1.5rem;
    }
    
    .sponsor-benefits {
        align-items: center;
    }
    
    .sponsorship-cta {
        padding: 1.5rem;
    }
    
    .vendor-booth-notice {
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
    }
    
    .vendor-booth-notice-cta {
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 3rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .countdown-timer-nav {
        display: none; /* Hide countdown on smallest screens to prevent menu collision */
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .about-card, .activity-card {
        padding: 1.5rem;
    }
    
    .map-placeholder {
        padding: 0.5rem;
        min-height: 250px;
    }
    
    .map-placeholder iframe {
        min-height: 250px;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
button:focus,
.nav-link:focus,
.map-button:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations now handled by GSAP for better performance and control */

.warm-card-orange {
    background: linear-gradient(135deg, #FFB347 0%, #FFCC80 100%);
    color: #3a2c00;
}

.warm-card-red {
    background: linear-gradient(135deg, #FF6F61 0%, #FFB3AB 100%);
    color: #3a1a1a;
}

.warm-card-yellow {
    background: linear-gradient(135deg, #FFE066 0%, #FFF3B0 100%);
    color: #3a2c00;
}

.warm-card-pink {
    background: linear-gradient(135deg, #FF8DA1 0%, #FFD6E0 100%);
    color: #3a1a1a;
}

.warm-card-gold {
    background: linear-gradient(135deg, #FFD23F 0%, #FFEF9F 100%);
    color: #3a2c00;
}

.warm-card-orange, .warm-card-red, .warm-card-yellow, .warm-card-pink, .warm-card-gold {
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.08);
    border: none;
    transition: box-shadow 0.2s;
}

/* .warm-card hover effects disabled - now handled by GSAP */

.warm-about-orange {
    background: linear-gradient(135deg, #FFB347 0%, #FFCC80 100%);
    color: #3a2c00;
}

.warm-about-red {
    background: linear-gradient(135deg, #FF6F61 0%, #FFB3AB 100%);
    color: #3a1a1a;
}

.warm-about-yellow {
    background: linear-gradient(135deg, #FFE066 0%, #FFF3B0 100%);
    color: #3a2c00;
}

.warm-about-orange, .warm-about-red, .warm-about-yellow {
    border-radius: 20px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.08);
    border: none;
    transition: box-shadow 0.2s;
}

/* .warm-about hover effects disabled - now handled by GSAP */

/* THE FOLLOWING RULES ARE REDUNDANT AND COVERED IN MEDIA QUERIES */
/*
.about-grid, .activities-grid {
    grid-template-columns: 1fr;
}

.section-header h2 {
    font-size: 2rem;
} 
*/

/* Merch Page Styles */
.merch-hero {
    min-height: 70vh;
    padding-bottom: 2rem;
}

/* T-shirt Background Pattern - MERCH PAGE ONLY - Optimized for Performance */
.tshirt-bg-layer-1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: 1;
    pointer-events: none;
}

.tshirt-bg-layer-1::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: url('t-shirt.png');
    background-repeat: repeat;
    background-size: 400px 400px;
    transform: rotate(15deg);
    will-change: transform;
}

.tshirt-bg-layer-1::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: url('t-shirt.png');
    background-repeat: repeat;
    background-size: 380px 380px;
    background-position: 200px 150px;
    transform: rotate(-12deg);
    will-change: transform;
}

/* Removed layers 2 and 3 for better performance */

/* Mobile optimizations for merch page t-shirt background */
@media (max-width: 768px) {
    .tshirt-bg-layer-1 {
        background-size: 300px 300px;
        opacity: 1;
    }
}

.merch-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 3rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 10;
}

.merch-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.merch-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.merch-detail i {
    color: var(--warm-yellow);
    font-size: 1.2rem;
    width: 20px;
    flex-shrink: 0;
}

.merch-detail.pickup-only {
    background: linear-gradient(135deg, #E74C3C 0%, #FF6B6B 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    animation: pulse-glow 2s ease-in-out infinite alternate;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.merch-detail.pickup-only i {
    color: var(--warm-yellow);
    font-size: 1.3rem;
}

.nav-link.active {
    color: var(--primary-blue);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

/* Store Section */
.store-section {
    padding: var(--section-padding);
    background: var(--soft-cream);
    position: relative;
    z-index: 2;
}

.store-content {
    max-width: 1000px;
    margin: 0 auto;
}

.store-header {
    text-align: center;
    margin-bottom: 3rem;
}

.store-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--teal-blue);
    margin-bottom: 1rem;
}

.store-header p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.store-container {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    overflow: hidden;
    position: relative;
    /* Hide scrollbars but allow scrolling */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.store-container::-webkit-scrollbar {
    display: none; /* WebKit browsers */
}

/* Removed masks to eliminate interference */

.store-container iframe {
    border-radius: 15px;
    width: 100%;
    height: 1200px;
    min-height: 1200px;
    border: none;
    margin: 0;
    padding: 0;
    display: block;
    /* Allow scrolling but hide scrollbars */
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.store-container iframe::-webkit-scrollbar {
    display: none; /* WebKit browsers */
}

.pickup-info {
    margin-top: 3rem;
}

.pickup-card {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 63, 127, 0.2);
    position: relative;
    overflow: hidden;
}

.pickup-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    z-index: 1;
}

.pickup-card > * {
    position: relative;
    z-index: 2;
}

.pickup-icon {
    width: 80px;
    height: 80px;
    background: var(--warm-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--dark-blue);
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pickup-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.pickup-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.pickup-card li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
    line-height: 1.6;
}

.pickup-card li:last-child {
    border-bottom: none;
}

.pickup-card li strong {
    color: var(--warm-yellow);
}

/* Artists Section */
.artists-section {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
    z-index: 2;
}

.artists-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.artist-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 63, 127, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.artist-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 63, 127, 0.12);
}

.artist-image, .artist-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.artist-photo {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease;
}

.artist-photo:hover {
    transform: scale(1.05);
}

.artist-logo {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.artist-content {
    position: relative;
    z-index: 2;
}

.artist-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--teal-blue);
    margin-bottom: 0.5rem;
}

.artist-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.artist-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

.artist-content p:last-child {
    margin-bottom: 0;
}

.artist-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 63, 127, 0.3);
}

.artist-link:hover {
    background: linear-gradient(135deg, var(--secondary-blue), var(--accent-blue));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 63, 127, 0.4);
}

/* Mobile Responsive for Merch Page */
@media (max-width: 768px) {
    .merch-hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 2rem;
    }
    
    .merch-hero-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .merch-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .merch-detail {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .store-container iframe {
        height: 700px;
        min-height: 700px;
    }
    
    .pickup-card {
        padding: 2rem 1.5rem;
        text-align: left;
    }
    
    .pickup-card h3 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .pickup-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .artist-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .artist-image, .artist-images {
        justify-content: center;
    }
    
    .artist-photo, .artist-logo {
        max-width: 250px;
    }
    
    .artist-content {
        text-align: left;
    }
    
    .artist-content h3 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .artist-content h4 {
        text-align: center;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .store-container {
        padding: 0;
    }
    
    .store-container iframe {
        height: 600px;
        min-height: 600px;
    }
    
    .pickup-card {
        padding: 1.5rem 1rem;
    }
    
    .pickup-card li {
        font-size: 1rem;
    }
    
    .artist-card {
        padding: 1.5rem 1rem;
    }
    
    .artist-photo, .artist-logo {
        max-width: 200px;
    }
    
    /* Lightbox mobile styles */
    .lightbox-close {
        top: -40px;
        right: 0;
        font-size: 2rem;
        width: 35px;
        height: 35px;
    }
    
    .lightbox-content {
        max-width: 95vw;
        max-height: 85vh;
    }
    
    .lightbox-image {
        max-width: 95vw;
        max-height: 85vh;
    }
} 
