/*! public/css/layout/navbar.css */

/* ---------------------------------------------------------
   🧭 Navbar Layout
--------------------------------------------------------- */
.navbar .container {
    max-width: 2000px;
    display: flex;
    justify-content: space-between;
}

/* Nav items alignment */
nav .container ul {
    width: 100%;
    align-items: center;
    justify-content: space-around;
}

/* Center icon + label */
nav ul li {
    text-align: center;
}

/* Logo size */
.navbar-brand img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* ---------------------------------------------------------
   📱 Responsive Adjustments
--------------------------------------------------------- */
@media (max-width: 992px) {
    nav .container ul {
        align-items: start;
    }

    nav .container .nav-item {
        margin: 2px 20px;
    }
}

/* ---------------------------------------------------------
   ❤️ Booking Button Highlight
--------------------------------------------------------- */
.nav-booking {
    position: relative;
    font-weight: 600;
    color: var(--color-brand);
    transition: color 0.3s ease;
}

.nav-booking::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background-color: var(--color-brand-hover);
    transition: width 0.3s ease;
}

.nav-booking:hover {
    color: var(--color-brand-hover);
}

.nav-booking:hover::after {
    width: 100%;
}
