/* Gedeelde stijlen voor alle publieke pagina's */

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
body { font-family: system-ui, -apple-system, sans-serif; background: #f0f4f8; color: #1a2733; font-size: 16px; line-height: 1.6; margin: 0; min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }
a { color: #1a5fa8; text-decoration: none; }
a:hover { text-decoration: underline; }

/* === Toegankelijkheid === */
.skip-nav { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.skip-nav:focus { position: fixed; top: 0; left: 0; width: auto; height: auto; overflow: visible; z-index: 9999; background: #0a3158; color: #fff; padding: .5rem 1rem; font-size: 1rem; text-decoration: none; border-radius: 0 0 8px 0; outline: 3px solid #fff; }
:focus-visible { outline: 3px solid #1a5fa8; outline-offset: 2px; border-radius: 2px; }
.site-header a:focus-visible, .site-nav a:focus-visible, .taal-switch a:focus-visible { outline-color: #fff; }

/* === Header === */
.site-header { background: #0a3158; color: #fff; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; min-height: 62px; gap: 1rem; }
.site-header .logo { display: inline-flex; align-items: center; gap: .5rem; text-decoration: none; white-space: nowrap; }
.site-header .logo:hover { text-decoration: none; opacity: .85; }
.logo-img { height: 50px; width: auto; display: block; }
.site-nav { display: flex; gap: 1.2rem; align-items: center; flex-shrink: 0; flex-wrap: wrap; justify-content: flex-end; }
.site-header a, .site-nav a { color: #9bbbd8; font-size: .85rem; white-space: nowrap; }
.site-header a:hover, .site-nav a:hover { color: #fff; text-decoration: none; }
.site-nav a.actief { color: #fff; }
.nav-teller { color: #c9a227; font-size: .82rem; font-weight: 600; white-space: nowrap; }

/* === Taalswitch === */
.taal-switch { display: flex; gap: .2rem; align-items: center; }
.taal-switch a { color: #9bbbd8; font-size: .75rem; padding: .15rem .35rem; border-radius: 3px; white-space: nowrap; display: inline-flex; align-items: center; gap: .2rem; }
.taal-switch a:hover { color: #fff; text-decoration: none; }
.taal-switch a[aria-current] { color: #fff; background: rgba(255,255,255,.18); }
@media (max-width: 500px) { .taal-label { display: none; } }

/* === Footer === */
.site-footer { background: #0a3158; color: #9bbbd8; padding: .7rem 1.5rem; font-size: .82rem; margin-top: 2rem; }
.footer-inner { max-width: 900px; margin: 0 auto; }
.footer-links { display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; justify-content: center; margin-bottom: .6rem; }
.footer-links a { color: #9bbbd8; }
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-teller { color: #c9a227; font-weight: 600; }

/* === RTL basis === */
[dir="rtl"] .site-header,
[dir="rtl"] .site-nav { flex-direction: row-reverse; }
