/* ==========================================================
   Aura Limo — header
   Was an inline <style> block inside <body>. Moved here so it
   downloads once and caches, and so it can no longer override
   the page stylesheets by load order.
   ========================================================== */

/* Scoped box-sizing instead of a global * reset that was
   overriding every other stylesheet on the site. */
.site-header, .site-header *, .site-header *::before, .site-header *::after {
    box-sizing: border-box;
}

.navbar {
    width: 100%;
    height: 100px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
    border-bottom: 1px solid #e5e5e5;
}

.logo img { width: 120px; height: auto; display: block; }

.nav-links { display: flex; list-style: none; gap: 45px; margin: 0; padding: 0; }

.nav-links a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 8px;
    transition: color .3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: width .35s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active { color: #D4AF37; }

.book-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: #D4AF37;
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background .3s, transform .3s, box-shadow .3s;
}

.book-btn:hover {
    background: #be9827;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, .25);
}

/* Real button now, so it needs the button reset */
.menu-toggle {
    display: none;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    color: #000;
    background: none;
    border: 0;
    padding: .25rem .5rem;
}

.site-header a:focus-visible,
.site-header button:focus-visible {
    outline: 2px solid #D4AF37;
    outline-offset: 3px;
}

@media screen and (max-width: 1024px) {
    .navbar { padding: 0 30px; }
    .nav-links { gap: 20px; }
    .nav-links a { font-size: 12px; }
    .book-btn { padding: 10px 18px; font-size: 12px; }
}

@media screen and (max-width: 820px) {
    .menu-toggle { display: block; }

    .book-btn { padding: 10px 16px; font-size: 12px; margin-left: auto; margin-right: 15px; }

    /* Menu is moved off-screen, never display:none — the links stay in
       the DOM and in the accessibility tree for crawlers. */
    .nav-links {
        position: absolute;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        flex-direction: column;
        background: #fff;
        gap: 0;
        transition: left .4s ease;
        z-index: 9999;
    }

    .nav-links.active-menu { left: 0; }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: 20px; text-align: center; border-bottom: 1px solid #eee; }
    .nav-links a::after { display: none; }
}

@media screen and (max-width: 480px) {
    .navbar { height: 80px; padding: 0 15px; }
    .logo img { width: 100px; }
    .book-btn { padding: 8px 12px; font-size: 11px; margin-right: 10px; }
    .menu-toggle { font-size: 26px; }
    .nav-links { top: 80px; height: calc(100vh - 80px); }
}

@media screen and (max-width: 375px) {
    .logo img { width: 85px; }
    .book-btn { padding: 7px 10px; font-size: 10px; }
    .menu-toggle { font-size: 22px; }
}

@media (prefers-reduced-motion: reduce) {
    .nav-links, .book-btn, .nav-links a::after { transition: none !important; }
}