/* KREATV · Notseite · Stand 25.08.2026
   Keine externen Ressourcen. Schriften lokal, sonst Systemschrift. */

/* ---------- Schriften (optional) ----------
   Werden die woff2-Dateien in /fonts/ abgelegt, greifen sie automatisch.
   Fehlen sie, fällt die Seite auf eine Systemschrift zurück. */

@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/league-spartan-v15-latin_latin-ext-500.woff2') format('woff2');
}
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('fonts/league-spartan-v15-latin_latin-ext-900.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/open-sans-v44-latin_latin-ext-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/open-sans-v44-latin_latin-ext-600.woff2') format('woff2');
}

/* ---------- Grundlagen ---------- */

:root {
  --magenta: #cf12a6;
  --magenta-dunkel: #a30f83;
  --anthrazit: #1c1c1c;
  --text: #232323;
  --text-leise: #5c5c5c;
  --linie: #e2e2e2;
  --flaeche: #f7f7f7;
  --breite: 46rem;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: #ffffff;
}

h1, h2, h3 {
  font-family: 'League Spartan', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 0.6em;
}

p { margin: 0 0 1.1em; }

a { color: var(--magenta-dunkel); }
a:hover, a:focus { color: var(--magenta); }

:focus-visible {
  outline: 3px solid var(--magenta);
  outline-offset: 3px;
}

/* ---------- Kopf ---------- */

.kopf {
  background: var(--anthrazit);
  padding: 1.75rem 1.5rem 1.5rem;
  text-align: center;
}

.marke { display: inline-block; }

.marke img {
  display: block;
  width: 200px;
  height: auto;
  margin: 0 auto;
}

.claim {
  font-family: 'League Spartan', sans-serif;
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.26em;
  color: var(--magenta);
  margin: 0.7rem 0 0;
}

/* ---------- Held ---------- */

.held {
  background: var(--anthrazit);
  color: #ffffff;
  padding: 2rem 1.5rem 3.5rem;
  text-align: center;
}

.held h1 {
  font-size: clamp(1.9rem, 6vw, 3rem);
  color: #ffffff;
  margin-bottom: 0.7rem;
}

.vorspann {
  color: #b9b9b9;
  font-size: 1.0625rem;
  margin: 0;
}

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

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

.block {
  padding: 2.75rem 0;
  border-bottom: 1px solid var(--linie);
}

.block h2 {
  font-size: 1.5rem;
}

.block.hinweis {
  border-left: 4px solid var(--magenta);
  padding-left: 1.4rem;
  background: var(--flaeche);
  padding-top: 2rem;
  padding-bottom: 1.6rem;
  border-bottom: none;
  margin-bottom: 2.75rem;
}

.leistungen {
  list-style: none;
  margin: 0;
  padding: 0;
}

.leistungen li {
  border-top: 2px solid var(--magenta);
  padding-top: 1rem;
  margin-bottom: 2rem;
}

.leistungen h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.4em;
}

.leistungen p {
  color: var(--text-leise);
  margin: 0;
}

/* ---------- Fuß ---------- */

.fuss {
  background: var(--anthrazit);
  color: #d6d6d6;
  padding: 2.75rem 1.5rem;
  text-align: center;
}

.fuss a { color: #ffffff; }
.fuss a:hover, .fuss a:focus { color: var(--magenta); }

.kontakt {
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1.6rem;
}

.kontakt strong { color: #ffffff; }

.rechtliches {
  margin-bottom: 1.4rem;
}

.rechtliches a {
  display: inline-block;
  margin: 0 0.7rem;
  font-size: 0.9375rem;
}

.klein {
  font-size: 0.8125rem;
  color: #8e8e8e;
  margin: 0;
}

/* ---------- Rechtsseiten ---------- */

.rechtstext h2 {
  font-size: 1.25rem;
  margin-top: 2.2rem;
}

.rechtstext h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-top: 1.6rem;
}

.rechtstext ul {
  margin: 0 0 1.1em;
  padding-left: 1.3em;
}

.rechtstext li { margin-bottom: 0.4em; }

.zurueck {
  display: inline-block;
  margin: 2rem 0 3rem;
  font-size: 0.9375rem;
}

@media (min-width: 40rem) {
  .leistungen {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
  .leistungen li { margin-bottom: 0; }
}
