/* Optik gespiegelt von tourboty.app (Roboto, weisse Karten, Pill-Navigation).
   Schrift liegt lokal — kein Laufzeitabruf bei Google. */

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400 700;      /* Variable Font: ein File deckt alle Schnitte ab */
  font-display: swap;
  src: url('/assets/fonts/Roboto.woff2') format('woff2');
}

:root {
  --fg: #18181b;
  --fg-muted: #52525b;
  --fg-heading: #48474d;
  --line: #e5e7eb;
  --bg: #ffffff;
  --bg-subtle: #fafafa;
  --accent: #645b71;          /* aktiver Navigationspunkt */
  --radius-card: 12px;
  --radius-pill: 8px;
  --wrap: 680px;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Roboto', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
  font-size: 15px;
}

/* ---------- Kopfzeile ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 65px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--fg);
  text-decoration: none;
  white-space: nowrap;
}

.brand img { width: 32px; height: 32px; border-radius: 6px; display: block; }

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.875rem;
  white-space: nowrap;
}

.site-nav a:hover { background: var(--bg-subtle); color: var(--fg); }

.site-nav a[aria-current='page'] {
  background: var(--accent);
  color: #fff;
}

/* ---------- Inhalt ---------- */

main {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

.page-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.page-lead {
  margin-top: 0.75rem;
  color: var(--fg-muted);
}

.card {
  margin-top: 1.75rem;
  padding: 1.5rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}

.card-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg-heading);
  margin-bottom: 1.25rem;
}

.card-title svg { width: 18px; height: 18px; flex: none; stroke: var(--accent); }

.card h3 {
  font-size: 1rem;
  font-weight: 500;
  margin: 1.5rem 0 0.5rem;
}

.card h3:first-of-type { margin-top: 0; }

.card p { color: var(--fg-muted); margin-bottom: 0.75rem; }
.card p:last-child { margin-bottom: 0; }

.card ul { list-style: disc; padding-left: 1.25rem; color: var(--fg-muted); }
.card li { margin-bottom: 0.4rem; }
.card li:last-child { margin-bottom: 0; }

/* Adress-/Kontaktbloecke: Zeilenumbrueche wie im Original beibehalten */
.stack p { margin-bottom: 0.25rem; }

.card a { color: var(--accent); }

.meta {
  margin-top: 2rem;
  font-size: 0.8125rem;
  color: var(--fg-muted);
}

/* ---------- Fusszeile ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--fg-muted);
}

.site-footer a { color: var(--fg-muted); }

/* ---------- Leerer Platzhalter ---------- */

.placeholder {
  margin-top: 2rem;
  padding: 3rem 1.5rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius-card);
  text-align: center;
  color: var(--fg-muted);
}

@media (max-width: 640px) {
  .site-header { height: auto; padding: 0.75rem 1rem; flex-wrap: wrap; }
  .site-nav { margin-left: 0; width: 100%; }
  main { padding: 2rem 1rem 3rem; }
  .page-title { font-size: 1.75rem; }
}

.mt { margin-top: 0.75rem; }
