/**
 * Mobile Hero Height Fix
 * Increases hero section heights on mobile devices to ensure proper wave display
 */

/* Extra small mobile devices (375px and similar) */
@media (max-width: 375px) {
    .hero-section {
        min-height: 110vh !important; /* Reduced from 125vh to keep content visible */
    }
    
    .hero-content {
        padding-top: calc(var(--header-scrolled-height, 80px) + 6rem) !important; /* Reduced from 10rem to 6rem - just enough to clear header */
        padding-bottom: 120px !important; /* Keep wave space */
    }
    
    .hero-content-inner {
        margin-top: 60px !important; /* Increased margin for better spacing */
        padding-top: 40px !important; /* Additional top padding */
    }
    
    .hero-title {
        font-size: 2rem !important; /* Slightly smaller for 375px screens */
        margin-bottom: 1rem !important;
        line-height: 1.1 !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        padding: 0.8rem 1rem !important;
        margin-bottom: 1.5rem !important; /* Reduced margin to keep buttons visible */
        max-width: 90% !important;
    }
    
    .wave-container svg {
        height: 100px !important; /* Consistent wave height */
    }
    
    .taxi-on-wave {
        bottom: 115px !important; /* Adjusted for 375px screens */
    }
    
    .video-controls {
        bottom: 125px !important; /* Adjusted position */
    }
}

/* Small mobile devices (320px to 480px) */
@media (max-width: 480px) {
    .hero-section {
        min-height: 120vh !important; /* Increased height for better wave display */
    }
    
    .hero-content {
        padding-top: calc(var(--header-scrolled-height, 80px) + 8rem) !important; /* Increased padding to avoid header overlap */
        padding-bottom: 120px !important; /* More space for wave */
    }
    
    .hero-content-inner {
        margin-top: 50px !important; /* Increased margin for better spacing */
        padding-top: 35px !important; /* Additional top padding */
    }
    
    .wave-container svg {
        height: 100px !important; /* Increased wave height for better visibility */
    }
    
    .taxi-on-wave {
        bottom: 110px !important; /* Adjusted taxi position for new wave height */
    }
    
    .video-controls {
        bottom: 120px !important; /* Adjusted video controls position */
    }
}

/* Medium mobile devices (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .hero-section {
        min-height: 115vh !important; /* Increased height for better wave display */
    }
    
    .hero-content {
        padding-bottom: 140px !important; /* More space for wave */
    }
    
    .wave-container svg {
        height: 110px !important; /* Increased wave height for better visibility */
    }
    
    .taxi-on-wave {
        bottom: 130px !important; /* Adjusted taxi position for new wave height */
    }
    
    .video-controls {
        bottom: 140px !important; /* Adjusted video controls position */
    }
}

/* General mobile adjustments (up to 768px) */
@media (max-width: 768px) {
    .hero-section {
        min-height: 110vh !important; /* Ensure minimum height for wave display */
    }
    
    .wave-container {
        bottom: -10px !important; /* Slightly higher wave position for better integration */
    }
    
    .wave-container svg {
        height: 120px !important; /* Consistent wave height for mobile */
    }
    
    .hero-content {
        padding-bottom: 160px !important; /* Consistent bottom padding for mobile */
    }
    
    .taxi-on-wave {
        bottom: 110px !important; /* Consistent taxi position for mobile */
        width: 60px !important;
    }
    
    .video-controls {
        bottom: 120px !important; /* Consistent video controls position */
    }
}

/* Tablets and small devices */
@media (min-width: 769px) and (max-width: 992px) {
    .hero-section {
        min-height: 110vh !important; /* Adequate height for tablets */
    }
    
    .wave-container svg {
        height: 130px !important; /* Larger wave for tablets */
    }
    
    .taxi-on-wave {
        bottom: 140px !important; /* Adjusted for tablet wave height */
    }
}

/* Ensure wave is always visible and properly positioned */
.wave-container {
    z-index: 10 !important;
    pointer-events: none !important;
}

.taxi-on-wave {
    z-index: 11 !important;
    pointer-events: none !important;
} 