/* Mobile Navigation (≤768px) */
@media (max-width: 768px) {

    /* Hide top bar and desktop buttons */
    .top-bar,
    .book-now-btn {
        display: none !important;
    }

    /* Header layout: logo left, hamburger right */
    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 20px;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
    }

    .logo img {
        height: 40px;
        width: auto;
    }

    .mobile-menu-toggle {
        display: block;
        font-size: 1.8rem;
        cursor: pointer;
        z-index: 1001;
    }

    /* Mobile menu hidden by default */
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        z-index: 999;
    }

    /* Expand menu when active */
    .nav.active {
        max-height: 100vh;
    }

    /* Add a close icon inside menu */
    .nav .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 2rem;
        cursor: pointer;
        color: var(--secondary-color);
    }

    .nav ul {
        flex-direction: column;
        list-style: none;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .nav ul li {
        text-align: center;
        margin: 0;
        border-bottom: 1px solid #eee;
    }

    .nav ul li a {
        display: block;
        padding: 18px;
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--secondary-color);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .nav ul li a:hover {
        background-color: var(--primary-color);
        color: #fff;
    }
}
