/* =============================================================================
   seo.css — Stil der statischen SEO-Inhaltsseiten (Imposterium)
   Erweitert die Optik von public/legal/legal.css (gleiches dunkles Theme,
   gleiche Farbvariablen). Wird unter /seo/seo.css ausgeliefert.
   Mobile-first, lesbare Typografie.
   ========================================================================== */

:root {
  --bg: #1c1414;
  --surface: #261c1a;
  --border: #3a2c29;
  --text: #f3ece9;
  --muted: #b6a8a3;
  --accent: #e0564a;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  padding: 0 20px 80px;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 820px; margin: 0 auto; }

/* --- Kopfzeile mit Marke + Sprachleiste --- */
.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 0 14px;
  border-bottom: 1px solid var(--border);
}
.brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.brand:hover { color: var(--accent); }

/* --- Sprachleiste (Pills) --- */
.langbar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.lang-pill {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
}
.lang-pill:hover { color: var(--text); border-color: var(--accent); }
.lang-pill.active { color: var(--text); border-color: var(--accent); background: rgba(224, 86, 74, 0.14); }

/* --- Hauptinhalt --- */
.content { padding-top: 8px; }

h1 {
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 24px 0 10px;
}
h2 {
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  margin: 36px 0 8px;
}
h3 {
  font-size: 1.08rem;
  margin: 22px 0 4px;
  color: var(--text);
}
p, li { color: var(--text); }
a { color: var(--accent); }

.intro {
  font-size: 1.12rem;
  color: var(--text);
  margin: 4px 0 8px;
}
.muted { color: var(--muted); font-size: 0.9rem; }

.sec p { margin: 6px 0 0; }

/* --- CTA-Button --- */
.cta-row { margin: 26px 0; }
.cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 14px 28px;
  border-radius: 14px;
  letter-spacing: -0.01em;
  box-shadow: 0 6px 20px rgba(224, 86, 74, 0.28);
}
.cta:hover { filter: brightness(1.07); }
.cta:active { transform: translateY(1px); }

/* --- HowTo-Schritte --- */
.howto-steps {
  margin: 16px 0;
  padding-left: 1.3em;
}
.howto-steps li {
  margin: 0 0 14px;
  padding-left: 6px;
}
.howto-steps li strong { color: var(--text); }

/* --- FAQ --- */
.faq-list { margin: 16px 0; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  padding: 14px 18px;
  margin: 12px 0;
}
.faq-item h3 { margin: 0 0 6px; }
.faq-item p { margin: 0; color: var(--text); }

/* --- Interne Links --- */
.internal-links {
  margin: 40px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.internal-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.internal-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}
.internal-links a:hover { color: var(--accent); }

/* --- Footer --- */
.site-footer {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.86rem;
}
.site-footer p { margin: 6px 0; }
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--accent); }
.footer-langs a { font-weight: 700; }

/* --- Responsiv --- */
@media (min-width: 600px) {
  h1 { font-size: 2.4rem; }
}
