:root {
  /* Vereinsfarben: Blau / Weiß */
  --bg: #07162d;        /* sehr dunkles Blau */
  --card: #0b2550;      /* blaues Panel */
  --text: #ffffff;      /* Weiß */
  --muted: #cfe0ff;     /* helles Blau-Weiß */
  --accent: #4da3ff;    /* Akzent-Blau */
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  max-width: 1050px;
  margin: 0 auto;
  padding: 16px;
}

header, footer {
  border-bottom: 1px solid rgba(255,255,255,.08);
}

footer {
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 0;
  margin-top: 24px;
}

nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Menü-Links: besser klickbar (Touch/Handy) */
.links a {
  padding: 6px 10px;
  border-radius: 10px;
}

.links a:hover {
  text-decoration: none;
  background: rgba(255,255,255,.06);
}

/* Aktiver Menüpunkt (wird per JS gesetzt) */
.links a.active {
  background: rgba(77,163,255,.18);
  border: 1px solid rgba(77,163,255,.35);
}

.card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 18px;
}

.small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

/* Bilder immer responsiv */
img { max-width: 100%; height: auto; display: block; }

/* Mobile Anpassungen */
@media (max-width: 600px) {
  .wrap { padding: 12px; }
  .card { padding: 14px; border-radius: 14px; }

  nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .links {
    width: 100%;
    gap: 10px;
  }

  h1 { font-size: 1.6rem; }
}
