/* 
 * Mobile Hero SEO Optimized Styles
 * This file contains mobile-specific styles for the hero section
 * focused on SEO optimization and performance
 */

/* Mobile Hero Section */
@media (max-width: 767px) {
    /* Main container styles */
    .hero-slider {
        position: relative;
        height: auto;
        overflow: visible;
        background-color: #003F88;
        margin-bottom: 80px;
        contain: layout paint style;
    }

    /* Static Hero Image */
    .mobile-hero-image {
       display:none !important;
    }
    

    .mobile-hero-img {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: none;
        max-height: 350px;
    }

    /* Overlay adjustments */
    .slider-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 63, 136, 0.7), rgba(0, 63, 136, 0.8));
        z-index: 2;
    }

    /* Filter container mobile-optimized */
    .filter-container {
        background: rgba(255, 255, 255, 0.98);
        border-radius: 10px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        padding: 20px;
        margin-top: 0;
        border-top: 4px solid #ff6f00;
        position: relative;
        z-index: 10;
    }

    /* Form adjustments */
    .filter-form {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Guest selector and bottom sheet optimizations */
    .guest-bottom-sheet {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: 15px 15px 0 0;
        animation: slideUp 0.3s ease forwards;
        z-index: 1050;
        padding: 20px;
        border-bottom: none;
    }

    /* Category section styling */
    .category-section {
        margin-top: 15px;
    }

    .category-container {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 5px 0;
        gap: 8px;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
        scroll-behavior: smooth;
    }

    .category-container::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    /* Advanced filter content */
    .advanced-filter-content {
        margin-top: 15px;
        padding: 15px;
        background-color: #f8f8f8;
        border-radius: 8px;
    }
    
    /* Utility classes */
    .d-sm-none {
        display: none !important;
    }
}

/* Desktop styles remain unchanged */
@media (min-width: 768px) {
    .mobile-hero-image {
        display: none !important;
    }
}
