/* Eine Datei, lokal ausgeliefert. Bewusst keine Web-Fonts von Google und
   nichts anderes von fremden Servern: ein eingebetteter Font laedt die
   IP-Adresse der Besucherin zu einem Dritten und macht damit ausgerechnet
   die Datenschutzseite zum Datenschutzproblem (LG Muenchen I, 20.01.2022
   - 3 O 17493/20). Deshalb nur Systemschriften. */

:root {
  --grund: #fdfdfb;
  --text: #22201d;
  --leise: #6b6660;
  --linie: #e4e0d8;
  --akzent: #7a5c3e;
}

@media (prefers-color-scheme: dark) {
  :root {
    --grund: #1a1917;
    --text: #e8e5e0;
    --leise: #9a948c;
    --linie: #332f2b;
    --akzent: #c9a87c;
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 2.5rem 1.25rem 5rem;
  background: var(--grund);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-text-size-adjust: 100%;
}

main { max-width: 44rem; margin: 0 auto; }

nav {
  max-width: 44rem;
  margin: 0 auto 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--linie);
  font-size: 0.9375rem;
}

nav a {
  color: var(--leise);
  text-decoration: none;
  margin-right: 1.25rem;
}

nav a:hover, nav a:focus { color: var(--akzent); text-decoration: underline; }
nav a[aria-current="page"] { color: var(--text); font-weight: 600; }

h1 {
  font-size: 1.75rem;
  line-height: 1.25;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}

.untertitel {
  color: var(--leise);
  font-size: 0.9375rem;
  margin: 0 0 2.5rem;
}

h2 {
  font-size: 1.1875rem;
  margin: 2.75rem 0 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--linie);
  letter-spacing: -0.005em;
}

h3 { font-size: 1rem; margin: 1.75rem 0 0.4rem; }

p { margin: 0 0 1rem; }
ul { margin: 0 0 1rem; padding-left: 1.25rem; }
li { margin-bottom: 0.3rem; }

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

.anschrift {
  margin: 0 0 1.5rem;
  line-height: 1.75;
}

.hinweis {
  border-left: 3px solid var(--akzent);
  padding: 0.75rem 0 0.75rem 1rem;
  margin: 1.5rem 0;
  color: var(--text);
}

footer {
  max-width: 44rem;
  margin: 4rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--linie);
  color: var(--leise);
  font-size: 0.875rem;
}

@media (max-width: 30rem) {
  body { padding-top: 1.75rem; font-size: 1rem; }
  h1 { font-size: 1.5rem; }
}
