/* ============================
   HEADER CONTAINER
   ============================ */
header.nav-header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    background: var(--color-navy, #071f4a);
    border-bottom: 3px solid var(--color-gold, #f6cc4f);
    box-shadow: 0 4px 16px rgb(7 31 74 / 0.2);
}

/* ============================
   INNER WRAPPER
   ============================ */
.nav-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 80rem;
    min-height: 4.5rem;
    margin: 0 auto;
    padding: 0.5rem 1rem;
}

/* ============================
   BRAND
   ============================ */
.nav-header-title {
    min-width: 0;
    max-width: calc(100% - 7rem);
    margin: 0;
}

.nav-header-brand {
    display: inline-flex;
    align-items: center;
    color: var(--color-white, #ffffff);
    text-decoration: none;
}

.nav-header-logo {
    display: block;
    width: auto;
    object-fit: contain;
}

.nav-header-brand picture {
    display: block;
    flex: 0 0 auto;
}

.nav-header-logo {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
}

.nav-header-brand-text {
    margin-left: 0.65rem;
    overflow: hidden;
    color: var(--color-white, #ffffff);
    font-size: clamp(0.85rem, 3.8vw, 1rem);
    font-weight: 700;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-header-brand:focus-visible {
    outline: 3px solid var(--color-gold, #f6cc4f);
    outline-offset: 4px;
    border-radius: var(--radius-sm, 0.5rem);
}

/* ============================
   RIGHT-SIDE ICON CLUSTER
   ============================ */
.nav-header-icons {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 1rem;
}

/* ============================
   BURGER MENU BUTTON
   ============================ */
#burgerBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    color: var(--color-white, #ffffff);
    background: rgb(255 255 255 / 0.08);
    border: 1px solid rgb(246 204 79 / 0.45);
    border-radius: 50%;
    cursor: pointer;
    transition:
        color var(--duration-fast, 0.2s) ease,
        background-color var(--duration-fast, 0.2s) ease,
        border-color var(--duration-fast, 0.2s) ease,
        transform var(--duration-fast, 0.2s) ease;
}

#burgerBtn:hover {
    color: var(--color-navy, #071f4a);
    background: var(--color-gold, #f6cc4f);
    border-color: var(--color-gold, #f6cc4f);
    transform: scale(1.04);
}

#burgerBtn:focus-visible {
    outline: 3px solid var(--color-gold, #f6cc4f);
    outline-offset: 3px;
}

#burgerBtn svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* ============================
   TABLET AND DESKTOP
   ============================ */
@media (min-width: 40rem) {
    .nav-header-inner {
        min-height: 5rem;
        padding: 0.5rem 1.5rem;
    }

    .nav-header-brand-text {
        display: none;
    }

    .nav-header-logo {
        display: block;
        width: auto;
        height: 4rem;
        border-radius: 0;
    }

    .nav-header-icons {
        gap: 1.25rem;
    }
}

@media (min-width: 64rem) {
    .nav-header-inner {
        padding-inline: 2rem;
    }

    .nav-header-logo {
        height: 4.25rem;
    }
}
