/* =========================================================
   LEISURE TRAVELS INDIA
   PREMIUM NAVBAR
   BLACK + GOLD
   DESKTOP + MOBILE RESPONSIVE
========================================================= */

* {
    box-sizing: border-box;
}

.navbar {
    width: 100%;
    min-height: 82px;

    background: #050505;

    border-bottom: 1px solid rgba(212, 175, 55, 0.28);

    display: flex;
    align-items: center;

    padding: 0 4%;

    position: relative;
    z-index: 9999;
}

/* =========================================================
   LOGO
========================================================= */

.navbar .logo {
    display: flex;
    align-items: center;

    gap: 12px;

    text-decoration: none;

    flex-shrink: 0;
}

.navbar .logo img {
    width: 62px;
    height: 62px;

    object-fit: contain;

    display: block;
}

.navbar .logo-text {
    display: flex;
    flex-direction: column;

    justify-content: center;
}

.navbar .logo-text h2 {
    margin: 0;

    color: #facc15;

    font-family: Arial, sans-serif;

    font-size: 25px;
    font-weight: 800;

    line-height: 1.05;

    white-space: nowrap;
}

.navbar .logo-text span {
    margin-top: 5px;

    color: #ffffff;

    font-family: Arial, sans-serif;

    font-size: 11px;
    font-weight: 500;

    letter-spacing: 3px;

    white-space: nowrap;
}

/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.navbar .nav-links {
    display: flex;
    align-items: center;

    gap: 26px;

    margin-left: auto;
    margin-right: 25px;
}

.navbar .nav-links a {
    position: relative;

    color: #ffffff;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 14px;
    font-weight: 600;

    padding: 8px 0;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.navbar .nav-links a:hover {
    color: #facc15;

    transform: translateY(-1px);
}

/* GOLD UNDERLINE */

.navbar .nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: #facc15;

    transition: width 0.25s ease;
}

.navbar .nav-links a:hover::after {
    width: 100%;
}

/* =========================================================
   RIGHT SIDE
========================================================= */

.navbar .nav-right {
    display: flex;
    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}

/* CALL BUTTON */

.navbar .call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 0 15px;

    color: #facc15;

    border: 1px solid #facc15;

    border-radius: 6px;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;

    transition: all 0.25s ease;
}

.navbar .call-btn:hover {
    background: #facc15;

    color: #000;

    box-shadow:
        0 0 15px rgba(250, 204, 21, 0.25);
}

/* BOOK BUTTON */

.navbar .book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 0 18px;

    background: #facc15;

    color: #000;

    border-radius: 6px;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 13px;
    font-weight: 800;

    white-space: nowrap;

    transition: all 0.25s ease;
}

.navbar .book-btn:hover {
    background: #ffd83d;

    transform: translateY(-1px);

    box-shadow:
        0 0 18px rgba(250, 204, 21, 0.35);
}

/* =========================================================
   HAMBURGER
========================================================= */

.navbar .menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    margin-left: auto;

    cursor: pointer;

    flex-direction: column;

    justify-content: center;
    align-items: center;

    gap: 6px;

    flex-shrink: 0;
}

.navbar .menu-toggle span {
    display: block;

    width: 30px;
    height: 3px;

    background: #ffffff;

    border-radius: 3px;

    transition: all 0.3s ease;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .navbar {
        padding: 0 25px;
    }

    .navbar .nav-links {
        gap: 18px;

        margin-right: 15px;
    }

    .navbar .nav-links a {
        font-size: 13px;
    }

    .navbar .logo-text h2 {
        font-size: 22px;
    }

    .navbar .logo img {
        width: 56px;
        height: 56px;
    }

}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .navbar {
        min-height: 72px;

        padding: 0 15px;
    }

    /* Hide desktop navigation */

    .navbar .nav-links,
    .navbar .nav-right {
        display: none;
    }

    /* Show hamburger */

    .navbar .menu-toggle {
        display: flex;
    }

    /* Logo */

    .navbar .logo {
        gap: 9px;
    }

    .navbar .logo img {
        width: 50px;
        height: 50px;
    }

    .navbar .logo-text h2 {
        font-size: 21px;
    }

    .navbar .logo-text span {
        font-size: 9px;

        letter-spacing: 2.5px;

        margin-top: 4px;
    }

}

/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 400px) {

    .navbar {
        padding: 0 10px;
    }

    .navbar .logo img {
        width: 46px;
        height: 46px;
    }

    .navbar .logo-text h2 {
        font-size: 18px;
    }

    .navbar .logo-text span {
        font-size: 8px;

        letter-spacing: 2px;
    }

    .navbar .menu-toggle {
        width: 40px;
    }

    .navbar .menu-toggle span {
        width: 27px;
    }

}

/* =========================================================
   EXTRA SMALL SCREEN
========================================================= */

@media (max-width: 330px) {

    .navbar .logo-text h2 {
        font-size: 16px;
    }

    .navbar .logo-text span {
        font-size: 7px;
        letter-spacing: 1.5px;
    }

    .navbar .logo img {
        width: 42px;
        height: 42px;
    }

}
/* ===== EMERGENCY MOBILE MENU FIX ===== */

@media screen and (max-width: 900px) {

    .navbar {
        position: relative !important;
    }

    .navbar .menu-toggle {
        display: flex !important;
        position: absolute !important;

        top: 14px !important;
        right: 14px !important;

        width: 46px !important;
        height: 46px !important;

        z-index: 999999 !important;

        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;

        gap: 6px !important;

        padding: 0 !important;
        margin: 0 !important;

        background: #080808 !important;

        border: 2px solid #D4AF37 !important;
        border-radius: 10px !important;

        opacity: 1 !important;
        visibility: visible !important;

        box-sizing: border-box !important;
    }

    .navbar .menu-toggle span {
        display: block !important;

        width: 26px !important;
        height: 3px !important;

        padding: 0 !important;
        margin: 0 !important;

        background: #D4AF37 !important;

        border-radius: 10px !important;

        opacity: 1 !important;
        visibility: visible !important;
    }
}
