/* Gedeelde header + footer styling voor landing / meer-info / quickscan.
   Body kleur/font wordt door de pagina zelf gezet. */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(10, 18, 32, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(30, 41, 59, 0.8);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.site-header__right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.brand {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.06em;
    color: #f59e0b;
    text-decoration: none;
}
.brand__dot { color: #ffffff; opacity: 0.5; font-weight: 400; }
.brand__sub { color: #e2e8f0; font-weight: 600; font-size: 16px; }

.lang-switcher {
    display: inline-flex;
    gap: 4px;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(71, 85, 105, 0.4);
    border-radius: 999px;
    padding: 4px;
}
.lang-switcher__form { display: inline; margin: 0; padding: 0; }
.lang-switcher__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.15s;
    font-family: inherit;
}
.lang-switcher__btn:hover { color: #ffffff; background: rgba(71, 85, 105, 0.4); }
.lang-switcher__btn.active { color: #ffffff; background: #f59e0b; }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 8px;
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    transition: all 0.15s;
    text-decoration: none;
}
.nav-cta:hover { border-color: #f59e0b; color: #f59e0b; }

.site-footer {
    padding: 28px 0;
    font-size: 13px;
    color: #64748b;
    margin-top: auto;
}
.site-footer__inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.site-footer a { color: #94a3b8; text-decoration: underline; text-underline-offset: 2px; }
.site-footer a:hover { color: #f59e0b; }

@media (max-width: 640px) {
    .site-header__inner { flex-wrap: wrap; }
}
