/* Stil für die Rechtsseiten (/impressum, /datenschutz).
   Bewusst statisches HTML + CSS statt React: diese Seiten müssen schnell laden,
   ohne JavaScript funktionieren und für Crawler (und Apple beim App-Review)
   direkt lesbar sein. Farben und Schrift sind dieselben wie auf der Startseite. */

:root {
  --bg:      #0A0B0D;
  --surface: #141619;
  --line:    #262A31;
  --text:    #EEF0F3;
  --muted:   #868D98;
  --accent:  #7EC8E3;
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(/fonts/dm-sans-latin-normal.woff2) format('woff2');
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 680px; margin: 0 auto; padding: 0 24px; }

header.top {
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: rgba(10, 11, 13, 0.95);
  backdrop-filter: blur(12px);
}

header.top .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}

.back {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.back:hover { color: var(--text); }

main { padding: 56px 0 96px; }

h1 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.stand { color: var(--muted); font-size: 14px; margin: 0 0 40px; }

h2 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 40px 0 10px;
}

p, li { color: #C4CAD2; }
p { margin: 0 0 14px; }

ul { margin: 0 0 14px; padding-left: 20px; }
li { margin-bottom: 6px; }

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

strong { color: var(--text); font-weight: 600; }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 22px;
  margin: 0 0 14px;
}
.card p:last-child { margin-bottom: 0; }

/* Für Stellen, die der Betreiber noch ausfüllen muss — soll auffallen. */
.todo {
  border-color: #E8B33A;
  background: rgba(232, 179, 58, 0.07);
}
.todo::before {
  content: "Noch auszufüllen";
  display: block;
  color: #E8B33A;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

footer.bottom {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}
footer.bottom .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}
footer.bottom a, footer.bottom span { font-size: 14px; color: var(--muted); }

@media (max-width: 520px) {
  h1 { font-size: 26px; }
  main { padding: 40px 0 64px; }
}
