
* {
    box-sizing: border-box; 
    margin: 0;
    padding: 0;
}

body {
    background-color: #001740;
    font-family: 'Nunito', sans-serif;
    color: #fff;
    overflow-x: hidden;
}

.site-wrapper {
    width: 100%;
    max-width: 1440px; 
    margin: auto auto;
    position: relative; 
    overflow: hidden; 
}


.navbar {
    width: 95%;
    max-width: 1200px; 
    height: 60px;      
    background-color: #fffdf0; 
    border-radius: 20px; 
    margin: 20px auto 0; 
    position: relative;
    z-index: 100; 
}

.navbar-inner {
    display: flex;
    align-items: center; 
    justify-content: space-between; 
    height: 100%;
    padding: 0 30px; 
}

.logo-link {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo {
    height: 38px; 
    width: auto;  
    transition: transform 0.3s ease; 
}

.logo-link:hover .logo {
    transform: scale(1.15); 
}


.nav-menu {
    list-style: none; 
    display: flex;
    gap: clamp(15px, 3vw, 60px); 
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none; 
    font-family: 'Nunito', sans-serif;
    font-weight: 700; 
    font-size: clamp(14px, 1.5vw, 18px); 
    color: #0f2a71; 
    transition: all 0.3s ease; 
    position: relative; 
    padding-bottom: 5px; 
}

.nav-menu a:hover, .nav-menu a.active {
    color: #f4c400; 
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%; 
    height: 3px; 
    background-color: #f4c400; 
}


.booking-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center; 
    text-decoration: none; 
    width: clamp(160px, 15vw, 220px); 
    height: clamp(38px, 4vw, 48px);
    background-color: #f4c400; 
    border-radius: 9px;   
    font-family: 'Nunito', sans-serif;
    font-weight: 700; 
    font-size: clamp(13px, 1.2vw, 18px); 
    color: #0f2a71; 
    transition: all 0.3s ease; 
    text-align: center;
    line-height: 1.2;
}

.booking-btn:hover {
    background-color: #0f2a71; 
    color: #f4c400;            
}


.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 200; 
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #0f2a71;
    border-radius: 3px;
    transition: all 0.3s ease;
}


@media (max-width: 600px) {
    .navbar-inner {
        padding: 0 15px; 
    }
    
    
    .booking-btn {
        width: auto;
        padding: 0 15px;
        font-size: 13px;
        height: 35px;
    }

    
    .hamburger {
        display: flex; 
        margin-right: 10px; 
        margin-left: auto;
    }

   
    .nav-menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #fffdf0;
        border-radius: 15px;
        padding: 20px 0;
        gap: 20px;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        
 
        opacity: 0;
        pointer-events: none;
        transform: translateY(-20px);
        transition: all 0.3s ease;
    }


    .nav-menu.active-mobile {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }


    .hamburger.active-mobile .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active-mobile .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active-mobile .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}


@media screen and (max-width: 800px) {
    .navbar {
        width: 98%; 
        height: 50px; 
        margin-top: 10px;
    }

    .navbar-inner {
        padding: 0 20px; 
    }


    .logo {
        height: 32px; 
    }


    .nav-menu {
        gap: 25px; 
    }

    .nav-menu a {
        font-size: 12px; 
    }

  
    .booking-btn {
        width: auto;
        height: 32px;
        font-size: 12px;
        padding: 0 12px;
        border-radius: 6px;
    }

    
    .hamburger {
        display: none; 
    }
}


@media screen and (max-width: 600px) {

    .navbar {
        width: 95% !important;
        height: 45px !important;
        margin-top: 15px !important;
    }

    .navbar-inner {
        padding: 0 15px !important;
    }

    .logo {
        height: 30px !important; 
    }

    .hamburger {
        display: flex !important;
        margin-left: auto !important;
        z-index: 200 !important;
    }

    .booking-btn {
        font-size: 10px !important;
        padding: 0 10px !important;
        height: 32px !important;
        min-width: 0 !important; 
        width: auto !important;
        margin-right: 15px !important; 
    }

    .nav-menu {
        display: flex !important;
        flex-direction: column !important;
        position: absolute !important;
        top: 70px !important;
        left: 0 !important;
        width: 100% !important;
        background-color: #fffdf0 !important;
        border-radius: 15px !important;
        padding: 10px 0 !important;
        gap: 20px !important;
        text-align: center !important;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2) !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transform: translateY(-20px) !important;
        transition: all 0.3s ease !important;
        z-index: 150 !important;
    }

 
    .nav-menu a {
        font-size: 10px !important;
        display: inline-block !important;
        padding: 5px 0 !important;
    }

    .nav-menu.active-mobile {
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
    }


    .hamburger.active-mobile .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg) !important;
    }
    .hamburger.active-mobile .bar:nth-child(2) {
        opacity: 0 !important;
    }
    .hamburger.active-mobile .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg) !important;
    }
}


@media screen and (max-width: 400px) {

    .booking-btn {
        font-size: 0 !important; 
        padding: 0 15px !important;
    }
    
    .booking-btn::after {
        content: "Book"; 
        font-size: 12px !important;
    }

    
    .logo {
        height: 24px !important;
    }
}