/**
 * Zomer in Linden - Main Stylesheet
 * 
 * Table of Contents:
 * 1. CSS Variables & Reset
 * 2. Typography
 * 3. Layout & Grid
 * 4. Header & Navigation
 * 5. Hero Section
 * 6. About Section
 * 7. Partners Section
 * 8. Contact Section
 * 9. Footer
 * 10. Line-up Page
 * 11. Practical Info Page
 * 12. Utility Classes
 * 13. Responsive (Tablet & Desktop)
 * 14. Animations
 * 
 * Mobile-First Approach: Base styles are for mobile, 
 * then we progressively enhance for larger screens
 */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@600;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700&display=swap');

/* ============================================
   1. CSS VARIABLES & RESET
   ============================================ */

:root {
    /* Colors - Based on your brand */
    --color-primary: #237BBA;
    --color-secondary: #004E89;
    --color-tertiary: #002D62;
    --color-accent: #44987B;
    --color-dark: #001121;
    --color-light: #e9f5ff;
    --color-white: #FFFFFF;
    --color-text: #333333;
    --color-text-light: #666666;
    
    /* Typography */
    --font-primary: "Barlow Condensed", sans-serif;     /* For body text */
    --font-heading: 'Kanit', sans-serif;                /* For headings - Black 900 */
    --font-navigation: 'Kanit', sans-serif;             /* For navigation - Semibold 600 */
    --font-buttons: 'Kanit', sans-serif;                /* For buttons - Semibold 600 */
    
    /* Spacing */
    --spacing-xxs: 0.25rem;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Layout */
    --container-max-width: 1200px;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* CSS Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 100px;
}

body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
    overflow-x: hidden;
}


img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-secondary);
}

/* ============================================
   2. TYPOGRAPHY
   ============================================ */

/* Headings - Kanit Black (900), UPPERCASE ONLY */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 900; /* Kanit Black */
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 { font-size: clamp(2.5rem, 8vw, 5rem); }
h2 { font-size: clamp(2rem, 6vw, 3.5rem); }
h3 { font-size: clamp(1.75rem, 5vw, 2.5rem); }
h4 { font-size: clamp(1.5rem, 4vw, 2rem); }
h5 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h6 { font-size: 1.125rem; }

/* Body Text - Barlow Condensed */
p, 
.about-text,
.section-content,
.artist-bio,
.contact-info,
.footer-column p {
    font-family: var(--font-primary);
    font-weight: 500; /* Bold is preferable as stated */
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

/* Regular weight for specific content */
.hero-subtitle,
.page-intro,
.section-subtitle {
    font-family: var(--font-primary);
    font-weight: 600; /* Semi-bold for subtitles */
}

/* Medium weight for metadata */
.artist-meta,
.artist-genre,
.contact-item {
    font-family: var(--font-primary);
    font-weight: 500;
}

/* ============================================
   3. LAYOUT & GRID
   ============================================ */

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section-padding {
    padding: var(--spacing-lg) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: var(--spacing-sm);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-top: var(--spacing-sm);
    text-transform: none; /* Subtitles don't need uppercase */
}

/* Screen reader only text (for accessibility) */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.skip-link:focus {
    position: fixed;
    top: 0;
    left: 0;
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--spacing-sm);
    z-index: 10000;
    clip: auto;
    width: auto;
    height: auto;
}

/* ============================================
   4. HEADER & NAVIGATION
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    padding: 1rem 0;
}

/* Header becomes solid on scroll */
.site-header.scrolled,
body.force-header-fill .site-header {
    background: rgba(0, 45, 98, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styling - Kanit Black */
.site-branding {
    z-index: 1001;
}

.logo-link {
    display: block;
}

.site-logo,
.custom-logo {
    height: 60px;
    width: auto;
    display: block;
}

/* Text Logo (if no image uploaded) - Kanit Black */
.text-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    padding: 8px 16px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 900; /* Kanit Black */
    line-height: 1;
}

.logo-zomer {
    font-size: 1.4rem;
    color: #fff;
    letter-spacing: 1px;
}

.logo-in {
    font-size: 0.8rem;
    color: #fff;
    margin: -3px 0;
    font-weight: 600; /* Slightly lighter for "IN" */
}

.logo-linden {
    font-size: 1.4rem;
    color: #fff;
    letter-spacing: 1px;
}

/* Desktop Navigation - Kanit Semibold */
.desktop-navigation {
    display: none; /* Hidden on mobile */
}

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

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    font-family: var(--font-navigation);
    font-weight: 600; /* Kanit Semibold */
    color: #ffffff;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: var(--color-accent);
}

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

/* Header Social Icons */
.header-social {
    display: flex;
    gap: 1rem;
    margin-left: 2rem;
}

.header-social a {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.header-social a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: var(--transition);
}

/* Hamburger animation when menu is open */
.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, #002850 0%, #004080 100%);
    z-index: 999;
    transition: right 0.4s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-inner {
    padding: 100px 2rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Close Button */
.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

/* Mobile Navigation Links - Kanit Semibold */
.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav-menu li {
    margin-bottom: 1rem;
}

.mobile-nav-menu a {
    font-family: var(--font-navigation);
    font-weight: 600; /* Kanit Semibold */
    color: #ffffff;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    padding: 0.75rem;
    transition: var(--transition);
}

.mobile-nav-menu a:hover {
    color: var(--color-accent);
    transform: translateX(10px);
}

/* ============================================
   5. HERO SECTION (UPDATED TO MATCH DESIGN)
   ============================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background Media */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video,
.hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

/* Purple/Blue Gradient Overlay (matching your design) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg, 
        rgba(0, 40, 130, 0.2) 50%,   /* Dark blue middle */
        rgba(0, 0, 0, 0.7) 100%      /* Black bottom */
    );
    z-index: 2;
}

/* Hero Content - Centered */
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 2rem 1rem;
}

.hero-content-inner {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Hero Title - Kanit Black, UPPERCASE */
.hero-title {
    font-family: var(--font-heading);
    font-weight: 900; /* Kanit Black */
    font-size: clamp(2.5rem, 10vw, 5.5rem);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1;
}

/* Hero Subtitle - Barlow Condensed Bold */
.hero-subtitle {
    font-family: var(--font-primary);
    font-weight: 500; 
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-transform: uppercase; /* Based on wireframe */
    letter-spacing: 0.5px;
}

/* CTA Buttons Container */
.hero-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

/* When countdown is present, always stack vertically (even on desktop) */
.hero-cta-buttons:has(.hero-countdown) {
    flex-direction: column;
}

/* Hero Buttons - Kanit Semibold */
.hero-btn {
    font-family: var(--font-buttons);
    font-weight: 600; /* Kanit Semibold */
    min-width: 250px;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius:  999px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

/* Primary Button (Solid) */
.btn-primary.hero-btn {
    background: var(--color-primary);
    color: #ffffff;
    border: 2px solid var(--color-primary);
}

.btn-primary.hero-btn:hover {
    background: transparent;
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(35, 123, 186, 0.4);
}

/* Secondary Button (Outlined) */
.btn-secondary.hero-btn {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary.hero-btn:hover {
    background: #ffffff;
    color: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: var(--transition);
}

.scroll-indicator a:hover {
    opacity: 1;
    transform: scale(1.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* Hero Countdown Timer */
.hero-countdown {
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.countdown-label {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    flex-wrap: nowrap; /* Prevent wrapping on mobile */
    width: 100%;
    max-width: 100%;
    overflow: hidden; /* Prevent horizontal scroll */
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0; /* Allow flex shrinking */
    flex: 1 1 0; /* Equal flex distribution */
    max-width: 25%; /* Ensure items don't exceed 25% each */
    padding: 0.75rem 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.countdown-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.countdown-value {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(1.25rem, 4vw, 3rem);
    color: #ffffff;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    display: block;
    margin-bottom: 0.2rem;
    white-space: nowrap;
}

.countdown-label-unit {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: clamp(0.6rem, 1.2vw, 0.9rem);
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
    white-space: nowrap;
    line-height: 1.2;
}

.countdown-separator {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(1rem, 3vw, 2.5rem);
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    padding: 0 0.15rem;
    line-height: 1;
    flex-shrink: 0; /* Prevent separator from shrinking */
}

/* ============================================
   6. ABOUT SECTION
   ============================================ */

.about-section {
    background: var(--color-light);
}

.about-grid {
    display: grid;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-content {
    order: 2;
}

.about-content h2 {
    margin-bottom: var(--spacing-md);
}

.about-text {
    font-family: var(--font-primary);
    font-weight: 200; /* Barlow Condensed Bold */
    font-size: 1.125rem;
    line-height: 1.6;
}

.about-image {
    order: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   7. PARTNERS SECTION
   ============================================ */

.partners-section {
    background: var(--color-white);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-md);
    align-items: center;
    justify-items: center;
    /* Force uniform item sizing so every partner tile has identical dimensions */
    grid-auto-rows: clamp(110px, 12vw + 70px, 160px);
}

.partner-item {
    width: 100%;
    height: 100%;
    padding: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    /* Keeps each item consistent regardless of logo aspect ratio */
    box-sizing: border-box;
}

.partner-link {
    display: block;
    width: 100%;
    transition: var(--transition);
}

.partner-link:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.partner-logo {
    width: 100%;
    height: 100%;
    max-width: 200px;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: var(--transition);
}

.partner-link:hover .partner-logo {
    filter: grayscale(0%);
}

.partner-name {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--color-text);
}

/* ============================================
   8. CONTACT SECTION 
   ============================================ */

.contact-section {
    background: var(--color-light);
    overflow: hidden; /* Prevent any overflow */
}

/* Contact Grid Layout - Mobile First (Stacked) */
.contact-grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    width: 100%;
}

/* Left Column: Map + Info */
.contact-left {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    width: 100%;
}

/* Google Maps Styling */
.contact-map {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Info Box Below Map */
.contact-info-box {
    background: var(--color-white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    font-family: var(--font-primary);
    font-weight: 700;
}

.contact-info-item:last-of-type {
    margin-bottom: var(--spacing-md);
}

.contact-info-item svg {
    flex-shrink: 0;
    color: var(--color-primary);
}

.contact-info-item a {
    color: var(--color-text);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-item a:hover {
    color: var(--color-primary);
}

/* Social Media Links in Contact Box */
.contact-social-links {
    display: flex;
    gap: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--color-light);
}

.contact-social-links .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    transition: var(--transition);
}

.contact-social-links .social-icon:hover {
    background: var(--color-secondary);
    transform: translateY(-3px);
}

/* Right Column: Contact Form */
.contact-right {
    width: 100%;
}

.contact-form-container {
    background: var(--color-white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* ============================================
   CONTACT FORM 7 CUSTOM STYLING
   ============================================ */

/* Form Wrapper */
.cf7-form-wrapper {
    width: 100%;
    max-width: 100%;
}

.cf7-form-wrapper .form-row {
    margin-bottom: var(--spacing-md);
}

/* Hide br tags that CF7 adds between labels and inputs */
.cf7-form-wrapper .form-row br {
    display: none;
}

.cf7-form-wrapper label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--color-dark);
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.cf7-form-wrapper .form-control {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: var(--spacing-xs);
    border: 2px solid var(--color-light);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--color-white);
    margin-top: 0;
}

/* Ensure wpcf7-form-control-wrap doesn't add extra spacing */
.cf7-form-wrapper .wpcf7-form-control-wrap {
    display: block;
    margin-top: 0;
}

.cf7-form-wrapper .form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(35, 123, 186, 0.1);
}

.cf7-form-wrapper textarea.form-control {
    resize: vertical;
    min-height: 150px;
    font-family: var(--font-primary);
}

.cf7-form-wrapper .checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
}

/* Make the p tag inside checkbox-row also flex */
.cf7-form-wrapper .checkbox-row p {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
    margin: 0;
}

/* Hide br tags in checkbox-row */
.cf7-form-wrapper .checkbox-row br {
    display: none;
}

.cf7-form-wrapper .checkbox-row .wpcf7-list-item {
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
}

.cf7-form-wrapper .checkbox-row .wpcf7-form-control-wrap {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin: 0;
}

.cf7-form-wrapper .checkbox-row input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--color-primary);
    flex-shrink: 0;
}

.cf7-form-wrapper .checkbox-row label {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: none;
    color: var(--color-text);
    cursor: pointer;
    line-height: 1.5;
    margin: 0;
    display: flex;
    align-items: center;
    flex: 1;
}

.cf7-form-wrapper .checkbox-row label a {
    color: var(--color-primary);
    text-decoration: underline;
}

.cf7-form-wrapper .checkbox-row label a:hover {
    color: var(--color-secondary);
}

.cf7-form-wrapper .btn {
    font-family: var(--font-buttons);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    border: 2px solid var(--color-primary);
    background: var(--color-primary);
    color: var(--color-white);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    width: 100%; /* Full width on mobile */
    max-width: 300px; /* Max width to prevent stretching */
}

.cf7-form-wrapper .btn:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cf7-form-wrapper .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Success/Error Messages */
.wpcf7-response-output {
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-weight: 600;
    text-align: center;
}

.wpcf7-mail-sent-ok {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.wpcf7-mail-sent-ng,
.wpcf7-aborted {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

.wpcf7-spam-blocked {
    background: #fff3cd;
    color: #856404;
    border: 2px solid #ffeaa7;
}

.wpcf7-validation-errors {
    background: #fff3cd;
    color: #856404;
    border: 2px solid #ffeaa7;
}

.wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 0.875rem;
    font-family: var(--font-primary);
    font-weight: 600;
    margin-top: var(--spacing-xs);
    display: block;
}

.wpcf7-not-valid {
    border-color: #dc3545 !important;
}

.wpcf7 form.submitting .wpcf7-submit {
    opacity: 0.7;
    cursor: wait;
}

.wpcf7 form .ajax-loader {
    display: inline-block;
    margin-left: var(--spacing-sm);
    vertical-align: middle;
}

/* ============================================
   9. FOOTER
   ============================================ */

   .site-footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
    text-align: center;
}

/* Footer Logo */
.footer-logo {
    flex-shrink: 0;
}

.footer-logo img,
.footer-logo .custom-logo {
    height: 80px;
    width: auto;
}

.footer-logo .text-logo {
    background: var(--color-primary);
    padding: 10px 20px;
    border-radius: 8px;
}

/* Footer Navigation */
.footer-navigation {
    flex: 1;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    align-items: center;
}

.footer-menu li {
    margin: 0;
}

.footer-menu a {
    font-family: var(--font-navigation);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.footer-menu a:hover {
    color: var(--color-primary);
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.footer-social a {
    color: var(--color-white);
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--color-primary);
    transform: translateY(-3px);
}

/* Footer Bottom - Copyright */
.footer-bottom {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.copyright {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.copyright a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.copyright a:hover {
    color: var(--color-white);
}

/* ============================================
   10. LINE-UP PAGE
   ============================================ */

.lineup-page {
    padding: calc(90px + var(--spacing-lg)) 0 var(--spacing-lg);
    background: var(--color-light);
}

.page-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.page-title {
    font-family: var(--font-heading);
    font-weight: 900; /* Kanit Black */
    text-transform: uppercase;
}

.page-intro {
    max-width: 800px;
    margin: var(--spacing-md) auto 0;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--color-text);
}

.artists-grid {
    display: grid;
    gap: var(--spacing-lg);
}

.artist-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.artist-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.artist-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.artist-card:hover .artist-image img {
    transform: scale(1.05);
}

.artist-content {
    padding: var(--spacing-md);
}

.artist-name {
    font-family: var(--font-heading);
    font-weight: 900; /* Kanit Black */
    margin-bottom: var(--spacing-xs);
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.artist-genre {
    font-family: var(--font-primary);
    font-weight: 600;
    font-style: italic;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
}

.artist-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.artist-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.artist-bio {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.6;
}/* Line-up: Day navigation and timetable (added) */
.schedule-day-nav {
    margin-bottom: var(--spacing-lg);
}
.schedule-day-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    list-style: none;
    padding: 0;
    justify-content: center;
}
.schedule-day-link {
    display: inline-block;
    padding: 0.6rem 1.1rem;
    border: 2px solid var(--color-primary);
    border-radius: 999px;
    color: var(--color-primary);
    font-family: var(--font-buttons);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}
.schedule-day-link:hover,
.schedule-day-link.active {
    background: var(--color-primary);
    color: #fff;
}
.schedule-day-section {
    margin-bottom: var(--spacing-xl);
}
.schedule-day-title {
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: var(--spacing-md);
}
.schedule-day-timeline {
    display: grid;
    gap: var(--spacing-md);
}
.schedule-artist-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(0, 46, 89, 0.08);
    padding: var(--spacing-md);
    display: grid;
    gap: var(--spacing-sm);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}
.schedule-artist-card:hover {
    border-color: rgba(35, 123, 186, 0.25);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}
.schedule-artist-time {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}
.schedule-artist-content {
    display: grid;
    gap: var(--spacing-xs);
}
.schedule-artist-name {
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}
.schedule-artist-thumb {
    width: 100%;
    max-height: 200px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.schedule-artist-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.schedule-artist-card:focus,
.schedule-artist-card:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 4px;
}

/* ============================================
   10B. ARTIST DETAIL PAGE
   ============================================ */

.artist-detail-page {
    padding: calc(90px + var(--spacing-lg)) 0 var(--spacing-lg);
    background: var(--color-light);
}

.artist-detail-wrapper {
    display: grid;
    gap: var(--spacing-lg);
}

.artist-detail-media {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.artist-detail-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-detail-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    background: var(--color-light);
    color: var(--color-text-light);
    font-family: var(--font-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: var(--spacing-lg);
}

.artist-detail-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.artist-detail-title {
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.artist-detail-description {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1.125rem;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.artist-detail-text {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.7;
}

.artist-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.artist-spotify-btn {
    align-self: flex-start;
}

@media screen and (min-width: 640px) {
    .schedule-artist-card {
        grid-template-columns: minmax(120px, 150px) 1fr;
        align-items: center;
    }

    .schedule-artist-time {
        font-size: 1.05rem;
    }

    .artist-detail-wrapper {
        grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
        align-items: start;
    }

    .artist-detail-media {
        max-height: 520px;
    }
}

/* ============================================
   11. PRACTICAL INFO PAGE
   ============================================ */

.practical-page {
    padding: calc(90px + var(--spacing-lg)) 0 var(--spacing-xl);
    background: var(--color-light);
}

/* Two Column Layout */
.practical-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Column: Introduction */
.practical-intro {
    width: 100%;
}

.practical-main-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.practical-intro-content {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
}

.practical-intro-content p {
    margin-bottom: var(--spacing-sm);
}

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

/* Right Column: FAQ Accordion */
.practical-faq {
    width: 100%;
}

.faq-category-group {
    margin-bottom: var(--spacing-xl);
}

.faq-category-group:last-child {
    margin-bottom: 0;
}

.faq-category-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-xs);
}

.faq-category-subtitle {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Individual FAQ Item */
.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item:hover {
    background: rgba(35, 123, 186, 0.02);
}

/* FAQ Question Button */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--color-dark);
    transition: var(--transition);
    position: relative;
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-question:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
    border-radius: 4px;
}

.faq-question-text {
    flex: 1;
    line-height: 1.5;
}

/* FAQ Icon (Plus/Minus) */
.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: transform 0.3s ease, opacity 0.3s ease;
    position: relative;
}

.faq-icon svg {
    width: 100%;
    height: 100%;
}

/* Rotate icon when open (show minus) */
.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-question[aria-expanded="true"] {
    color: var(--color-primary);
}

/* FAQ Answer Container */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

/* Answer Content */
.faq-answer-content {
    padding: 0 0 var(--spacing-md);
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text);
}

.faq-answer-content p {
    margin-bottom: var(--spacing-sm);
}

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

.faq-answer-content ul,
.faq-answer-content ol {
    margin-left: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    padding-left: var(--spacing-md);
}

.faq-answer-content li {
    margin-bottom: var(--spacing-xs);
    line-height: 1.6;
}

.faq-answer-content strong {
    font-weight: 700;
    color: var(--color-dark);
}

.faq-answer-content a {
    color: var(--color-primary);
    text-decoration: underline;
    transition: var(--transition);
}

.faq-answer-content a:hover {
    color: var(--color-secondary);
}

/* ============================================
   12. UTILITY CLASSES
   ============================================ */

/* Buttons - Kanit Semibold */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-md);
    font-family: var(--font-buttons);
    font-weight: 600; /* Kanit Semibold */
    font-size: 1rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background: var(--color-primary);
}

/* ============================================
   13. PRIVACYBELEID PAGE
   ============================================ */

   .privacy-page {
    padding: calc(90px + var(--spacing-lg)) 0 var(--spacing-lg);
    background: var(--color-light);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.privacy-content h2,
.privacy-content h3,
.privacy-content h4 {
    color: var(--color-primary);
    margin-top: var(--spacing-md);
}

.privacy-content p {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--color-text);
}

.privacy-content a {
    text-decoration: underline;
}

.privacy-content ul,
.privacy-content ol {
    margin-left: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.privacy-content li {
    margin-bottom: var(--spacing-xs);
}

.privacy-content blockquote {
    margin: var(--spacing-md) 0;
    padding: var(--spacing-md);
    border-left: 4px solid var(--color-primary);
    background: var(--color-light);
    border-radius: var(--border-radius);
}

.privacy-content table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--spacing-md) 0;
    overflow-x: auto;
    display: block;
}

.privacy-content th,
.privacy-content td {
    border: 1px solid var(--color-light);
    padding: 0.75rem 1rem;
    text-align: left;
}

.privacy-content thead th {
    background: rgba(35, 123, 186, 0.08);
    color: var(--color-dark);
}

.privacy-content .wp-block-separator,
.privacy-content hr {
    border: none;
    height: 2px;
    background: var(--color-light);
    margin: var(--spacing-md) 0;
}

.privacy-content .wp-block-button__link {
    font-family: var(--font-buttons);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 999px;
}

.privacy-content .wp-block-quote cite {
    display: block;
    margin-top: var(--spacing-xs);
    font-style: normal;
    color: var(--color-text-light);
}

/* Text Alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Spacing Utilities */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }

/* ============================================
   14. RESPONSIVE (Tablet & Desktop)
   COMPLETELY REWRITTEN FOR PROPER CASCADE
   ============================================ */

/* ============================================
   TABLET ONLY (768px - 1023px)
   This breakpoint comes FIRST to avoid conflicts
   ============================================ */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    :root {
        --spacing-lg: 5rem;
        --spacing-xl: 8rem;
    }
    
    .container {
        padding: 0 var(--spacing-md);
    }

    /* Show desktop navigation, hide mobile toggle */
    .desktop-navigation {
        display: flex;
        align-items: center;
    }
    
    .mobile-menu-toggle {
        display: none;
    }

    /* Hero section - buttons side by side */
    .hero-cta-buttons {
        flex-direction: row;
        gap: 1.5rem;
    }
    
    /* When countdown is present, stack vertically even on tablet */
    .hero-cta-buttons:has(.hero-countdown) {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    /* Countdown timer adjustments for tablet */
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .countdown-item {
        min-width: 0;
        max-width: 25%;
        padding: 1rem 0.75rem;
    }
    
    .countdown-separator {
        padding: 0 0.35rem;
    }
    
    /* About Section - side by side */
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-content {
        order: 1;
    }
    
    .about-image {
        order: 2;
    }
    
    /* CRITICAL: Contact Section - STACK VERTICALLY ON TABLET */
    .contact-grid-layout {
        grid-template-columns: 1fr !important; /* Force single column */
        gap: var(--spacing-lg);
        max-width: 100%;
    }
    
    .contact-left,
    .contact-right {
        width: 100%;
        max-width: 100%;
    }
    
    .contact-map {
        height: 450px;
        min-height: auto;
    }
    
    .contact-form-container {
        padding: var(--spacing-lg);
        margin: 0; /* Ensure no weird margins */
    }
    
    .cf7-form-wrapper .btn {
        max-width: 350px;
    }
    
    /* Better spacing on tablet */
    .cf7-form-wrapper .form-row {
        margin-bottom: var(--spacing-md);
    }
    
    .cf7-form-wrapper label {
        margin-bottom: 0.5rem;
    }
    
    /* Footer - horizontal layout */
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: center;
    }
    
    .footer-menu {
        flex-direction: column;
        gap: var(--spacing-xs);
        align-items: center;
    }
    
    .footer-logo {
        order: 1;
        align-self: center;
    }
    
    .footer-navigation {
        order: 2;
        flex: 1;
        display: flex;
        justify-content: center;
    }
    
    .footer-social {
        order: 3;
        align-self: center;
    }
    
    /* Line-up - 2 columns */
    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Practical page - two columns */
    .practical-layout {
        grid-template-columns: 1fr 1.2fr;
        gap: var(--spacing-xl);
        align-items: start;
    }
    
    /* FAQ spacing */
    .faq-question {
        font-size: 1.125rem;
        padding: var(--spacing-md) 0;
    }
    
    .faq-answer-content {
        padding: 0 0 var(--spacing-md);
        font-size: 1rem;
    }
}

/* ============================================
   DESKTOP (1024px and up)
   This breakpoint comes SECOND
   ============================================ */
@media screen and (min-width: 1024px) {
    :root {
        --spacing-lg: 5rem;
        --spacing-xl: 8rem;
    }
    
    .container {
        padding: 0 var(--spacing-md);
    }

    /* Header adjustments */
    .header-container {
        padding: 0 2rem;
    }
    
    .site-logo,
    .custom-logo {
        height: 70px;
        width: auto;
    }
    
    .nav-menu {
        gap: 2.5rem;
    }
    
    .nav-menu a {
        font-size: 1.05rem;
    }

    /* Show desktop navigation, hide mobile toggle */
    .desktop-navigation {
        display: flex;
        align-items: center;
    }
    
    .mobile-menu-toggle {
        display: none;
    }

    /* Hero section - buttons side by side */
    .hero-cta-buttons {
        flex-direction: row;
        gap: 1.5rem;
    }
    
    /* When countdown is present, stack vertically even on desktop */
    .hero-cta-buttons:has(.hero-countdown) {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    /* Countdown timer adjustments for desktop */
    .countdown-timer {
        gap: 0.75rem;
    }
    
    .countdown-item {
        min-width: 0;
        max-width: 25%;
        padding: 1.25rem 1rem;
    }
    
    .countdown-separator {
        padding: 0 0.5rem;
    }
    
    /* About Section - side by side */
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-content {
        order: 1;
    }
    
    .about-image {
        order: 2;
    }

    /* CONTACT SECTION - Side by side on desktop */
    .contact-grid-layout {
        grid-template-columns: 40% 60%;
        gap: var(--spacing-xl);
        align-items: start;
    }
    
    .contact-left {
        order: 1;
    }
    
    .contact-right {
        order: 2;
    }
    
    .contact-form-container {
        padding: var(--spacing-lg);
        width: 80%;
    }
    
    .cf7-form-wrapper .btn {
        width: auto;
        max-width: none;
    }
    
    /* Better spacing on desktop */
    .cf7-form-wrapper .form-row {
        margin-bottom: var(--spacing-md);
    }
    
    .cf7-form-wrapper label {
        margin-bottom: 0.5rem;
    }
    
    /* Artist Detail Page */
    .artist-detail-wrapper {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
        gap: var(--spacing-xl);
    }

    .artist-detail-media {
        max-height: 600px;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: center;
    }
    
    .footer-menu {
        flex-direction: column;
        gap: var(--spacing-xs);
        align-items: center;
    }
    
    .footer-logo {
        order: 1;
        align-self: center;
    }
    
    .footer-navigation {
        order: 2;
        flex: 1;
        display: flex;
        justify-content: center;
    }
    
    .footer-social {
        order: 3;
        align-self: center;
    }
    
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Line-up - 3 columns */
    .artists-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Partners - 5 columns */
    .partners-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    /* Privacy page */
    .privacy-content {
        padding: var(--spacing-xl);
    }

    /* Practical page - two columns */
    .practical-layout {
        grid-template-columns: 1fr 1.2fr;
        gap: calc(var(--spacing-xl) * 1.5);
    }
    
    /* FAQ spacing */
    .faq-question {
        font-size: 1.125rem;
        padding: var(--spacing-md) 0;
    }
    
    .faq-answer-content {
        padding: 0 0 var(--spacing-md);
        font-size: 1rem;
    }
}

/* ============================================
   LARGE DESKTOP (1440px and up)
   This breakpoint comes LAST for final refinements
   ============================================ */
@media screen and (min-width: 1440px) {
    .container {
        padding: 0;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
    }

    /* Contact Section - Optimized proportions */
    .contact-grid-layout {
        grid-template-columns: 38% 62%;
        gap: calc(var(--spacing-xl) * 1.5);
    }
    
    .contact-map {
        min-height: 550px;
    }
}

/* ============================================
   SMALL SCREENS FIX (below 640px)
   ============================================ */
@media screen and (min-width: 640px) {
    .schedule-artist-card {
        grid-template-columns: minmax(120px, 150px) 1fr;
        align-items: center;
    }

    .schedule-artist-time {
        font-size: 1.05rem;
    }

    .artist-detail-wrapper {
        grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
        align-items: start;
    }

    .artist-detail-media {
        max-height: 520px;
    }
}

/* ============================================
   15. ANIMATIONS
   ============================================ */

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

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

/* Base class for scroll-reveal elements */
.scroll-reveal {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Slide in from left */
.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Slide in from right */
.scroll-reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Revealed state - when element is in viewport */
.scroll-reveal.revealed,
.scroll-reveal-bottom.revealed,
.scroll-reveal-left.revealed,
.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* Stagger delay classes for sequential animations */
.scroll-reveal-delay-1 {
    transition-delay: 0.1s;
}

.scroll-reveal-delay-2 {
    transition-delay: 0.2s;
}

.scroll-reveal-delay-3 {
    transition-delay: 0.3s;
}

.scroll-reveal-delay-4 {
    transition-delay: 0.4s;
}

.scroll-reveal-delay-5 {
    transition-delay: 0.5s;
}

/* Accessibility: Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    /* Disable scroll reveal animations for users who prefer reduced motion */
    .scroll-reveal,
    .scroll-reveal-bottom,
    .scroll-reveal-left,
    .scroll-reveal-right {
        opacity: 1 !important;
        transform: none !important;
    }
}

