/* GRUNDLAGE — gilt für jede Seite.
   Alles Seitenspezifische kommt darunter, nicht hier hinein. */

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;

  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.5;

  color: #e8e8e8;
  background: #111;
}

img, video { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

/* ── Kopf ──────────────────────────────────────────────────────────────── */

.kopf {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 24px;
  border-bottom: 1px solid #262626;
}

.marke {
  font-weight: 600;
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 16px;
  margin-left: auto;
}

.nav a {
  text-decoration: none;
  color: #a0a0a0;
}

.nav a:hover { color: #e8e8e8; }

/* ── Inhalt ────────────────────────────────────────────────────────────── */

.inhalt {
  /* Nimmt den freien Platz, damit der Fuß auch bei kurzen Seiten unten
     steht und nicht mitten im Bild hängt. */
  flex: 1;

  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px;
}

/* ── Fuß ───────────────────────────────────────────────────────────────── */

.fuss {
  padding: 24px;
  border-top: 1px solid #262626;
  color: #6e6e6e;
  font-size: 14px;
}
