/* ============================================
   MOBILE HERO REDESIGN (SPLIT VIEW)
   Standardized across pages
   ============================================ */
@media (max-width: 768px) {

    /* 1. Reset & Main Layout */
    .hero {
        display: flex;
        flex-direction: column;
        background-color: #0b0b0b;
        height: 100vh;
        height: 100svh;
        position: relative;
    }

    /* 2. Top Section: Image Background */
    /* Forces the background to only take the top 70% */
    .hero-bg {
        height: 70% !important;
        min-height: 70% !important;
        bottom: auto !important;
        top: 0 !important;
        position: absolute;
        width: 100%;
        overflow: hidden;
    }

    .hero-overlay {
        height: 100% !important;
        min-height: 100% !important;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1;
    }

    .hero-image {
        height: 100% !important;
        object-fit: cover;
        object-position: center;
    }

    /* 3. Content Container */
    .hero-content {
        height: 100%;
        padding: 0 !important;
        display: flex;
        flex-direction: column;
        position: relative;
        z-index: 10;
        width: 100%;
    }

    /* 4. Top Content (Label + Title) - Over Image */
    .hero-top {
        height: 70%;
        position: static !important;
        /* Ensure it is NOT a containing block */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0 20px;
    }

    .hero-label {
        font-size: 0.9rem !important;
        margin-bottom: 1rem !important;
        color: var(--primary-gold) !important;
        z-index: 2;
    }

    .hero-title {
        margin-bottom: 0 !important;
        font-size: 2.2rem !important;
        padding: 0;
        text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        z-index: 2;
    }

    /* 5. Bottom Content (Subtitle) - Solid Black Area */
    .hero-subtitle {
        position: absolute;
        top: 70%;
        /* Explicitly start at 70% mark */
        bottom: auto;
        left: 0;
        width: 100%;
        height: 30%;
        margin: 0 !important;
        padding: 0 16px 20px 16px !important;

        display: flex !important;
        align-items: center;
        justify-content: center;

        background-color: #0b0b0b;
        color: rgba(255, 255, 255, 0.9) !important;

        text-align: center;
        /* Responsive font size logic */
        font-size: clamp(0.95rem, 5vw, 1.25rem) !important;
        line-height: 1.4 !important;
        font-weight: 300;

        z-index: 20;
    }

    /* Remove default AOS transforms for subtitle */
    .hero-subtitle[data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    /* 6. Scroll Indicator */
    .hero-scroll {
        bottom: 15px !important;
        z-index: 30;
    }

    .scroll-arrow-icon svg {
        width: 20px;
        height: 20px;
        opacity: 0.7;
    }
}