@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;600;700&family=Source+Serif+4:wght@500;600;700&display=swap');

:root {
    --navy: #0b1f3a;
    --navy-2: #12325d;
    --gold: #e2b43c;
    --gold-2: #c69216;
    --ink: #1c2738;
    --muted: #596579;
    --paper: #ffffff;
    --wash: #f3f5f9;
}

body {
    font-family: 'Source Sans 3', 'Noto Sans', sans-serif;
}

.nlrb-topbar {
    background: var(--navy);
    padding: 0.75em 1.5em;
    display: flex;
    align-items: center;
    gap: 0.5em;
    line-height: 1;
}

.nlrb-topbar a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    padding: 0.5em 1em;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.nlrb-topbar a:hover {
    background: rgba(255, 255, 255, 0.12);
}

.nlrb-topbar a.nav-btn {
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.nlrb-topbar a.nav-btn:hover {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--navy) !important;
}

.nav-cta:hover {
    background: var(--gold-2) !important;
}

.nav-sep {
    width: 1px;
    height: 1.4em;
    background: rgba(255, 255, 255, 0.25);
    margin: 0 0.25em;
    flex-shrink: 0;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    background: none;
    color: #fff;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.95em;
    padding: 0.5em 1em;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    cursor: pointer;
    line-height: 1;
    transition: background 0.2s ease;
}

.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.7);
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.4em);
    left: 0;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.4em 0;
    min-width: 180px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.nav-dropdown.open .nav-dropdown-menu {
    display: flex;
    flex-direction: column;
}

.nav-dropdown-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    padding: 0.55em 1.1em;
    transition: background 0.15s ease;
}

.nav-dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.12);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4em;
    cursor: pointer;
    padding: 0.3em 0.5em;
    border-radius: 6px;
    line-height: 1;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.12);
}

.nav-links {
    display: contents;
}

footer {
    text-align: center;
    padding: 1.5em 1.5em;
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85em;
}

footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

@media only screen and (max-width: 900px) {
    .hamburger {
        display: block;
    }

    .nlrb-topbar {
        flex-wrap: wrap;
        padding: 0.5em 1em;
        gap: 0.4em;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0.3em;
        padding-top: 0.5em;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 0.9em;
        padding: 0.5em 0.8em;
    }

    .nav-sep {
        display: none;
    }

    .nav-dropdown {
        display: contents;
    }

    .nav-dropdown-toggle {
        display: none;
    }

    .nav-dropdown-menu {
        display: contents;
    }

    .nav-dropdown-menu a {
        font-size: 0.9em;
        padding: 0.5em 0.8em;
        border: 1px solid rgba(255, 255, 255, 0.4);
        border-radius: 6px;
    }
}
