.custom-navbar {
    background: linear-gradient(to right, #2b2a27, #3a372f);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    height: 50px;
    width: auto;
}

.navbar-brand img {
    height: 100%;
    max-width: 120px;
    width: 100%;
    filter: brightness(1.1);
}

.nav-link {
    color: #ffffff !important;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.nav-link:hover {
    color: #d4af37 !important;
}

.nav-link.active {
    color: #d4af37 !important;
}

/* Dropdown */
.dropdown-menu {
    background-color: #2b2a27;
    border: none;
}

.dropdown-item {
    color: #fff;
}

.dropdown-item:hover {
    background-color: #d4af37;
    color: #000;
}

/* Book Now Button */
.book-btn {
    background-color: #a57c1b;
    color: #fff;
    padding: 10px 22px;
    border-radius: 15px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.book-btn:hover {
    background-color: #d4af37;
    color: #000;
}


/* Mobile */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
    filter: invert(1);
}

.sticky-social {
    position: fixed;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sticky-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.9);
    color: #6b2e00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.sticky-social a:hover {
    background: #6b2e00;
    color: #fff;
}

.fixed-book-now {
    position: fixed;
    right: 30px;
    bottom: 80px;
    z-index: 999;
    background: linear-gradient(135deg, #002868, #c8102e);
    color: #fff;
    padding: 16px 22px;
    border-radius: 50%;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    line-height: 1.1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s;
}

.fixed-book-now:hover {
    transform: scale(1.08);
    color: #fff;
}

@media (max-width: 768px) {

    .hero-slider,
    .hero-slider img {
        height: 65vh;
    }

    .sticky-social {
        left: 10px;
    }

    .fixed-book-now {
        right: 15px;
        bottom: 20px;
        padding: 12px 16px;
    }
}


/* Smooth hover dropdown animation */
@media (min-width: 992px) {

    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: 0.3s ease;
    }

    .navbar .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

}