﻿/* Navbar styles */
.navbar {
    background: var(--Neutral-White, #FFF);
    box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.08);
    height: 70px;
    display: flex !important;
    align-items: center;
}

    .navbar .container {
        display: flex;
        align-items: center;
        flex-wrap:nowrap;
    }


        .navbar .container .navbar-toggler {
            margin-left: auto;
        }

        .navbar .container .navbar-nav {
            display: flex;
            color: #fff;
            gap: 11px;
            margin: auto;
        }


.button-book {
    padding: 10px 27px;
    border-radius: 12px;
    background: var(--Primary-500, #bc852b);
    color: #fff;
    font-size: 19px;
}

    .button-book a {
        color: var(--Neutral-White, #FFF);
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }
.nav-item a {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    color: var(--Neutral-900, #1A1A1A) !important;
    transition: .2s all;
}

.navbar-nav .nav-link.active {
    color: #bc852b !important;
}

.nav-link:hover {
    color: #bc852b !important;
    cursor: pointer;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    color: #000 !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.dropdown-toggle::after {
    display: none;
}

.offcanvas-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -300px; /* Initially hidden */
    width: 300px;
    background-color: #fff;
    z-index: 1050;
    overflow-y: auto;
    transition: right 0.3s ease;
}

.close-btn-mv {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #E2E6E9;
    border: 1px solid #E2E6E9;
}
/* Add this CSS to your stylesheet */
.fixed-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: top 0.3s;
}

body.fixed-navbar-active {
    padding-top: 70px; /* Adjust based on the height of your navbar */
}
/*@media (max-width:991px){
    .LogoSite img{
      width:35%
    }
}
@media (min-width:992px) and (max-width:1200px){
    .LogoSite {
        width: 14%
    }
}*/
html {
    scroll-behavior: smooth;
}

.offcanvas-anim {
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

    .offcanvas-anim.fade-out {
        transform: translateX(100%);
        opacity: 0;
    }

