/* Gemeinsame Styles für Startseite, Datenschutz und Impressum */
:root {
  --bg: #DDEFED;
  --surface: #FFFFFF;
  --line: #C9E4E1;
  --ink: #103A3F;
  --muted: #4F7278;
  --accent: #0C778A;
  --accent-deep: #085563;
  --chip-bg: #DCF0EE;
  --chip-ink: #0C778A;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0B2224; --surface: #123236; --line: #1F4A4E; --ink: #EAF6F5;
    --muted: #9FC4C0; --accent: #4FC3D0; --accent-deep: #8AD5D0;
    --chip-bg: #16403F; --chip-ink: #8AD5D0;
  }
}
:root[data-theme="light"] {
  --bg: #DDEFED; --surface: #FFFFFF; --line: #C9E4E1; --ink: #103A3F;
  --muted: #4F7278; --accent: #0C778A; --accent-deep: #085563;
  --chip-bg: #DCF0EE; --chip-ink: #0C778A;
}
:root[data-theme="dark"] {
  --bg: #0B2224; --surface: #123236; --line: #1F4A4E; --ink: #EAF6F5;
  --muted: #9FC4C0; --accent: #4FC3D0; --accent-deep: #8AD5D0;
  --chip-bg: #16403F; --chip-ink: #8AD5D0;
}

* { box-sizing: border-box; margin: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
.wrap { max-width: 760px; margin: 0 auto; padding: 0 24px 64px; }

header.site {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; margin-bottom: 32px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand img { width: 36px; height: 36px; object-fit: contain; }
.brand strong { font-size: 18px; font-weight: 700; }
header.site a.backlink { font-size: 14px; color: var(--muted); text-decoration: none; }
header.site a.backlink:hover { color: var(--accent); }

h1 { font-size: 30px; font-weight: 800; letter-spacing: -0.015em; margin-bottom: 24px; }
.content h2 { font-size: 20px; font-weight: 700; margin: 28px 0 8px; }
.content p { margin: 10px 0; max-width: 68ch; }
.content ul { margin: 10px 0 10px 22px; }
.content li { margin: 4px 0; }
.meta { color: var(--muted); font-size: 14px; margin-top: 32px; }

a { color: var(--accent); }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* Startseite */
main.landing {
  min-height: calc(100vh - 100px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 12px;
}
main.landing img.logo { width: 96px; height: 96px; object-fit: contain; margin-bottom: 8px; }
main.landing h1 { margin-bottom: 4px; }
main.landing p.sub { color: var(--muted); max-width: 52ch; }
.stores { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 20px; }
.store {
  display: inline-flex; flex-direction: column; align-items: center;
  background: var(--chip-bg); color: var(--chip-ink);
  border-radius: 14px; padding: 10px 22px; text-decoration: none; line-height: 1.3;
}
.store small { font-size: 11px; opacity: 0.8; }
.store strong { font-size: 16px; font-weight: 700; }

footer.site {
  display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: center;
  padding: 24px 0; font-size: 14px; color: var(--muted);
}
footer.site a { color: var(--muted); text-decoration: none; }
footer.site a:hover { color: var(--accent); }
