/* =========================================
   MENU REFACTOR STYLES (UI/UX) - Force Apply
   ========================================= */

/* Header Structure and Visuals */
header {
    padding: 5px 0 !important;
    /* Reduced padding for slimmer look */
    background-color: #ffffff !important;
    /* Pure White */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08) !important;
}

header .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

/* Logo - Breather Space */
.logo-link {
    margin-right: auto !important;
    padding-left: 0 !important;
    background: transparent !important;
    /* Ensure no bg */
}

.logo-img {
    height: 85px !important;
    /* Reduced to 85px for compact header */
    width: auto !important;
    background: none !important;
    /* Technique to burn out light grey background to white */
    filter: contrast(1.5) brightness(1.1) !important;
    mix-blend-mode: multiply !important;
    /* Hides the resultant white background */
    box-shadow: none !important;
    border: none !important;
    object-fit: contain !important;
}

/* Navigation Links - Typography and Spacing */
.nav-links {
    display: flex !important;
    gap: 25px !important;
    /* Reduced from 40px to fit big logo */
    align-items: center !important;
    margin: 0 20px !important;
    /* Reduced margins */
}

.nav-links a {
    font-family: 'Montserrat', 'Open Sans', sans-serif !important;
    font-weight: 600 !important;
    /* Bolder */
    color: #222 !important;
    font-size: 1.1rem !important;
    /* Bigger text */
    text-transform: capitalize !important;
    letter-spacing: 0.5px !important;
    transition: color 0.3s ease !important;
    white-space: nowrap !important;
    /* Force Single Line */
}

.nav-links a:hover {
    color: #004236 !important;
    /* Emerald Green */
}

/* CTA "Reservar" Button - Premium Look */
.nav-links a.btn-nav {
    background-color: #004236 !important;
    /* Emerald Deep Green */
    /* Emerald Deep Green */
    color: #ffffff !important;
    /* FORCE WHITE TEXT */
    text-decoration: none !important;
    padding: 14px 35px !important;
    border-radius: 50px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    font-size: 0.8rem !important;
    letter-spacing: 1px !important;
    box-shadow: 0 10px 20px rgba(0, 66, 54, 0.15) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    border: none !important;
}

.btn-nav:visited,
.btn-nav:active,
.btn-nav:focus {
    color: #ffffff !important;
    /* Ensure it stays white */
}

.btn-nav:hover {
    background-color: #002e25 !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 15px 30px rgba(0, 66, 54, 0.25) !important;
}

/* Mobile Adjustments for Overrides */
@media (max-width: 900px) {
    .nav-links {
        display: none !important;
        /* Hide desktop nav */
    }

    .hamburger {
        display: flex !important;
    }
}