@media (min-width: 901px) {
    .hero-slideshow {
        max-height: 1125px;
    }
    .hero-slide {
        max-height: 100%;
    }
}
/* --- Force 50/50 split for hero slideshow and content on desktop --- */
@media (min-width: 901px) {
    .hero {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        justify-content: center;
    }
    .hero-slideshow {
            margin-top: 0;
            margin-bottom: 0;
            padding-top: 2.5rem;
            padding-bottom: 2.5rem;
        flex: 0 0 60%;
        max-width: 60vw;
        min-width: 0;
        height: 100%;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
        box-sizing: border-box;
    }
    .hero-content {
        max-width: 40vw;
        flex: 0 0 40%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}
/* Hero slideshow styles */
.hero-slideshow {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    margin-bottom: 1.5rem;
}
.hero-slideshow {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    height: 100%;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
}
.hero-slide {
    position: absolute;
    top: 0; left: 50%;
    height: 100%;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.7s;
    z-index: 1;
    transform: translateX(-50%);
    background: #111;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.hero-slide {
    position: absolute;
    top: 0; left: 50%;
    height: 100%;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.7s;
    z-index: 1;
    transform: translateX(-50%);
    background: #111;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.hero-slide.active {
    opacity: 1;
    z-index: 2;
}
.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 0.7em;
    z-index: 10;
}
.hero-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.6;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s;
}
.hero-dot.active {
    background: var(--primary);
    opacity: 1;
}
@media (max-width: 700px) {
    .hero-slideshow { height: 220px; }
}
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        height: auto;
        min-height: 320px;
    }
    .hero-slideshow {
        height: 220px;
        min-height: 180px;
        max-height: 320px;
    }
}
/* ==========================================
   HERO SECTION STYLES
   ========================================== */

.hero {
    height: 100vh;
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 69, 0, 0.03) 2px,
            rgba(255, 69, 0, 0.03) 4px
        );
    animation: scanlines 8s linear infinite;
}

.hero-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 1rem;
    text-align: center;
    padding: 2rem;
    z-index: 1;
}

.hero-image-placeholder::before {
    content: '📸 HERO IMAGE';
    position: absolute;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: rgba(255, 69, 0, 0.2);
    letter-spacing: 4px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--light);
    max-width: 1000px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    color: var(--primary);
    text-shadow: 0 0 20px var(--shadow);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 3px solid var(--primary);
    transition: all 0.3s;
    animation: fadeInUp 1s ease-out 0.6s backwards;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transition: left 0.3s;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    color: var(--dark);
    border-color: var(--accent);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
}
