body {
    font-family: 'Poppins', sans-serif;
}

/* NAVBAR BASE */
.navbar {
    transition: all 0.4s ease;
}

/* TRANSPARENT (TOP) */
.navbar.transparent {
    background: transparent !important;
}

.navbar.transparent .nav-link {
    color: #fff !important;
}

/* SCROLLED */
.navbar.blacktransparent {
    background: rgba(0, 0, 0, 0.85) !important;
}

.navbar.blacktransparent .nav-link {
    color: #fff !important;
}

/* NAV LINKS */
.navbar .nav-link {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0 12px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

/* underline animation */
.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #EAA636;
    transition: width 0.3s ease;
}

/* hover + active effect */
.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #EAA636 !important;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 100%;
}

/* BOOK BUTTON */
.navbar .btn-outline-light {
    border: 1px solid #EAA636;
    color: #EAA636;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s;
}

.navbar .btn-outline-light:hover {
    background: #EAA636;
    color: #fff;
}
/* ===== HAMBURGER ===== */
.navbar-toggler {
    display: none;
    border: none;
    background: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.navbar-toggler span {
    width: 25px;
    height: 2px;
    background: #fff;
    display: block;
}

/* ===== MOBILE ===== */
@media (max-width: 991px) {

    /* show hamburger */
    .navbar-toggler {
        display: flex;
    }
    #logo1, #logo2{
        height:30px !important;
    }

    /* FIX NAVBAR LAYOUT */
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* SLIDE MENU FROM RIGHT */
    #navbarCollapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #000;
        padding: 80px 20px;
        transition: 0.4s ease;
        z-index: 999;
        display: block !important;
    }

    /* ACTIVE STATE */
    #navbarCollapse.active {
        right: 0;
    }

    /* STACK ITEMS */
    .navbar-nav {
        flex-direction: column !important;
        align-items: flex-start !important;
        width: 100%;
    }

    .navbar .nav-link {
        width: 100%;
        padding: 12px 0;
        color: #fff !important;
    }

    /* BUTTON FULL WIDTH */
    .navbar .btn-outline-light {
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }

    /* OPTIONAL: hide underline on mobile */
    .navbar .nav-link::after {
        display: none;
    }
}