/* Redesigned site header — white logo section + yellow nav section. */

.site-header {
    width: 100%;
    background: #ffffff;
    font-family: inherit;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.site-header__inner {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 96px;
}

/* Logo (left, white background) */
.site-header__logo {
    display: flex;
    align-items: center;
    padding: 0 2.5rem;
    background: #ffffff;
    text-decoration: none;
    flex-shrink: 0;
}

.site-header__logo svg {
    width: auto;
    height: 64px;
    max-width: 280px;
}

/* Nav (right, yellow background) */
.site-nav {
    flex: 1 1 auto;
    background: #FCC82C;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2.25rem;
    padding: 0 2rem;
}

.site-nav__list {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__list a {
    color: #2D2D2D;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1;
    padding: 0.5rem 0;
    transition: color 0.15s ease;
}

.site-nav__list a:hover,
.site-nav__list a:focus {
    color: #1a1a1a;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Contact Us pill button */
.site-nav__contact {
    display: inline-block;
    background: #ffffff;
    color: #2D2D2D;
    padding: 0.75rem 1.75rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease;
}

.site-nav__contact:hover,
.site-nav__contact:focus {
    background: #2D2D2D;
    color: #ffffff;
}

/* Language selector */
.site-nav__language {
    position: relative;
}

.site-nav__lang-button {
    background: transparent;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font: inherit;
    font-weight: 600;
    font-size: 1rem;
    color: #2D2D2D;
    padding: 0.5rem 0.25rem;
}

.site-nav__lang-button svg {
    width: 22px;
    height: 22px;
    display: block;
}

.site-nav__lang-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 200px;
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    z-index: 100;
}

.site-nav__lang-menu[hidden] {
    display: none;
}

.site-nav__lang-menu li {
    margin: 0;
}

.site-nav__lang-menu a {
    display: block;
    padding: 0.5rem 1.25rem;
    color: #2D2D2D;
    text-decoration: none;
    font-size: 0.95rem;
}

.site-nav__lang-menu a:hover,
.site-nav__lang-menu a:focus {
    background: #FCC82C;
}

/* Responsive — collapse the nav on small screens */
@media (max-width: 900px) {
    .site-header__inner {
        flex-direction: column;
        min-height: auto;
    }
    .site-header__logo {
        padding: 1rem 1.5rem;
        justify-content: center;
    }
    .site-nav {
        padding: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    .site-nav__list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.25rem;
    }
    .site-nav__list a {
        font-size: 1rem;
    }
}
