/* Mobile-optimized critical CSS - Simplified and Consolidated */
:root {
    --dark-green: #132618;
    --near-white: #FAF8F4;
    --lockwood-red: #8B1C1D;
    --gold: #e6c474;
    --navy: #0a1e37;
    --cream: #FAF8F4;
}

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

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography with System Font Fallbacks */
.font-loaded body {
    font-family: 'Varela Round', system-ui, -apple-system, sans-serif;
}

h1, h2, h3 {
    font-family: system-ui, -apple-system, sans-serif;
    font-weight: 900;
}

.font-loaded h1,
.font-loaded h2,
.font-loaded h3 {
    font-family: 'Montserrat', system-ui, sans-serif;
}

/* Hero Section - Mobile First */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a1e37 0%, #132618 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 120px 1rem 2rem;
    position: relative;
    box-sizing: border-box;
}

/* Consistent H1 Padding - Single Source of Truth */
h1, .main-headline, .ticket-heading {
    padding-top: 2rem !important;
    margin-top: 0;
}

/* Main headline specific spacing */
.left-column .main-headline {
    padding-top: 4rem !important;
}

/* Lazy load background images */
.hero-section.bg-loaded {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../img/heroArt-mobile.jpg');
    background-size: cover;
    background-position: center;
}

/* Content Layout */
.main-content-row {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1rem;
    gap: 2rem;
    align-items: center;
}

.left-column {
    width: 100%;
    color: var(--near-white);
    padding: 1rem;
    text-align: center;
}

/* Forms - Mobile Optimized */
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.signup-form input {
    padding: 0.875rem 1rem;
    font-size: 16px; /* Prevents zoom on iOS */
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: white;
    width: 100%;
}

.submit-btn {
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s;
}

.submit-btn:active {
    transform: scale(0.98);
}

/* Video Container */
.video-container,
.youtube-container {
    width: 100%;
    margin-top: 1.5rem;
}

.media-card {
    border: 3px solid white;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.video-embed {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
}

/* Navigation - Mobile Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-brand {
        flex: 0 1 auto;
    }
    
    .mobile-menu-toggle {
        order: 2;
        margin-left: auto;
    }
    
    .nav-logo {
        height: 70px;
    }
    
    .hero-section {
        padding-top: 110px;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .nav-logo {
        height: 60px;
    }
    
    .hero-section {
        padding-top: 100px;
    }
    
    h1, .main-headline {
        font-size: 2rem;
    }
}

/* Tablet and larger */
@media (min-width: 768px) {
    .hero-section.bg-loaded {
        background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../img/heroArt.jpg');
    }
    
    .main-content-row {
        flex-direction: row;
        width: 90%;
        max-width: 1200px;
        gap: 3rem;
        padding: 2rem;
    }
    
    .left-column {
        flex: 1;
        text-align: left;
        padding: 2rem;
    }
}

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