.site-header {
position: absolute;
top: 34px;
left: 50%;
transform: translateX(-50%);
z-index: 100;
width: 100%;
max-width: 1036px;
padding: 0 20px;
font-family: var(--siga-font, "Montserrat", sans-serif);
}
.site-header__bar {
display: flex;
align-items: center;
justify-content: space-between;
height: 68px;
padding: 8px 16px;
background-color: var(--siga-bg-warm, #f9f4eb);
opacity: 0.9;
border-radius: 1000px;
} .site-header__logo {
flex-shrink: 0;
width: 120px;
height: 57px;
}
.site-header__logo img {
display: block;
width: 100%;
height: 100%;
object-fit: contain;
} .site-header__nav {
display: flex;
align-items: center;
list-style: none;
margin: 0;
padding: 0;
}
.site-header__nav li {
margin: 0;
padding: 0;
}
.site-header__nav a {
display: flex;
align-items: center;
justify-content: center;
padding: 8px 16px;
font-size: 16px;
font-weight: 600;
color: var(--siga-navy, #233e55);
text-decoration: none;
white-space: nowrap;
transition: color 0.2s ease;
}
.site-header__nav a:hover,
.site-header__nav a:focus,
.site-header__nav li.active > a {
color: var(--siga-gold, #a96f00);
} .site-header__logout {
display: flex;
align-items: center;
flex-shrink: 0;
padding: 8px 16px;
font-size: 16px;
font-weight: 600;
color: var(--siga-navy, #233e55);
text-decoration: none;
white-space: nowrap;
transition: color 0.2s ease;
}
.site-header__logout:hover,
.site-header__logout:focus {
color: var(--siga-gold, #a96f00);
} .site-header__cta {
flex-shrink: 0;
}
.site-header__cta a {
display: flex;
align-items: center;
justify-content: center;
height: 40px;
padding: 0 24px;
background-color: #fa0400;
color: #ffffff;
font-family: "Inter", sans-serif;
font-size: 16px;
font-weight: 500;
text-decoration: none;
border-radius: 10000px;
white-space: nowrap;
transition: background-color 0.2s ease;
}
.site-header__cta a:hover,
.site-header__cta a:focus {
background-color: #d80300;
} .site-header__toggle {
display: none;
background: none;
border: none;
cursor: pointer;
padding: 8px;
flex-shrink: 0;
}
.site-header__toggle span {
display: block;
width: 24px;
height: 2px;
background-color: var(--siga-navy, #233e55);
margin: 5px 0;
border-radius: 2px;
transition: transform 0.3s ease, opacity 0.3s ease;
} @media (max-width: 860px) {
.site-header {
top: 20px;
padding: 0 16px;
}
.site-header__bar {
padding: 8px 12px 8px 16px;
}
.site-header__nav {
display: none;
}
.site-header__toggle {
display: block;
} .site-header.is-open .site-header__bar {
border-radius: 24px;
flex-wrap: wrap;
height: auto;
}
.site-header.is-open .site-header__nav {
display: flex;
flex-direction: column;
width: 100%;
padding: 16px 0 8px;
gap: 4px;
}
.site-header.is-open .site-header__nav a {
justify-content: flex-start;
padding: 10px 16px;
border-radius: 12px;
}
.site-header.is-open .site-header__nav a:hover {
background-color: rgba(35, 62, 85, 0.06);
}
.site-header.is-open .site-header__toggle span:nth-child(1) {
transform: rotate(45deg) translate(5px, 5px);
}
.site-header.is-open .site-header__toggle span:nth-child(2) {
opacity: 0;
}
.site-header.is-open .site-header__toggle span:nth-child(3) {
transform: rotate(-45deg) translate(5px, -5px);
}
} @media (max-width: 520px) {
.site-header {
top: 12px;
}
.site-header__logo {
width: 120px;
height: 44px;
}
} @media (max-width: 395px) {
.site-header {
top: 10px;
padding: 0 10px;
}
.site-header__bar {
padding: 6px 8px 6px 12px;
height: 58px;
}
.site-header__logo {
width: 90px;
height: 40px;
}
.site-header__toggle {
padding: 6px;
}
.site-header__logout {
padding: 4px 8px;
}
.site-header__cta a {
height: 36px;
padding: 0 14px;
font-size: 14px;
}
}