/* Gemeinsame Gestaltung für Impressum und Datenschutz.
   Tokens sind identisch mit index.html. */

@font-face {
  font-family: 'Manrope';
  src: url('fonts/manrope-latin.woff2') format('woff2');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Epilogue';
  src: url('fonts/epilogue-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --creme:        #f4fbf5;
  --salbei-hell:  #eef5ef;
  --karten-rand:  #dde4de;
  --footer-bg:    #e3eae4;
  --footer-linie: #dcc1b4;
  --text:         #161d19;
  --text-sek:     #554339;
  --terrakotta:   #9b4504;
  --salbei:       #47664b;
  --breite:       1200px;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--creme);
  color: var(--text);
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--salbei); transition: color .2s ease; }
a:hover { color: var(--terrakotta); }
a:focus-visible {
  outline: 3px solid var(--terrakotta);
  outline-offset: 3px;
  border-radius: 4px;
}

.inhalt { max-width: var(--breite); margin: 0 auto; }

/* Kopf mit Logo, führt zurück zur Startseite */
.kopf { padding: 40px 24px 0 24px; }
.kopf a { display: inline-block; }
.kopf img { height: 56px; width: auto; display: block; }

/* Textspalte */
.rechtstext {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 96px 24px;
}
.rechtstext h1 {
  font-family: 'Epilogue', Georgia, serif;
  font-weight: 300;
  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1.17;
  letter-spacing: -0.02em;
  margin: 0 0 40px 0;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.rechtstext h2 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 40px 0 12px 0;
}
.rechtstext h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 24px 0 8px 0;
}
.rechtstext p,
.rechtstext li {
  font-size: 17px;
  line-height: 28px;
  color: var(--text-sek);
  overflow-wrap: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.rechtstext a { overflow-wrap: anywhere; }
.rechtstext p { margin: 0 0 16px 0; }
.rechtstext ul { margin: 0 0 16px 0; padding-left: 20px; }
.rechtstext li { margin-bottom: 6px; }

.anschrift {
  font-style: normal;
  background: var(--salbei-hell);
  border: 1px solid var(--karten-rand);
  border-radius: 16px;
  padding: 24px 28px;
  font-size: 17px;
  line-height: 28px;
  color: var(--text-sek);
  margin-bottom: 16px;
}

.hinweis {
  font-size: 15px;
  line-height: 24px;
  color: var(--text-sek);
  opacity: 0.8;
  border-top: 1px solid var(--footer-linie);
  padding-top: 20px;
  margin-top: 48px;
}

/* Footer wie auf der Startseite */
.fuss { background: var(--footer-bg); padding: 40px 24px 32px 24px; }
.fuss__reihe {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--footer-linie);
  padding-bottom: 24px;
  margin-bottom: 20px;
}
.fuss__logo { height: 28px; width: auto; }
.fuss__links { display: flex; gap: 24px; }
.fuss__links a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-sek);
  text-decoration: none;
}
.fuss__links a:hover { color: var(--terrakotta); }
.fuss__copyright {
  text-align: center;
  font-size: 16px;
  color: var(--text-sek);
  opacity: 0.7;
  margin: 0;
}

@media (max-width: 620px) {
  .kopf { padding: 28px 20px 0 20px; }
  .kopf img { height: 44px; }
  .rechtstext { padding: 32px 20px 64px 20px; }
  .fuss { padding: 32px 20px 24px 20px; }
  .fuss__reihe { justify-content: center; text-align: center; }
}
