/* Gedeelde stijl voor de statische juridische pagina's (privacy, voorwaarden)
   op de teaser. Huisstijl-tokens gedeeld met web/app + teaser/index.html.
   Fonts worden per pagina via Google Fonts ingeladen. */
:root {
  --bg:        #080808;
  --text:      #F2EDE6;
  --text-dim:  rgba(242, 237, 230, 0.62);
  --text-faint:rgba(242, 237, 230, 0.40);
  --gold:      #FBAE59;
  --pink:      #D24B93;
  --surface-2: #141414;
  --border:    rgba(242, 237, 230, 0.10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-dim);
  font-family: "DM Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.7;
  font-size: 15px;
}

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

.page { max-width: 760px; margin: 0 auto; padding: 3.5rem 1.5rem 6rem; }

.topbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; margin-bottom: 3rem;
}
.brand {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--text); font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem; letter-spacing: 0.02em;
}
.brand svg { width: 34px; height: 34px; display: block; }
.back { font-size: 0.85rem; color: var(--text-faint); white-space: nowrap; }
.back:hover { color: var(--gold); text-decoration: none; }

h1 {
  font-family: "Cormorant Garamond", Georgia, serif; font-weight: 400;
  font-size: clamp(2.2rem, 6vw, 3rem); line-height: 1.1; color: var(--text);
  margin-bottom: 0.4rem;
}
h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold) 0%, var(--pink) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.updated { color: var(--text-faint); font-size: 0.85rem; margin-bottom: 3rem; }

section { margin-bottom: 2.6rem; }
h2 { color: var(--text); font-size: 1.2rem; font-weight: 500; margin-bottom: 0.9rem; }
h3 { color: var(--text); font-size: 1rem; font-weight: 500; margin: 1.4rem 0 0.5rem; }
p { margin-bottom: 0.8rem; }
ul { padding-left: 1.4rem; margin: 0.4rem 0 0.8rem; }
ul.plain { list-style: none; padding-left: 0; }
li { margin-bottom: 0.35rem; }
strong { color: var(--text); font-weight: 500; }

.card { background: var(--surface-2); border: 1px solid var(--border); border-radius: 18px; padding: 1.6rem; }
.card .row { display: flex; gap: 1rem; margin-bottom: 0.85rem; }
.card .row:last-child { margin-bottom: 0; }
.card .row .k { color: var(--gold); font-weight: 500; flex-shrink: 0; min-width: 6.5rem; }

.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
th { text-align: left; color: var(--text); font-weight: 500; padding: 0.6rem 1rem 0.6rem 0; border-bottom: 1px solid rgba(251, 174, 89, 0.15); }
td { padding: 0.6rem 1rem 0.6rem 0; border-bottom: 1px solid rgba(251, 174, 89, 0.06); vertical-align: top; }

.legal-footer {
  margin-top: 3.5rem; padding-top: 1.6rem; border-top: 1px solid var(--border);
  font-size: 0.85rem; color: var(--text-faint);
  display: flex; gap: 1.2rem; flex-wrap: wrap; align-items: center;
}
