.mobile-booking-link {
    display: none;
}

/* Mobile-first overrides */
@media screen and (max-width: 992px) {
    .header {
        padding: 15px 0;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        width: 100%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 99;
        display: flex; /* Override display: none */
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 20px 0;
        opacity: 0;
        transform: translateX(50px);
        transition: 0.5s;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.5s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.6s; }
    .nav-menu.active li:nth-child(7) { transition-delay: 0.7s; }

    .mobile-booking-link {
        display: block;
    }

    .nav-menu li a {
        font-size: 1.8rem;
        font-family: var(--font-heading);
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    
    .burger {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        cursor: pointer;
        z-index: 1000;
        position: relative;
        pointer-events: auto !important;
        background: transparent;
        border: none;
        padding: 0;
        margin-left: 10px;
    }

    .burger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #F0F0F0 !important; /* Force visibility with white color */
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* Burger Animation to X */
    .burger.toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .burger.toggle span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }

    .burger.toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 3rem;
    }

    .header-right .btn-sm {
        display: none; /* Hide booking button in header on small screens to save space */
    }
}

@media screen and (max-width: 600px) {
    .header-right {
        gap: 8px;
    }

    .lang-switcher-wrap {
        padding: 4px 8px;
    }

    .lang-btn {
        padding: 4px 5px;
        font-size: 0.6rem;
    }

    .logo {
        font-size: 1rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .section {
        padding: 60px 5%;
    }
    
    .logo {
        font-size: 1.2rem;
    }

    .header-right {
        gap: 15px;
    }
}
