/* Stylesheet für Impressum & Datenschutz — dunkler Stil wie die Hauptseite */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #05060d;
  --surface: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #e8ebf7;
  --text-soft: #c2c7da;
  --muted: #828aa6;
  --accent: #818cf8;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

main {
  max-width: 72ch;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

header.top {
  padding: 28px 24px 0;
  max-width: 72ch;
  margin: 0 auto;
}

a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--text);
}

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

.back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--muted);
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
}

.back:hover {
  color: var(--text);
  border-color: var(--border-strong);
}

h1 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 40px 0 8px;
  text-wrap: balance;
}

.stand {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 40px;
}

h2 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 40px 0 10px;
}

p,
ul {
  color: var(--text-soft);
  margin-bottom: 14px;
}

ul {
  padding-left: 1.3em;
}

li {
  margin-bottom: 6px;
}

address {
  font-style: normal;
  color: var(--text-soft);
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 14px;
}

footer {
  max-width: 72ch;
  margin: 0 auto;
  padding: 0 24px 40px;
  color: var(--muted);
  font-size: 0.85rem;
}

footer nav {
  display: flex;
  gap: 18px;
}
