/* ===== HEADER — LIGHT THEME ===== */
:root {
    --gold: #B8860B;
    --gold-light: #D4A017;
    --text-dark: #1A1A1A;
    --text-muted: #777777;
    --border: rgba(0,0,0,0.08);
    --bg-card: #FFFFFF;
}

#main-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1050;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(184,134,11,0.15);
    transition: all 0.3s ease;
    padding: 10px 0;
}
#main-header.scrolled {
    padding: 7px 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.99);
}

/* Force single row on all screen sizes */
#main-header .navbar {
    flex-wrap: nowrap !important;
    min-height: 0;
}

/* Logo */
.header-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: 0.5px;
    line-height: 1.15;
    flex-shrink: 0;
}
.header-logo span { color: var(--gold); }
.header-logo small {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.52rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 1px;
    white-space: nowrap;
}
@media (max-width: 400px) {
    .header-logo { font-size: 1.1rem; }
    .header-logo small { font-size: 0.46rem; letter-spacing: 1.5px; }
}

/* Desktop Nav Links */
.header-nav .nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-dark) !important;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 6px 13px !important;
    transition: color 0.3s ease;
    position: relative;
}
.header-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 13px;
    width: 0; height: 1.5px;
    background: var(--gold);
    transition: width 0.3s ease;
}
.header-nav .nav-link:hover { color: var(--gold) !important; }
.header-nav .nav-link:hover::after { width: calc(100% - 26px); }

/* CTA Button (shared) */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #fff !important;
    font-family: 'Inter', sans-serif;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: 3px;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(184,134,11,0.3);
    color: #fff !important;
}
.btn-gold-sm {
    padding: 7px 14px !important;
    font-size: 0.68rem !important;
    letter-spacing: 1px !important;
}

/* Hamburger */
.navbar-toggler {
    border: 1.5px solid rgba(184,134,11,0.35);
    padding: 5px 9px;
    flex-shrink: 0;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28184%2C134%2C11%2C1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 20px; height: 20px;
}

/* Mobile header call + book buttons */
.header-mobile-call {
    width: 34px; height: 34px;
    background: rgba(184,134,11,0.08);
    border: 1.5px solid rgba(184,134,11,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 0.82rem;
    transition: all 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
}
.header-mobile-call:hover {
    background: rgba(184,134,11,0.15);
    color: var(--gold);
}

/* Mobile right group — always single row, never wraps */
.d-flex.d-lg-none {
    flex-wrap: nowrap !important;
    flex-shrink: 0;
}

/* Mobile collapsed menu */
@media (max-width: 991.98px) {
    .header-nav {
        background: rgba(255,255,255,0.99);
        padding: 14px 0;
        border-top: 1px solid rgba(184,134,11,0.1);
        margin-top: 8px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .header-nav .nav-link {
        padding: 10px 20px !important;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .header-nav .nav-link::after { display: none; }
}

/* Mobile Bottom CTA Bar */
.mobile-cta-bar { display: none; }

@media (max-width: 991.98px) {
    .mobile-cta-bar {
        display: flex;
        position: fixed;
        bottom: 0; left: 0;
        width: 100%;
        z-index: 1060;
        background: #fff;
        border-top: 1px solid rgba(184,134,11,0.2);
        box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    }
    .mobile-cta-bar a {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px 8px;
        font-family: 'Inter', sans-serif;
        font-size: 0.68rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        text-decoration: none;
        gap: 4px;
        transition: background 0.2s ease;
    }
    .mobile-cta-bar a i { font-size: 1.1rem; }
    .mobile-cta-bar .cta-call {
        color: var(--text-dark);
        background: #f8f5f0;
        border-right: 1px solid rgba(184,134,11,0.15);
    }
    .mobile-cta-bar .cta-call i { color: var(--gold); }
    .mobile-cta-bar .cta-call:hover { background: #f0ebe0; }
    .mobile-cta-bar .cta-whatsapp {
        color: #fff;
        background: #25D366;
    }
    .mobile-cta-bar .cta-whatsapp:hover { background: #1ebe5a; }
    .mobile-cta-bar .cta-book {
        color: #fff;
        background: linear-gradient(135deg, var(--gold), var(--gold-light));
    }
    .mobile-cta-bar .cta-book:hover {
        background: linear-gradient(135deg, var(--gold-light), var(--gold));
    }
    body { padding-bottom: 68px; }
}
