/* 
 * Godrej Properties Clone - Responsive Design
 * Mobile-first approach where applicable, but primarily min-width overrides
 */

 /* Extra Large Devices (Desktops) */
@media (min-width: 1200px) {
    .mega-menu {
        min-width: 800px;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
}

/* Large Devices (Laptops/Desktops) */
@media (max-width: 991.98px) {
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }
    
    .values-quote {
        font-size: 2rem;
        padding: 0 20px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .property-img-wrapper {
        height: 200px;
    }
}

/* Medium Devices (Tablets) */
@media (max-width: 767.98px) {
    .hero-slider {
        height: 50vh;
        min-height: 350px;
    }
    
    .values-quote {
        font-size: 1.5rem;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .property-img-wrapper {
        height: 220px; /* Taller on mobile for better visibility */
    }
    
    /* Adjust swiper controls for mobile */
    .swiper-button-next, .swiper-button-prev {
        width: 35px !important;
        height: 35px !important;
    }
    
    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 14px !important;
    }
    
    .footer-links {
        margin-bottom: 30px;
    }
}

/* Small Devices (Phones) */
@media (max-width: 575.98px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-overlay {
        padding: 15% 5%;
    }
    
    .hero-slider {
        min-height: 300px;
    }
}

/* Specific component fixes for very small devices (375px) */
@media (max-width: 375px) {
    .btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .property-price {
        font-size: 1.1rem;
    }
}
