:root {
  --red: #d71920;
  --red-light: #ff3434;
  --red-dark: #8c0f14;

  --yellow: #f3cf58;

  --bg-main: #7a0d12;
  --bg-soft: #8c0f14;
  --bg-card: rgba(255, 255, 255, 0.08);

  --border: rgba(255, 255, 255, 0.18);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.78);
  --white: #ffffff;
  --jfv: #ffe596;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,80,80,0.25), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255,80,80,0.15), transparent 40%),
    linear-gradient(180deg, #8c0f14, #5a080d);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;

  opacity: 0.12; /* wichtig: sehr subtil! */

  background-image:
    linear-gradient(30deg, rgba(0,0,0,0.25) 12%, transparent 12.5%, transparent 87%, rgba(0,0,0,0.25) 87.5%, rgba(0,0,0,0.25)),
    linear-gradient(150deg, rgba(0,0,0,0.25) 12%, transparent 12.5%, transparent 87%, rgba(0,0,0,0.25) 87.5%, rgba(0,0,0,0.25)),
    linear-gradient(30deg, rgba(0,0,0,0.25) 12%, transparent 12.5%, transparent 87%, rgba(0,0,0,0.25) 87.5%, rgba(0,0,0,0.25)),
    linear-gradient(150deg, rgba(0,0,0,0.25) 12%, transparent 12.5%, transparent 87%, rgba(0,0,0,0.25) 87.5%, rgba(0,0,0,0.25));

  background-size: 100px 173px;
  background-position: 0 0, 0 0, 50px 86px, 50px 86px;
}

/* Links */
a {
  color: var(--white);
  text-decoration: none;
}

a:hover {
  color: var(--yellow);
}

/* Header / Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(122, 13, 18, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--white);
}

.brand img {
  width: 46px;
  height: 46px;
  max-width: 46px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.35));
}

.brand span {
  font-size: 1rem;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 800;
}

/* Buttons */
.button,
button {
  display: inline-block;
  padding: 13px 18px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--red-light), var(--red-dark));
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
  font: inherit;
  text-align: center;
  transition: 0.2s ease;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
}

.button:hover,
button:hover {
  color: var(--white);
  background: linear-gradient(180deg, #ff4a4a, #a70f18);
  transform: translateY(-1px);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.1);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

/* Sections */
.section {
  position: relative;
  max-width: 1120px;
  margin: 24px auto;
  padding: 34px 24px;
  background:
    linear-gradient(180deg, rgba(180, 25, 31, 0.78), rgba(122, 13, 18, 0.86));
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.11;
  background-image:
    linear-gradient(30deg, rgba(255,255,255,.22) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.22) 87.5%, rgba(255,255,255,.22)),
    linear-gradient(150deg, rgba(255,255,255,.22) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.22) 87.5%, rgba(255,255,255,.22));
  background-size: 72px 124px;
}

.section > * {
  position: relative;
  z-index: 1;
}

.section:first-of-type {
  margin-top: 28px;
}

.section-title {
  margin-bottom: 22px;
}

.section-title p,
.text-block {
  color: var(--muted);
  max-width: 780px;
}

h1 {
  color: var(--jfv);
  line-height: 1.15;
}

h2,
h3 {
  color: var(--white);
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.45rem, 4vw, 2.2rem);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

h2::after {
  content: "";
  display: block;
  width: 74px;
  height: 3px;
  margin-top: 12px;
  border-radius: 999px;
  background: var(--yellow);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: center;
  min-height: 520px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.16), transparent 24%),
    linear-gradient(180deg, rgba(185, 26, 32, 0.94), rgba(122, 13, 18, 0.97));
}

.hero::before {
  opacity: 0.18;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--yellow);
  font-weight: 900;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.dot {
  width: 10px;
  height: 10px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(243, 207, 88, 0.8);
}

.hero h1 {
  font-size: clamp(2.8rem, 9vw, 6rem);
  font-weight: 1000;
  letter-spacing: -2px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.lead {
  color: rgba(255,255,255,0.86);
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-card {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(7px);
}

.logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 26px;
}

.logo-wrap img {
  width: 150px;
  max-width: 70%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(0, 0, 0, 0.38));
}

.stats {
  display: grid;
  gap: 12px;
}

.stat {
  background: rgba(255, 255, 255, 0.09);
  border: 2px solid rgba(255,255,255,0.62);
  border-radius: 999px;
  padding: 13px 16px;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 1.25rem;
}

.stat span {
  color: rgba(255,255,255,0.82);
}

/* Cards / Grids */
.card {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
}

.card p {
  color: rgba(255,255,255,0.78);
  margin-top: 8px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.team-card {
  border: 2px solid rgba(255,255,255,0.22);
  border-top: 5px solid var(--yellow);
}

.badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.13);
  border: 2px solid rgba(255,255,255,0.45);
  color: var(--white);
  font-weight: 1000;
}

/* Vorstand */
.board {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
}

.people {
  display: grid;
  gap: 10px;
}

.person {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.person:last-child {
  border-bottom: none;
}

.person span {
  color: var(--muted);
}

.person strong {
  text-align: right;
}

/* Sponsoren */
.sponsor-band {
  background:
    radial-gradient(circle at top left, rgba(243, 207, 88, 0.16), transparent 34%),
    rgba(255,255,255,0.09);
}

.sponsor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.sponsor-pill {
  padding: 9px 13px;
  border-radius: 999px;
  color: rgba(255,255,255,0.84);
  background: rgba(255, 255, 255, 0.09);
  border: 2px solid rgba(255,255,255,0.35);
  font-weight: 800;
}

/* Kontakt */
.contact {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 18px;
}

.ig-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 11px 18px;
  background: linear-gradient(180deg, var(--red-light), var(--red-dark));
  color: var(--white);
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,0.24);
}

.ig-btn:hover {
  color: var(--white);
  background: linear-gradient(180deg, #ff4a4a, #a70f18);
}

/* Formular */
form {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--white);
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  padding: 13px 14px;
  border-radius: 14px;
  border: 2px solid rgba(255,255,255,0.22);
  background: rgba(80, 8, 12, 0.55);
  color: var(--white);
  font: inherit;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255,255,255,0.55);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(243, 207, 88, 0.2);
}

textarea {
  resize: vertical;
  min-height: 130px;
}

.check {
  display: flex;
  grid-template-columns: none;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
  font-size: 0.92rem;
}

.check input {
  width: auto;
  margin-top: 5px;
}

.cf-turnstile {
  margin: 4px 0;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.submit {
  width: 100%;
}

/* Footer */
.footer {
  max-width: 1120px;
  margin: 30px auto 0;
  padding: 28px 22px 42px;
  color: rgba(255,255,255,0.76);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer a {
  color: var(--white);
  font-weight: 900;
}

.footer a:hover {
  color: var(--yellow);
}

/* Go Top */
#goTopBtn {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 999;

  width: 44px;
  height: 44px;
  padding: 0;

  display: none;
  place-items: center;

  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);

  background: linear-gradient(180deg, var(--red-light), var(--red-dark));
  color: white;

  font-size: 24px;
  font-weight: 900;
  line-height: 1;

  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  transition: all 0.2s ease;
}

#goTopBtn:hover {
  transform: translateY(-2px) scale(1.05);
  background: linear-gradient(180deg, #ff4a4a, #a70f18);
}

/* Unterseiten: Impressum / Datenschutz */
.page-header {
  max-width: 920px;
  margin: 0 auto;
  padding: 32px 22px 8px;
}

.back-link {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--muted);
}

.back-link:hover {
  color: var(--yellow);
}

.legal-page {
  max-width: 920px;
}

.legal-page h1 {
  font-size: clamp(2rem, 7vw, 3.4rem);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.legal-page h2 {
  margin-top: 28px;
}

.legal-page p {
  color: var(--muted);
  margin-bottom: 14px;
}

/* Mobile */
@media (max-width: 860px) {
  .nav {
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .hero,
  .board,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .person {
    flex-direction: column;
    gap: 3px;
  }

  .person strong {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .nav {
    padding: 10px 14px;
  }

  .brand img {
    width: 42px;
    height: 42px;
    max-width: 42px;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .nav-links a {
    font-size: 0.88rem;
  }

  .section {
    margin: 16px 12px;
    padding: 24px 18px;
    border-radius: 20px;
  }

  .hero h1 {
    letter-spacing: -1px;
  }

  .hero-card {
    padding: 22px;
  }

  .logo-wrap img {
    width: 125px;
  }

  #goTopBtn {
    width: 42px;
    height: 42px;
    right: 12px;
    bottom: 12px;
    font-size: 22px;
  }
}
/* Wrapper */
.legal-wrapper {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}

/* Card */
.legal-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 28px;

  backdrop-filter: blur(6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

/* Headline */
.legal-card h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* Absätze */
.legal-card p {
  margin-bottom: 14px;
  color: rgba(255,255,255,0.85);
}

/* Labels fett */
.legal-card strong {
  color: white;
}

/* Zurück-Link */
.back-link {
  display: inline-block;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.7);
}

.back-link:hover {
  color: white;
}

/* NEU */

.teams-large {
  display: grid;
  gap: 26px;
}

.team-overlay-card {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border-radius: 26px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 14px 36px rgba(0,0,0,0.32);
}

.team-overlay-card picture,
.team-overlay-card img {
  display: block;
  width: 100%;
  height: 100%;
}

.team-overlay-card img {
  min-height: 440px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.team-overlay-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.05) 20%, rgba(0,0,0,0.76) 100%),
    linear-gradient(90deg, rgba(122,13,18,0.55), rgba(122,13,18,0.05));
  z-index: 1;
  transition: background 0.3s ease;
}

.team-overlay-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04);
}

.team-overlay-card:hover::after {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.02) 10%, rgba(0,0,0,0.82) 100%),
    linear-gradient(90deg, rgba(215,25,32,0.62), rgba(122,13,18,0.05));
}

.team-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  color: white;
}

.team-overlay h3 {
  margin-top: 10px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: -1px;
}

.team-overlay p {
  margin-top: 7px;
  color: rgba(255,255,255,0.9);
  font-weight: 650;
}

.team-overlay strong {
  color: white;
}

.team-overlay .league {
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.placeholder-overlay {
  text-align: center;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}

.team-placeholder {
  min-height: 300px;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.12), transparent 35%),
    linear-gradient(180deg, rgba(180,25,31,0.78), rgba(122,13,18,0.95));
}

@media (max-width: 640px) {
  .team-overlay-card,
  .team-overlay-card img {
    min-height: 360px;
  }

  .team-overlay {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .team-overlay h3 {
    font-size: 2rem;
  }

  .team-overlay p {
    font-size: 0.95rem;
  }
}