/* Desktop Navigation - Horizontal Menu */
.desktop-nav {
    display: block;
}

.nav-menu {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
    align-items: center;
}

.nav-item {
    position: relative;
    list-style: none;
    flex-shrink: 0;
}

.nav-link {
    display: inline-block;
    padding: 8px 14px !important;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 999px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    background: #f0f0f0;
    color: #298742;
}

/* Contact button styling */
.contact-btn-nav {
    background: #298742 !important;
    color: white !important;
}

.contact-btn-nav:hover {
    background: #1e6b33 !important;
    color: white !important;
}

/* Booking button styling */
.nav-link-highlight {
    background: #298742 !important;
    color: white !important;
}

.nav-link-highlight:hover {
    background: #1e6b33 !important;
}

/* Dropdown menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 100;
    list-style: none;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: #f5f0e8;
    color: #298742;
}

/* Chevron icon */
.fa-chevron-down {
    font-size: 10px;
    margin-left: 4px;
}

/* Mobile menu button - hidden on desktop */
.mobile-menu-btn {
    display: none;
}

/* Responsive */
@media (max-width: 1200px) {
    .nav-link {
        padding: 6px 10px !important;
        font-size: 13px !important;
    }
}

@media (max-width: 1024px) {
    .desktop-nav {
        display: none !important;
    }
    .mobile-menu-btn {
        display: block !important;
    }
}
