/* Header container */
.header-container {
    background-color: #0053a2;
    color: #fff;
    width: 100%;
}

.header-container > div {
    padding: 0 1.5rem;
}

/* Header banner */
.header-banner {
    font-family: Merriweather, serif;
    font-size: 2rem;
    font-weight: 400;
    padding-bottom: 1.5rem;
    padding-top: 1.5rem;
}

/* Navigation container */
.navigation-container {
    background-color: #083c6f;
    font-family: 'Public Sans', sans-serif; 
    font-size: 1rem; 
    font-weight: bold;
    width: 100%;
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;       /* Prevent wrapping */
}

/* Navigation spacer to push items right */
.navigation-spacer {
    flex-grow: 1;
}

/* Top-level nav items */
.navigation-item {
    color: #fff;
    font-family: 'Public Sans', sans-serif; 
    font-size: 1rem; 
    font-weight: bold;
    padding: 0 0.75rem;
    text-transform: upperCase;
}

.navigation-item,
.navigation-item:hover,
.navigation-item:focus,
.navigation-item:active {
    color: #fff;
    text-decoration: none !important;
}

/* Dropdown menu container */
.navigation-dropdown-container {
    background-color: #083c6f !important;   /* force dark background */
    color: #fff !important;                 /* force white text */
    margin-top: 0;
    min-width: max-content;                  /* at least as wide as parent */
    width: auto;                             /* expand if needed */
    border: none;
    border-radius: 0;
    padding: 0;
}

/* Dropdown items */
.navigation-dropdown-item {
    color: #fff !important;                  /* force white text */
    font-family: 'Public Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0 0.75rem;
    height: 100%;
    white-space: nowrap;
    display: flex;
    align-items: center;
    text-transform: upperCase;
}

/* Hover/focus state for dropdown items */
.navigation-dropdown-item:hover,
.navigation-dropdown-item:focus {
    background-color: #083c6f !important;
    color: #fff !important;
    text-decoration: none !important;
}

/* Ensure nav items inside <nav> don’t wrap */
.navigation-container nav {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}
