/* 
================================================================
BANSURI - THE MELODY OF TASTE
Responsive Layout Media Queries
================================================================
*/

@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3.8rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 991.98px) {
    /* Navbar Custom Mobile Menu Styling */
    .navbar-collapse {
        background: rgba(38, 23, 20, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-bottom: 2px solid var(--gold);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 30px 15px;
        transition: var(--transition-smooth);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }
    
    .nav-link {
        padding: 12px 20px !important;
        border-bottom: 1px solid rgba(var(--golden-orange-rgb), 0.15);
        color: var(--warm-white) !important; /* Ensure text is always visible on dark mobile menu */
    }
    
    .nav-link::after {
        display: none;
    }
    
    .navbar-collapse .nav-link:hover, 
    .navbar-collapse .nav-link.active {
        color: var(--primary-orange) !important;
        padding-left: 28px !important;
        background: rgba(255, 107, 0, 0.05);
    }
    
    .navbar-brand .logo-img {
        height: 48px;
    }

    .header-mobile-phone {
        display: inline-flex;
    }
    
    /* Hero section adjust */
    .bansuri-hero {
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 100px;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-desc {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }
    
    .section-padding {
        padding: 70px 0;
    }
    
    /* Timeline adjustments */
    .timeline-container::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item::after {
        left: 16px;
        right: auto;
    }
    
    .timeline-right {
        left: 0%;
    }
}

@media (max-width: 767.98px) {
    .hero-subtitle {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
    
    .hero-title {
        font-size: 2.6rem;
        margin-bottom: 15px;
    }
    
    .hero-flute-container {
        max-width: 320px;
        height: 60px;
        margin: 25px auto;
    }
    
    .hero-feather {
        width: 45px;
        height: 70px;
        top: -15px;
    }
    
    .section-title {
        font-size: 2.1rem;
    }
    
    .bansuri-page-header {
        height: 240px; /* Reduced height for mobile */
    }

    .subtitle-melody {
        font-size: 1.2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    /* Custom spacing */
    .row > * {
        margin-bottom: 2px;
    }
    
    /* Lightbox navigation on mobile */
    .lightbox-prev {
        left: -40px;
        font-size: 2.2rem;
    }
    
    .lightbox-next {
        right: -40px;
        font-size: 2.2rem;
    }
    
    /* Back to top spacing */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2.1rem;
    }
    
    .hero-desc {
        font-size: 0.95rem;
    }
    
    .section-title-wrapper {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-year {
        font-size: 1.35rem;
    }
    
    .review-card {
        padding: 25px;
    }
    
    .review-text {
        font-size: 1.1rem;
    }
    
    .lightbox-prev, .lightbox-next {
        display: none !important;
    }

    .header-mobile-phone {
        padding: 5px 9px;
        font-size: 0.78rem;
        gap: 4px;
    }
    
    .header-mobile-phone i {
        font-size: 0.78rem;
    }

    .section-heading-custom {
        font-size: 1.65rem;
    }

    .dining-main-img {
        height: 250px;
    }

    .floating-dining-badge,
    .floating-ambience-badge {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        margin-top: 12px;
        animation: none;
    }
}

@media (max-width: 380px) {
    .header-mobile-phone {
        padding: 4px 7px;
        font-size: 0.72rem;
    }
    
    .navbar-brand .logo-img {
        height: 42px;
    }
}
