/* ===== HEADER ONLY CSS ===== */
:root {
    --bg2: #0B1C33;
    --gold: #D4AF37;
    --container: 1440px;
    --inner-pad: 32px;
}

html,
body {
    overflow-x: clip;
}

/* Top Banner */
#top {
    position: relative;
    width: 100%;
    min-height: 334px;
    background-color: #4f432d;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 0 4%;
    overflow: hidden;
    z-index: 1;
}

#top::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.35) 0%, transparent 70%);
    z-index: 1;
}

.logo_top {
    position: relative;
    z-index: 2;
    width: 11%;
    max-width: 180px;
    min-width: 130px;
    margin-left: 26%;
}

.logo_top a {
    display: block;
}

.logo_top img,
#top a img {
    width: 100% !important;
    max-width: 180px !important;
    height: auto !important;
    display: block !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Nav - Sticky */
.site-nav,
.site-nav.banner-nav {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    width: 100%;
    background: #0B1C33;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, .15);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--inner-pad);
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 11px;
    letter-spacing: .15em;
    font-weight: 500;
}

.nav-links a {
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    transition: .2s;
}

.nav-links a.active {
    color: var(--gold);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
}

.nav-links a:hover {
    color: #fff;
}

.dropdown {
    position: relative;
}

.dropdown button {
    background: none;
    border: none;
    color: rgba(255, 255, 255, .7);
    font-size: 11px;
    letter-spacing: .15em;
    cursor: pointer;
    padding: 6px 0;
}

.dropdown-box {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    background: var(--bg2);
    border: 1px solid rgba(212, 175, 55, .35);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .7);
    opacity: 0;
    pointer-events: none;
    transition: .2s;
    z-index: 50;
}

.dropdown:hover .dropdown-box {
    opacity: 1;
    pointer-events: auto;
}

.foundation-box {
    width: 320px;
}

.dropdown-title {
    font-family: Cinzel, serif;
    font-size: 10px;
    letter-spacing: .25em;
    color: var(--gold);
    margin-bottom: 12px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.grid-2 div {
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .05);
    font-size: 11px;
    color: rgba(255, 255, 255, .7);
}

.grid-2 div a {
    color: inherit;
    text-decoration: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-actions-desktop {
    display: flex;
    gap: 18px;
    align-items: center;
}

.nav-actions a {
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: .1em;
}

.menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
    cursor: pointer;
}

.mobile-brand {
    display: none;
    font-family: Cinzel, serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--gold);
    text-transform: uppercase;
}

.mobile-menu {
    display: none;
    background: var(--bg2);
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 16px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .5);
}

.mobile-menu.open {
    display: block;
}

.mobile-links {
    display: grid;
    gap: 0;
}

.mobile-links a {
    padding: 14px 20px;
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.mobile-dropdown {
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.mobile-dropdown-btn {
    width: 100%;
    text-align: left;
    padding: 14px 20px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, .85);
    font-size: 13px;
    cursor: pointer;
}

.mobile-dropdown-box {
    display: none;
    background: rgba(0, 0, 0, .2);
    padding: 8px 0;
    border-radius: 8px;
    margin-top: 4px;
}

.mobile-dropdown-box.open {
    display: block;
}

.mobile-dropdown-box a {
    display: block;
    padding: 10px 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, .65);
}

/* Responsive - Header Only */
@media (min-width: 769px) {

    .mobile-menu,
    .mobile-brand {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    #top {
        min-height: 300px;
    }

    .nav-links {
        gap: 14px;
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    #top {
        min-height: auto !important;
        background-image: none !important;
        background: #4f432d !important;
        justify-content: center !important;
    }

    #top::before {
        display: none !important;
    }

    .logo_top {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        margin: 0 auto !important;
    }

    .logo_top img {
        width: 68% !important;
        max-width: 260px !important;
        min-width: 309px !important;
        margin: 0 auto !important;
    }

    .nav-links,
    .nav-actions-desktop {
        display: none !important;
    }

    .mobile-brand {
        display: block !important;
    }

    .nav-inner {
        height: 50px !important;
        padding: 0 16px !important;
    }

    .menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    .nav-actions {
        margin-left: auto;
    }
}

@media (max-width: 480px) {
    .logo_top img {
        width: 70% !important;
        max-width: 260px !important;
        min-width: 309px !important;
    }
}