/* Shared stylesheet for the static info pages (over-ons, FAQ, privacy, terms,
   bronnen, contact). Not part of the map app bundle — these are plain
   documents, so they get a plain stylesheet rather than pulling in style.css
   and everything it assumes about the map shell. */
:root {
  --bg: #0b0e14;
  --panel: #12161e;
  --line: rgba(255, 255, 255, 0.12);
  --text: #e6eaf2;
  --muted: #8b93a7;
  --accent: #f5c518;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font:
    15px / 1.6 system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
}

.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 20px 64px;
}

.page header.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.page header.top a.home {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

.page header.top a.home::before {
  content: "\2190 ";
}

h1 {
  font-size: 26px;
  margin: 0 0 8px;
}

h2 {
  font-size: 18px;
  margin: 32px 0 8px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

p,
li {
  color: var(--text);
}

p.lead {
  color: var(--muted);
  font-size: 16px;
}

a {
  color: var(--accent);
}

.updated {
  color: var(--muted);
  font-size: 13px;
  margin-top: -4px;
  margin-bottom: 24px;
}

dt {
  font-weight: 600;
  margin-top: 20px;
}

dd {
  margin: 4px 0 0;
  color: var(--muted);
}

footer.pages-nav {
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 13px;
}

footer.pages-nav a {
  color: var(--muted);
  text-decoration: none;
}

footer.pages-nav a:hover {
  color: var(--text);
}
