/* Styling shared by the two legal pages (/impressum/, /datenschutz/).
   These are plain static HTML rather than part of the Vue app: they must stay
   readable and crawlable even if the app's JavaScript never runs, and they are
   legally required to be reachable in two clicks from anywhere on the site. */

:root {
  --bg: #FFF6F9;
  --surface: #FFFFFF;
  --primary: #82197E;
  --ink: #2A1228;
  --muted: #6E5B69;
  --line: #F1E2EC;
  --fd: 'Bricolage Grotesque', Georgia, serif;
  --fb: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.bar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  max-width: 820px; margin: 0 auto; padding: 20px 24px;
}
.back { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); font-family: var(--fd); font-weight: 800; font-size: 17px; }
.logo { height: 38px; width: auto; border-radius: 10px; display: block; }
.home { text-decoration: none; color: var(--primary); font-weight: 700; font-size: 15px; }
.home:hover { text-decoration: underline; }

main {
  max-width: 820px; margin: 0 auto 64px; padding: 34px clamp(22px, 5vw, 44px) 46px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 26px;
  box-shadow: 0 30px 70px -40px rgba(42, 18, 40, .45);
}

h1 { font-family: var(--fd); font-weight: 800; font-size: clamp(30px, 5vw, 42px); line-height: 1.1; letter-spacing: -.02em; margin: 0 0 14px; }
h2 { font-family: var(--fd); font-weight: 700; font-size: clamp(19px, 2.6vw, 23px); line-height: 1.25; margin: 40px 0 10px; color: var(--primary); }
p { margin: 0 0 14px; }
.lead { font-size: 17px; color: var(--muted); }
.updated { margin-top: 40px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 14px; color: var(--muted); }

a { color: var(--primary); }
a:hover { text-decoration: none; }

/* label/value pairs for the company facts — two columns on wide screens,
   stacked on narrow ones so nothing is squeezed */
.facts { display: grid; grid-template-columns: minmax(150px, 210px) 1fr; gap: 10px 22px; margin: 0 0 14px; }
.facts dt { font-weight: 700; color: var(--ink); }
.facts dd { margin: 0; color: var(--muted); }

.linklist { margin: 0 0 14px; padding-left: 20px; color: var(--muted); }
.linklist li { margin-bottom: 6px; }

.ftr { display: flex; justify-content: center; gap: 26px; flex-wrap: wrap; padding: 0 24px 48px; font-size: 14px; }
.ftr a { color: var(--muted); text-decoration: none; }
.ftr a:hover { color: var(--primary); text-decoration: underline; }

@media (max-width: 560px) {
  .facts { grid-template-columns: 1fr; gap: 2px 0; }
  .facts dd { margin-bottom: 10px; }
  main { border-radius: 20px; }
}
