/*
WAT: Rustige, responsieve opmaak voor de domeinparkeerpagina.
WAAROM: De domeinnaam en contactmogelijkheid blijven leesbaar op mobiel en in donkere modus.
HOE: Systeemfonts, lokale kleuren en een enkele kolom zonder externe bronnen.
WAAR: Alleen sites/domeinparkeer/index.html gebruikt dit bestand.
*/
:root {
  color-scheme: light dark;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5f6f5;
  color: #1c2928;
  font-synthesis: none;
}

* { box-sizing: border-box; }

body { margin: 0; }

.pagina {
  min-height: 100vh;
  min-height: 100dvh;
  max-width: 1140px;
  margin: 0 auto;
  padding: 28px clamp(20px, 5vw, 68px) 30px;
  display: flex;
  flex-direction: column;
}

.bovenbalk, .talen { display: flex; align-items: center; }
.bovenbalk { justify-content: space-between; gap: 20px; }
.merk { color: #52635f; font-size: .82rem; font-weight: 650; letter-spacing: .07em; text-transform: uppercase; }
.talen { gap: 4px; padding: 4px; border: 1px solid #d9dfdb; border-radius: 999px; }
.talen[hidden] { display: none; }
.talen button { border: 0; border-radius: 999px; padding: 7px 11px; background: transparent; color: inherit; font: inherit; font-size: .8rem; font-weight: 700; cursor: pointer; }
.talen button[aria-pressed="true"] { background: #234f48; color: #fff; }
.talen button:focus-visible, .contactknop:focus-visible { outline: 3px solid #5a9b8d; outline-offset: 3px; }

main { flex: 1; display: flex; align-items: center; padding: clamp(52px, 9vh, 100px) 0; }
.kaart { max-width: 740px; }
.bovenkop { margin: 0 0 26px; color: #536964; font-size: .85rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.statusregel { margin: 0 0 12px; color: #37675d; font-size: clamp(1.15rem, 2.5vw, 1.55rem); font-weight: 700; }
h1 { margin: 0; max-width: 18ch; overflow-wrap: anywhere; font-size: clamp(2.5rem, 6.5vw, 5.1rem); line-height: 1.08; letter-spacing: -.055em; }
.uitleg, .extra { max-width: 56ch; margin: 24px 0 0; color: #4d5f5b; font-size: clamp(1rem, 1.7vw, 1.15rem); line-height: 1.7; }
.extra { margin-top: 10px; }
.prijs { margin: 30px 0 22px; color: #395d54; font-weight: 700; }
.contactknop { display: inline-flex; align-items: center; gap: 24px; min-height: 48px; padding: 12px 20px; border-radius: 8px; background: #234f48; color: #fff; text-decoration: none; font-weight: 700; }
.contactknop:hover { background: #183d37; }
.contacttekst { max-width: 56ch; margin: 15px 0 0; color: #667671; font-size: .84rem; line-height: 1.5; }

footer { border-top: 1px solid #dce2df; padding-top: 22px; color: #667671; font-size: .8rem; line-height: 1.5; }
footer p { margin: 0 0 5px; }
footer .voetnaam { color: #344943; font-weight: 700; }

@media (max-width: 480px) {
  .pagina { padding-top: 20px; }
  .merk { max-width: 11ch; line-height: 1.3; }
  main { padding: 64px 0 76px; }
  .bovenkop { margin-bottom: 22px; }
  h1 { letter-spacing: -.045em; }
}

@media (prefers-color-scheme: dark) {
  :root { background: #151d1b; color: #eef4f0; }
  .merk, .bovenkop, .uitleg, .extra, footer, .contacttekst { color: #b2c2ba; }
  .statusregel, .prijs { color: #9fcebd; }
  .talen, footer { border-color: #3b4b44; }
  .talen button[aria-pressed="true"], .contactknop { background: #a4d3c2; color: #11261f; }
  .contactknop:hover { background: #b9e2d2; }
  footer .voetnaam { color: #e4eee7; }
}
