/* ========================
   Fixed Black Header
======================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background-color: #000;
    z-index: 1000;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Max-width content area */
.nav-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo - left aligned */
.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
    flex-shrink: 0;
}

.logo img {
    height: 40px;
    width: auto;
}

/* Desktop Navigation - RIGHT ALIGNED */
nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: flex-end;
}

.nav-menu li {
    display: inline-block;
}

.nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
    display: inline-block;
}

.nav-menu li a:hover {
    color: #00A3E4;
}

/* Hamburger Menu - Hidden by default */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    gap: 5px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Padding to prevent content jump */
body {
    padding-top: 64px;
}

/* ========================
   Tablet - Slightly Smaller Nav
======================== */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-menu li a {
        font-size: 0.95rem;
    }
}

/* ========================
   Mobile - Burger Menu
======================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 64px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 64px);
        background-color: #000;
        transition: right 0.3s ease;
        overflow-y: auto;
        justify-content: flex-start;
        padding: 2rem 1.5rem; /* Added padding to nav container */
    }

    nav.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 0;
        width: 100%;
        justify-content: flex-start;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #333;
        display: block;
    }

    .nav-menu li a {
        display: block;
        padding: 1.5rem 2rem; /* Increased horizontal padding */
        font-size: 1.1rem;
        width: 100%;
    }

    .nav-menu li a:hover {
        background-color: #111;
    }

    /* Book Now button styling in mobile */
    .nav-book-btn {
        margin: 1.5rem 2rem !important; /* Added side margins */
        display: block;
        width: calc(100% - 4rem) !important; /* Account for side margins */
        text-align: center;
        background-color: #00A3E4;
        padding: 1.2rem 2rem !important; /* Increased padding */
        border-radius: 8px;
    }

    .nav-book-btn:hover {
        background-color: #0082b8;
    }

    .logo img {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    nav {
        padding: 2rem 1rem; /* Less padding on very small screens */
    }

    .logo img {
        height: 32px;
    }

    .nav-menu li a {
        font-size: 1rem;
        padding: 1.2rem 1.5rem;
    }
    
    .nav-book-btn {
        margin: 1.5rem 1rem !important;
        width: calc(100% - 2rem) !important;
    }
}