/* Header */
.custom-header {
    background: #ffffffd0;
    border-bottom: 1px solid #e5e5e5;
    z-index: 999;
}

/* Logo */
.logo-box {
    width: 40px;
    height: 40px;
    background: #0f4c3a;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.logo-text strong {
    font-size: 18px;
    letter-spacing: 1px;
    color: #0f4c3a;
}

.logo-text small {
    font-size: 11px;
    color: #d27d2d;
    letter-spacing: 1px;
}

/* Nav links */
.navbar-nav .nav-link {
    font-size: 14px;
    font-weight: 600;
    color: #2f5d50 !important;
    letter-spacing: 1px;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #d27d2d !important;
}

/* Button */
.book-btn {
    background: #d27d2d;
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
}

.book-btn:hover {
    background: #b86a22;
    color: #fff;
}

/* Mobile spacing */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
        padding: 15px;
        margin-top: 10px;
        border-radius: 10px;
    }

    .book-btn {
        width: 100%;
        margin-top: 10px;
    }
}