/* Farben hier anpassen, z. B. an die Vereinsfarben */
:root {
  --bg: #FFFFFF;           /* Seitenhintergrund (weiß, passend zum Logo-Hintergrund) */
  --text: #353638;         /* Überschrift, Dunkelgrau aus dem Logo */
  --muted: #5A5B5E;        /* Fließtext */
  --accent: #C6282D;       /* Footer-Hintergrund, BKC-Rot */
  --accent-light: #F7DC1D; /* Streifen über dem Footer, BKC-Gelb */
  --footer-text: #FFFFFF;  /* Footer-Text */
}

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

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--text);
  /* Systemschriften: keine externen Fonts, keine Datenübertragung an Dritte */
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Hauptbereich: Logo und Umbau-Info mittig */
.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(2.5rem, 8vh, 6rem) 1.5rem;
}

.logo {
  display: block;
  width: min(220px, 60vw);
  height: auto;
  margin-bottom: 2.5rem;
}

.content h1 {
  margin: 0 0 1rem;
  max-width: 20ch;
  font-size: clamp(1.6rem, 4.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.content p {
  margin: 0;
  max-width: 34rem;
  font-size: 1.0625rem;
  color: var(--muted);
  text-wrap: pretty;
}

/* Footer, farblich abgesetzt, mit schmalem Baustellen-Streifen */
.footer {
  background: var(--accent);
  color: var(--footer-text);
}

.footer::before {
  content: "";
  display: block;
  height: 8px;
  background: repeating-linear-gradient(
    -45deg,
    var(--accent) 0 12px,
    var(--accent-light) 12px 24px
  );
}

.footer-inner {
  max-width: 40rem;
  margin: 0 auto;
  padding: 2rem 1.5rem 2.5rem;
  font-size: 0.875rem;
}

.footer h2 {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
}

.footer p {
  margin: 0 0 0.75rem;
}

.footer p:last-child {
  margin-bottom: 0;
}

.footer a {
  color: inherit;
  text-decoration-color: var(--accent-light);
  text-underline-offset: 3px;
}

a:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 3px;
  border-radius: 2px;
}
