.custom-navbar {
    background: white;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

/* Logo */
.navbar-brand {
    height: 80px;
    width: 180px;
}
.navbar-brand img{
    height: 100%;
    width: 100%;
}


/* Menu links */
.nav-link {
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 12px;
    position: relative;
    transition: 0.3s;
}

.nav-link:hover {
    color: #fe0000ad;
}

/* Active underline */
.active-link {
    color: #fe0000ad;
}

.active-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: #fe0000ad;
}

/* Book Now Button */
.book-btn {
    background: #0b0b2d;
    color: white;
    padding: 8px 22px;
    border-radius: 25px;
    font-weight: 600;
    transition: 0.3s ease;
}

.book-btn:hover {
    background: #fe000081;
    color: white;
}