/* Gestaltung der Rechtsseiten (Impressum, Datenschutzerklärung).
 *
 * Eigenständige, knappe Fassung der Startseite: Satzspiegel, Farbe, Schrift —
 * kein Spielfeld-Ornament, keine Einblendungen, kein Video. Eine Rechtsseite
 * wird gelesen, nicht bestaunt.
 *
 * Als eigene Datei, damit die beiden Seiten nicht auseinanderlaufen. Sie liegt
 * auf derselben Domain und wird nach dem ersten Aufruf mitgeliefert. */

@font-face {
  font-family: "Geist Variable";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/geist-latin-wght-normal.woff2") format("woff2-variations");
}

:root {
  --bg-app: #f4efe6;
  --bg-surface: #fbf8f1;
  --ink: #1a1614;
  --ink-2: #5a4f47;
  --ink-3: #8c7f72;
  --line: #ddd1bd;
  --red: #b4321b;
  --red-hover: #8d2613;
  --font: "Geist Variable", ui-sans-serif, system-ui, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg-app);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  /* Eine Rechtsseite besteht aus Woertern, die niemand kuerzen darf:
     „datenschutz@club-dashboard.org" ist 30 Zeichen lang und passt auf einem
     320px-Geraet in keine Zeile. Ohne diese Regel schob es die ganze Seite
     waagerecht auf. `anywhere` statt `break-word`, weil nur `anywhere` auch
     die Mindestbreite des Kastens mitzieht — sonst bleibt der Ueberlauf,
     obwohl der Text umbricht. */
  overflow-wrap: anywhere;
}
.wrap { max-width: 760px; margin: 0 auto; padding-inline: 24px; }

/* Kopfzeile: dasselbe Zeichen, derselbe Titel wie auf der Startseite. Das SVG
   steht inline — als <img> würde es einmal gerastert und beim Aufziehen der
   Seite nur vergrößert. */
.top { border-bottom: 1px solid var(--line); background: rgba(251,248,241,.72); backdrop-filter: blur(8px); }
.top .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 66px; }
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink); text-decoration: none;
  font-weight: 700; font-size: 17px; letter-spacing: -0.02em;
  white-space: nowrap; line-height: 1.1;
}
.brand__logo { width: 28px; height: 28px; color: var(--red); flex: 0 0 auto; }
.top a.zurueck { color: var(--ink-2); text-decoration: none; font-size: 14.5px; font-weight: 550; }
.top a.zurueck:hover { color: var(--red); }

main { padding: 54px 0 20px; }
h1 { font-size: clamp(30px, 5vw, 42px); font-weight: 750; letter-spacing: -0.025em; line-height: 1.1; margin: 0 0 10px; }
.stand { margin: 0 0 40px; color: var(--ink-3); font-size: 14.5px; }
h2 {
  font-size: 20px; font-weight: 700; letter-spacing: -0.012em;
  margin: 44px 0 10px; padding-top: 22px; border-top: 1px solid var(--line);
}
h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
h3 { font-size: 16.5px; font-weight: 650; margin: 22px 0 6px; }
p { margin: 0 0 14px; color: var(--ink-2); }
p strong, li strong { color: var(--ink); font-weight: 650; }
ul { margin: 0 0 14px; padding-left: 20px; color: var(--ink-2); }
li { margin-bottom: 6px; }
a { color: var(--red); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--red-hover); }
code { font-size: 0.94em; }
.karte {
  background: var(--bg-surface); border: 1px solid var(--line); border-radius: 14px;
  padding: 20px 22px; margin: 0 0 14px;
}
.karte p:last-child { margin-bottom: 0; }
address { font-style: normal; color: var(--ink-2); }

.foot { border-top: 1px solid var(--line); margin-top: 56px; padding: 26px 0 40px; }
.foot .wrap { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 22px; }
.foot a { color: var(--ink-2); text-decoration: none; font-size: 14.5px; }
.foot a:hover { color: var(--red); }
.foot span { margin-left: auto; color: var(--ink-3); font-size: 14px; }
@media (max-width: 560px) { .foot span { margin-left: 0; width: 100%; } }
