/* Navbar background */
.custom-navbar {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    padding: 12px 0;
}
/* Brand styling */
.custom-navbar .brand-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}
/* Nav links */
.custom-navbar .nav-link {
    color: #e0e0e0;
    font-weight: 500;
    margin: 0 8px;
    position: relative;
    transition: all 0.3s ease;
}
/* Hover underline animation */
.custom-navbar .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 5px;
    left: 0;
    background-color: #00d1b2;
    transition: width 0.3s ease;
}
/* CTA button */
.custom-navbar .book-btn {
    background: #00d1b2;
    color: white;
    font-weight: 600;
    padding: 8px 18px;
    transition: all 0.3s ease;
}
.custom-navbar .navbar-link,
a.navbar-item {
    background-color: transparent;
}
@media screen and (max-width: 1023px) {
    .custom-navbar .navbar-menu {
        background-color: transparent;
    }
}
.custom-navbar .navbar-burger span {
    background-color: #ffffff;
}
