/* ═══════════════════════════════════════════
   HEADER — Transparent over hero, solid on scroll
   Matches: exceleventpartyhire.com.au exactly
   ═══════════════════════════════════════════ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: transparent;                  /* transparent by default — sits over hero */
    z-index: 9999;
    transition: background 0.4s var(--ease),
                box-shadow 0.4s var(--ease),
                height 0.3s var(--ease);
}

/* On scroll — solid dark background */
.site-header.scrolled {
    background: rgba(26, 10, 30, 0.97);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    height: 70px;
}

.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gap);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ── Logo ── */
.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    transition: transform 0.3s var(--ease);
}
.site-logo:hover { transform: scale(1.03); }

.site-logo img {
    height: 55px;
    width: auto;
    border-radius: 50%;                       /* circular logo like the original */
    transition: height 0.3s var(--ease);
}
.site-header.scrolled .site-logo img { height: 46px; }

/* ── Navigation ── */
.header-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu,
.header-nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.nav-menu li a,
.header-nav ul li a {
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;                            /* white text over dark bg/image */
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 6px;
    position: relative;
    letter-spacing: 0.02em;
    transition: color 0.25s var(--ease), background 0.25s var(--ease);
}

.nav-menu li a:hover,
.header-nav ul li a:hover {
    color: var(--champagne);
    background: rgba(255, 255, 255, 0.08);
}

/* Active — "Home" is bold white like original */
.nav-menu li.current-menu-item > a,
.nav-menu li.current_page_item > a,
.nav-menu li.current-menu-ancestor > a,
.nav-menu li a.active {
    color: #ffffff;
    font-weight: 700;
}

/* ── Book Now CTA — Yellow bg, black text (matches screenshot) ── */
.header-cta { margin-left: 20px; }

.header-cta .btn-book {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 700;
    color: #000000;                            /* black text */
    background: #f5c518;                       /* bright yellow like original */
    padding: 10px 26px;
    border-radius: 4px;                        /* slightly rounded rectangle, NOT pill */
    text-decoration: none;
    letter-spacing: 0.02em;
    border: 2px solid #f5c518;
    display: inline-block;
    transition: all 0.3s var(--ease);
}

.header-cta .btn-book:hover {
    background: #ffd740;
    border-color: #ffd740;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(245, 197, 24, 0.3);
}

/* ── Mobile Toggle ── */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 10001;
}

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s var(--ease);
    transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9997;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}
.nav-overlay.active { display: block; opacity: 1; }

/* ═══════════════════════════════════════════
   FLOATING BUTTONS — Yellow circles (matches screenshot)
   ═══════════════════════════════════════════ */
.floating-actions {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s 1s var(--ease) forwards;
}

.fab {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #f5c518;                       /* yellow like original */
    color: #000000;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.3s var(--ease);
}

.fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(245, 197, 24, 0.4);
    color: #000000;
}

.fab svg { width: 22px; height: 22px; fill: currentColor; }

/* ═══════════════════════════════════════════
   MOBILE RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 991px) {
    .mobile-toggle { display: flex; }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #1a1a1a;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 40px;
        gap: 0;
        transition: right 0.4s var(--ease);
        box-shadow: -10px 0 40px rgba(0,0,0,0.5);
        z-index: 9998;
    }

    .header-nav.open { right: 0; }

    .nav-menu, .header-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    .nav-menu li, .header-nav ul li { width: 100%; }

    .nav-menu li a, .header-nav ul li a {
        display: block;
        padding: 14px 16px;
        font-size: 17px;
        border-radius: 8px;
    }

    .header-cta {
        margin-left: 0;
        margin-top: 24px;
        width: 100%;
    }

    .header-cta .btn-book {
        display: block;
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 575px) {
    .site-logo img { height: 44px; }
    .floating-actions { right: 16px; bottom: 16px; }
    .fab { width: 48px; height: 48px; }
}
