/* ===================================
   MOBILE HERO FULLSCREEN FEATURE
   Hero starts fullscreen on mobile, fixed height on scroll
   =================================== */

/* Mobile Hero Fullscreen Styles */
@media (max-width: 768px) {
    /* Hero fullscreen state - Initial load */
    body.hero-fullscreen .hero {
        position: relative; 
        width: 100%;
        height: 100vh;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin-bottom: 0;
    }

    body.hero-fullscreen .hero-content {
        transform: scale(1.1);
    }

    /* Hide other sections visually immediately */
    body.hero-fullscreen section:not(.hero) {
        opacity: 0;
        pointer-events: none;
    }

    /* NO ANIMATIONS/TRANSITIONS AS REQUESTED */
    .hero, 
    .hero-content, 
    .hero-image {
        transition: none !important;
    }

    /* When scrolled - normal state */
    body:not(.hero-fullscreen) .hero {
        height: auto;
        min-height: auto;
    }

    /* Scroll hint indicator */
    .scroll-indicator {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.875rem;
        animation: bounce 2s infinite;
        z-index: 10;
    }

    body:not(.hero-fullscreen) .scroll-indicator {
        display: none;
    }

    .scroll-indicator i {
        font-size: 1.5rem;
    }

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

/* Desktop - No fullscreen behavior */
@media (min-width: 769px) {
    .scroll-indicator {
        display: none !important;
    }
}
