/* Shared styling for the legal pages (Impressum, Datenschutz).
   Same tokens as the landing page and the help centre — deliberately its own
   small stylesheet rather than a copy of hilfe.css, because these pages have no
   search, no article layout and no category chrome. */

@font-face { font-family:'Manrope'; src:url('/fonts/manrope-500.woff2') format('woff2'); font-weight:500; font-display:swap; }
@font-face { font-family:'Manrope'; src:url('/fonts/manrope-700.woff2') format('woff2'); font-weight:700; font-display:swap; }
@font-face { font-family:'Manrope'; src:url('/fonts/manrope-800.woff2') format('woff2'); font-weight:800; font-display:swap; }

:root {
  --ink: #16213E;
  --paper: #FDFDFA;
  --paper-2: #EFEEE8;
  --line: #E3E3DC;
  --seal: #E8A13D;
  --petrol: #0F6E6B;
  --grey: #5B6270;
}

* { box-sizing: border-box; margin: 0; }
body {
  font-family: 'Manrope', ui-sans-serif, system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--petrol); }

.wrap { max-width: 760px; margin: 0 auto; padding: 0 20px; }

.nav { border-bottom: 1px solid var(--line); background: #fff; }
.nav .row { display: flex; align-items: center; gap: 16px; padding: 14px 20px; }
.nav .brand { font-weight: 800; font-size: 1.05rem; color: var(--ink); text-decoration: none; }
.nav .brand .dot { color: var(--seal); }
.nav nav { margin-left: auto; display: flex; align-items: center; gap: 16px; font-size: 0.86rem; }
.nav nav a { color: var(--grey); text-decoration: none; }
.nav nav a:hover { color: var(--ink); }
.nav nav a.btn {
  background: var(--ink); color: #fff; font-weight: 700;
  padding: 7px 14px; border-radius: 8px;
}

main { padding: 36px 0 56px; }

h1 { font-size: 1.8rem; font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: 1.05rem; font-weight: 800; margin: 30px 0 8px; }
h3 { font-size: 0.94rem; font-weight: 800; margin: 20px 0 6px; }
p { margin: 10px 0; }
p.lead { color: var(--grey); margin: 10px 0 6px; }

ul, ol { margin: 10px 0 10px 22px; }
li { margin: 5px 0; }

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.86em;
  background: var(--paper-2);
  padding: 1px 5px;
  border-radius: 4px;
}

dl { margin: 12px 0; }
dt { font-weight: 800; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--grey); margin-top: 14px; }
dd { margin: 2px 0 0; }

table { border-collapse: collapse; width: 100%; margin: 14px 0; font-size: 0.9rem; }
th, td { border: 1px solid var(--line); padding: 8px 10px; text-align: left; vertical-align: top; }
th { background: var(--paper-2); font-weight: 800; }
.scroll { overflow-x: auto; }

.todo {
  border-left: 4px solid var(--seal);
  background: rgb(232 161 61 / .08);
  padding: 12px 16px;
  border-radius: 0 10px 10px 0;
  margin: 22px 0;
  font-size: 0.9rem;
}

.note {
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  margin: 18px 0;
  font-size: 0.9rem;
}

footer { border-top: 1px solid var(--line); background: #fff; margin-top: 40px; }
footer .row {
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: space-between;
  padding: 18px 20px; font-size: 0.8rem; color: var(--grey);
}
footer a { color: var(--grey); text-decoration: none; margin-right: 12px; }
footer a:hover { color: var(--ink); }
