/* ═══════════════════════════════════════
   header.css — Apex Awards Navbar
═══════════════════════════════════════ */

/* ── Sticky Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 252, 240, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

/* ── Nav Wrapper ── */
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 0;
    gap: 1rem;
}

/* ── Logo ── */
.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #E6B422, #D4AF37);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.35);
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.45rem;
    font-weight: 800;
    background: linear-gradient(135deg, #A67B27, #D4AF37);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.4px;
    line-height: 1;
}

.logo-tagline {
    font-size: 0.6rem;
    font-weight: 500;
    color: #B8860B;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-top: 1px;
}

/* ── Nav Links ── */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    flex-wrap: nowrap;
}

.nav-links a {
    color: #2c2c3a;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
    padding: 0.4rem 0.55rem;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    position: relative;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #B8860B;
    background: rgba(212, 175, 55, 0.08);
}

.nav-links a.active {
    color: #B8860B;
    font-weight: 600;
}

/* ── Nav CTA Button ── */
.nav-cta {
    background: linear-gradient(135deg, #E6B422 0%, #D4AF37 100%);
    border: none;
    color: #1e1e2a !important;
    font-weight: 700 !important;
    padding: 0.55rem 1.3rem !important;
    border-radius: 2rem !important;
    font-size: 0.85rem !important;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
    transition: transform 0.2s, box-shadow 0.2s !important;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.5) !important;
    background: linear-gradient(135deg, #F0C45A, #D4AF37) !important;
    color: #1e1e2a !important;
}

/* ── Mobile Hamburger ── */
.mobile-menu-btn {
    display: none;
    background: none;
    border: 1.5px solid rgba(212, 175, 55, 0.5);
    color: #B8860B;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 1.2rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    flex-shrink: 0;
}

.mobile-menu-btn:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* ── Mobile Dropdown ── */
@media (max-width: 900px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 4px);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background: #fffdf5;
        border: 1px solid rgba(212, 175, 55, 0.3);
        border-top: none;
        padding: 1rem;
        gap: 0.25rem;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
        z-index: 998;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 0.65rem 1rem;
        border-radius: 10px;
        font-size: 0.95rem;
    }

    .nav-cta {
        margin-top: 0.5rem;
        justify-content: center;
        padding: 0.7rem 1rem !important;
    }
}