@import url("../fonts/fonts.css");

/* ==========================================================================
   SG Rotbachtal-Strempt e.V. — Design-System
   CI aus dem Vereinswappen abgeleitet: Rot / Schwarz / Weiß.
   (Wappen-Reinrot #F80000 nur fürs Wappen; Flächen-Rot leicht vertieft.)
   ========================================================================== */

:root {
  /* Marke */
  --rot:        #E2080C;   /* Wappen-Rot (exakt aus dem Vereinswappen) — Akzent, Buttons, Linien */
  --rot-tief:   #B00510;   /* Hover / Tiefe */
  --rot-blut:   #7A0A0F;   /* Sehr dunkles Rot für Verläufe auf Schwarz */

  /* Neutral (kühl, KEIN Creme/Beige) */
  --tinte:      #14100F;   /* Text auf Hell */
  --nacht:      #141210;   /* Dunkle Sektionen */
  --nacht-2:    #1D1A18;   /* Karten auf Dunkel */
  --papier:     #F4F4F5;   /* Grundfläche hell */
  --papier-2:   #FFFFFF;   /* Karten hell */
  --nebel:      #E7E7E9;   /* dezente Fläche */
  --linie:      #DCDCDF;

  --grau-txt:   #55524F;   /* Sekundärtext auf Hell */
  --grau-inv:   #B9B4B0;   /* Sekundärtext auf Dunkel */

  /* Maße */
  --wrap: 1200px;
  --gut: clamp(1.1rem, 4vw, 2rem);
  --radius: 14px;
  --radius-s: 9px;
  --header-h: 76px;

  /* Motion (eigene Kurven — motion-feinschliff) */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-io:  cubic-bezier(0.77, 0, 0.175, 1);

  /* Schatten */
  --sh-1: 0 1px 2px rgba(20,16,15,.06), 0 2px 8px rgba(20,16,15,.06);
  --sh-2: 0 10px 30px rgba(20,16,15,.12);
  --sh-red: 0 8px 24px rgba(227,6,19,.28);

  /* z-index-Skala */
  --z-header: 100;
  --z-drawer: 200;
  --z-top: 300;
}

/* ----- Reset / Basis ----- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--tinte);
  background: var(--papier);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, .display {
  font-family: "Oswald", "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: .005em;
  text-transform: uppercase;
  text-wrap: balance;
  margin: 0;
}
h1 { font-size: clamp(2.5rem, 7vw, 5rem); }
h2 { font-size: clamp(1.9rem, 4.4vw, 3.1rem); }
h3 { font-size: clamp(1.25rem, 2.3vw, 1.6rem); }
p  { text-wrap: pretty; }

:focus-visible {
  outline: 3px solid var(--rot);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ----- Layout-Helfer ----- */
.wrap { width: min(100% - 2*var(--gut), var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2*var(--gut), 820px); margin-inline: auto; }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 3.75rem); }
.section--dark { background: var(--nacht); color: #F1EEEC; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--red { background: var(--rot); color: #fff; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.28rem); color: var(--grau-txt); max-width: 62ch; }
.section--dark .lead { color: var(--grau-inv); }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* Kickoff-Marke vor Section-Titeln (kein KI-Eyebrow-Reflex — nur als bewusster Marker) */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: "Oswald", sans-serif; font-weight: 600;
  text-transform: uppercase; letter-spacing: .16em;
  font-size: .82rem; color: var(--rot);
  margin: 0 0 .9rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 3px; background: var(--rot); display: inline-block;
  transform: skewX(-20deg);
}
.section--dark .eyebrow { color: #fff; }
.section--dark .eyebrow::before { background: var(--rot); }

.section-head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head p { margin-top: .8rem; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: "Oswald", sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: .05em; font-size: 1rem;
  padding: .85rem 1.6rem; border: 2px solid transparent; border-radius: 999px;
  transition: transform .16s var(--ease-out), background-color .2s var(--ease-out),
              color .2s var(--ease-out), box-shadow .2s var(--ease-out), border-color .2s var(--ease-out);
  will-change: transform;
}
.btn:active { transform: scale(.97); }
.btn--primary { background: var(--rot); color: #fff; box-shadow: var(--sh-red); }
.btn--primary:hover { background: var(--rot-tief); }
.btn--ghost { border-color: currentColor; color: inherit; }
.btn--ghost:hover { background: rgba(255,255,255,.1); }
.section:not(.section--dark) .btn--ghost { color: var(--tinte); }
.section:not(.section--dark) .btn--ghost:hover { background: var(--tinte); color: #fff; }
.btn--light { background: #fff; color: var(--tinte); }
.btn--light:hover { background: var(--papier); }
.btn .arrow { transition: transform .22s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.topbar {
  background: var(--tinte); color: #d9d5d2; font-size: .84rem;
}
.topbar .wrap { display: flex; gap: 1.4rem; align-items: center; justify-content: flex-end; min-height: 38px; flex-wrap: wrap; }
.topbar a { display: inline-flex; align-items: center; gap: .4rem; color: #d9d5d2; transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar .tb-sep { width: 1px; height: 15px; background: rgba(255,255,255,.18); }
.topbar .tb-social { display: inline-flex; gap: .7rem; }

.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid var(--linie);
  transition: box-shadow .25s var(--ease-out);
}
.site-header.scrolled { box-shadow: var(--sh-1); }
.nav {
  display: flex; align-items: center; gap: 1.2rem;
  min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: .7rem; margin-right: auto; }
.brand img { width: 46px; height: 46px; }
.brand .brand-txt { display: flex; flex-direction: column; line-height: 1; }
.brand .brand-name { font-family: "Oswald", sans-serif; font-weight: 700; text-transform: uppercase; font-size: 1.12rem; letter-spacing: .01em; color: var(--tinte); }
.brand .brand-sub { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--rot); font-weight: 600; margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: .2rem; list-style: none; margin: 0; padding: 0; }
.nav-links > li { position: relative; }
.nav-links > li > a,
.nav-links > li > .nav-top {
  display: inline-flex; align-items: center; gap: .35rem;
  font-family: "Oswald", sans-serif; font-weight: 500; text-transform: uppercase;
  letter-spacing: .04em; font-size: .95rem; color: var(--tinte);
  padding: .55rem .7rem; background: none; border: 0; position: relative;
}
.nav-top .caret { width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .2s var(--ease-out); opacity: .6; }
.nav-links > li > a::after,
.nav-links > li > .nav-top::after {
  content: ""; position: absolute; left: .7rem; right: .7rem; bottom: .34rem; height: 2px;
  background: var(--rot); transform: scaleX(0); transform-origin: left; transition: transform .22s var(--ease-out);
}
.nav-links > li > a:hover::after,
.nav-links > li:hover > .nav-top::after,
.nav-links > li > a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links > li > a[aria-current="page"] { color: var(--rot); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 244px;
  background: #fff; border: 1px solid var(--linie); border-radius: var(--radius-s);
  box-shadow: var(--sh-2); padding: .5rem; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(8px) scale(.98);
  transform-origin: top left;
  transition: opacity .18s var(--ease-out), transform .18s var(--ease-out), visibility .18s;
}
.nav-links > li:hover > .dropdown,
.nav-links > li:focus-within > .dropdown { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.dropdown a {
  display: block; padding: .6rem .8rem; border-radius: 6px; font-size: .95rem;
  color: var(--tinte); transition: background-color .16s, color .16s, padding-left .16s var(--ease-out);
}
.dropdown a:hover { background: var(--papier); color: var(--rot); padding-left: 1.05rem; }
.dropdown a[aria-current="page"] { color: var(--rot); font-weight: 600; }

.nav-cta { display: inline-flex; align-items: center; gap: .8rem; }
.nav-cta .btn { padding: .6rem 1.1rem; font-size: .9rem; }

/* Burger */
.burger { display: none; width: 46px; height: 46px; border: 0; background: none; position: relative; }
.burger span { position: absolute; left: 9px; right: 9px; height: 3px; background: var(--tinte); border-radius: 3px; transition: transform .3s var(--ease-out), opacity .2s; }
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 29px; }
body.nav-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(10,8,7,.5); z-index: var(--z-drawer);
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease-out), visibility .3s;
}
body.nav-open .drawer-backdrop { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(88vw, 380px);
  background: #fff; z-index: calc(var(--z-drawer) + 1); padding: 1.2rem 1.1rem 2rem;
  overflow-y: auto; transform: translateX(100%); transition: transform .34s var(--ease-io);
  box-shadow: -12px 0 40px rgba(0,0,0,.2);
}
body.nav-open .drawer { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.drawer-head .brand-name { font-family: "Oswald"; font-weight: 700; text-transform: uppercase; }
.drawer-close { width: 42px; height: 42px; border: 0; background: var(--papier); border-radius: 9px; font-size: 1.4rem; line-height: 1; color: var(--tinte); }
.drawer nav ul { list-style: none; margin: 0; padding: 0; }
.drawer .m-item > a, .drawer .m-acc-btn {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  font-family: "Oswald", sans-serif; font-weight: 500; text-transform: uppercase; letter-spacing: .03em;
  font-size: 1.05rem; padding: .85rem .4rem; border: 0; background: none; color: var(--tinte);
  border-bottom: 1px solid var(--nebel); text-align: left;
}
.drawer .m-acc-btn .caret { width: 10px; height: 10px; border-right: 2px solid var(--rot); border-bottom: 2px solid var(--rot); transform: rotate(45deg); transition: transform .25s var(--ease-out); }
.drawer .m-acc.open .m-acc-btn .caret { transform: rotate(-135deg); }
.drawer .m-sub { list-style: none; margin: 0; padding: 0; max-height: 0; overflow: hidden; transition: max-height .3s var(--ease-out); }
.drawer .m-acc.open .m-sub { max-height: 520px; }
.drawer .m-sub a { display: block; padding: .6rem .4rem .6rem 1.2rem; font-size: .98rem; color: var(--grau-txt); border-bottom: 1px solid var(--nebel); }
.drawer .m-sub a[aria-current="page"], .drawer .m-item > a[aria-current="page"] { color: var(--rot); }
.drawer-cta { margin-top: 1.3rem; display: grid; gap: .6rem; }
.drawer-cta .btn { width: 100%; }

@media (max-width: 1040px) {
  .nav-links, .nav-cta .btn--ghost { display: none; }
  .burger { display: block; }
  .nav-cta .btn { padding: .5rem .9rem; }
}
@media (max-width: 560px) {
  .nav-cta { display: none; }
  .brand .brand-sub { display: none; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: var(--nacht);
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9) contrast(1.02); }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,12,11,.55) 0%, rgba(15,12,11,.35) 40%, rgba(15,12,11,.9) 100%),
    linear-gradient(105deg, rgba(122,10,15,.55) 0%, rgba(15,12,11,0) 55%);
}
/* Trikot-Diagonale als Marker (bewusst, sparsam) */
.hero__slash { position: absolute; top: 0; right: 0; bottom: 0; width: 34%; z-index: -1; overflow: hidden; pointer-events: none; }
.hero__slash::before {
  content: ""; position: absolute; top: -10%; right: -30%; width: 60%; height: 120%;
  background: var(--rot); transform: skewX(-12deg); opacity: .92;
}
.hero__slash::after {
  content: ""; position: absolute; top: -10%; right: 22%; width: 10%; height: 120%;
  background: #000; transform: skewX(-12deg); opacity: .85;
}
.hero__inner { position: relative; padding-block: clamp(4rem, 12vw, 8.5rem); }
.hero__eyebrow { color: #fff; }
.hero h1 { color: #fff; max-width: 16ch; margin-bottom: 1.1rem; }
.hero h1 .accent { color: #fff; -webkit-text-stroke: 0; position: relative; }
.hero__lead { font-size: clamp(1.1rem, 1.8vw, 1.35rem); color: #f0ece9; max-width: 46ch; margin-bottom: 1.8rem; }
.hero__cta { display: flex; gap: .8rem; flex-wrap: wrap; }
.hero--page { min-height: auto; }
.hero--page .hero__inner { padding-block: clamp(3rem, 8vw, 5.5rem); }
.hero--page h1 { font-size: clamp(2.2rem, 6vw, 4rem); }
.crumbs { font-size: .85rem; color: #e7c9cb; margin-bottom: 1rem; display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; }
.crumbs a { color: #f2dede; } .crumbs a:hover { color: #fff; text-decoration: underline; }
.crumbs .sep { opacity: .5; }

/* ==========================================================================
   STAT-BAND
   ========================================================================== */
.statband { background: var(--nacht); color: #fff; border-top: 4px solid var(--rot); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.09); }
.stat { background: var(--nacht); padding: 1.8rem 1rem; text-align: center; }
.stat__num { font-family: "Oswald", sans-serif; font-weight: 700; font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--rot); line-height: 1; }
.stat__num .plus { color: #fff; }
.stat__label { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--grau-inv); margin-top: .5rem; }
@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   KARTEN / GRIDS
   ========================================================================== */
.grid { display: grid; gap: clamp(1.1rem, 2.4vw, 1.7rem); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: var(--papier-2); border: 1px solid var(--linie); border-radius: var(--radius);
  overflow: hidden; transition: transform .28s var(--ease-out), box-shadow .28s var(--ease-out), border-color .28s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--sh-2); border-color: #cfcfd2; }
.card__media { aspect-ratio: 16/10; overflow: hidden; background: var(--nebel); position: relative; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.card__kicker { font-family: "Oswald"; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; font-size: .74rem; color: var(--rot); }
.card__title { font-family: "Oswald"; font-weight: 700; text-transform: uppercase; font-size: 1.35rem; line-height: 1.05; color: var(--tinte); }
.card__body p { margin: 0; color: var(--grau-txt); font-size: .97rem; }
.card__link { margin-top: auto; padding-top: .6rem; font-family: "Oswald"; font-weight: 600; text-transform: uppercase; font-size: .86rem; letter-spacing: .04em; color: var(--rot); display: inline-flex; gap: .4rem; align-items: center; }
.card__link .arrow { transition: transform .22s var(--ease-out); }
.card:hover .card__link .arrow { transform: translateX(4px); }

/* Team-Karte (Nummer/Position) */
.teamcard { position: relative; }
.teamcard .badge { position: absolute; top: 12px; left: 12px; background: var(--rot); color: #fff; font-family: "Oswald"; font-weight: 700; padding: .2rem .7rem; border-radius: 999px; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; z-index: 2; }

/* Icon-Feature (statt endloser identischer Cards — nur wo sinnvoll) */
.feature { display: flex; gap: 1rem; align-items: flex-start; }
.feature .ficon { flex: none; width: 52px; height: 52px; border-radius: 12px; background: rgba(227,6,19,.1); color: var(--rot); display: grid; place-items: center; }
.section--dark .feature .ficon { background: rgba(227,6,19,.22); }
.feature h3 { font-size: 1.15rem; margin-bottom: .3rem; }
.feature p { margin: 0; color: var(--grau-txt); font-size: .96rem; }
.section--dark .feature p { color: var(--grau-inv); }

/* ==========================================================================
   ANSPRECHPARTNER
   ========================================================================== */
.people { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1rem; }
.person {
  background: #fff; border: 1px solid var(--linie); border-left: 4px solid var(--rot);
  border-radius: var(--radius-s); padding: 1.1rem 1.2rem;
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
.person:hover { transform: translateY(-3px); box-shadow: var(--sh-1); }
.person .role { font-family: "Oswald"; text-transform: uppercase; letter-spacing: .08em; font-size: .74rem; color: var(--rot); font-weight: 600; }
.person .pname { font-family: "Oswald"; font-weight: 700; text-transform: uppercase; font-size: 1.2rem; color: var(--tinte); margin: .15rem 0 .5rem; }
.person .contact { display: grid; gap: .25rem; font-size: .92rem; }
.person .contact a { color: var(--grau-txt); display: inline-flex; gap: .45rem; align-items: center; transition: color .16s; word-break: break-word; }
.person .contact a:hover { color: var(--rot); }
.person .contact svg { flex: none; color: var(--rot); }
.group-label { grid-column: 1 / -1; font-family: "Oswald"; text-transform: uppercase; font-weight: 700; font-size: 1.15rem; color: var(--tinte); margin-top: 1rem; padding-bottom: .4rem; border-bottom: 2px solid var(--nebel); letter-spacing: .03em; }
.group-label:first-child { margin-top: 0; }

/* ==========================================================================
   HISTORIE — Zeitstrahl
   ========================================================================== */
.timeline { position: relative; margin-top: 1rem; padding-left: 2rem; }
.timeline::before { content: ""; position: absolute; left: 6px; top: 6px; bottom: 6px; width: 3px; background: linear-gradient(180deg, var(--rot), var(--rot-blut)); border-radius: 3px; }
.tl-item { position: relative; padding-bottom: 2rem; }
.tl-item::before { content: ""; position: absolute; left: -2rem; top: 5px; width: 15px; height: 15px; border-radius: 50%; background: #fff; border: 3px solid var(--rot); transform: translateX(-1px); }
.tl-year { font-family: "Oswald"; font-weight: 700; font-size: 1.5rem; color: var(--rot); line-height: 1; text-transform: uppercase; }
.tl-item p { margin: .4rem 0 0; color: var(--grau-txt); }

/* ==========================================================================
   SPONSOREN-WALL
   ========================================================================== */
.sponsor-wall { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: .8rem; }
.sponsor {
  background: #fff; border: 1px solid var(--linie); border-radius: var(--radius-s);
  aspect-ratio: 3/2; display: grid; place-items: center; padding: .9rem;
  transition: transform .22s var(--ease-out), box-shadow .22s var(--ease-out);
}
.sponsor:hover { transform: translateY(-3px); box-shadow: var(--sh-1); }
.sponsor img { max-height: 100%; max-width: 100%; width: auto; object-fit: contain; filter: grayscale(1) contrast(.95); opacity: .82; transition: filter .3s var(--ease-out), opacity .3s var(--ease-out); }
.sponsor:hover img { filter: grayscale(0); opacity: 1; }
@media (hover: none) { .sponsor img { filter: none; opacity: 1; } }
/* dezent klickbar (kein Icon-Overkill) — nur Cursor + feiner roter Rahmen auf Hover */
a.sponsor--link { cursor: pointer; }
a.sponsor--link:hover { border-color: var(--rot); }
a.sponsor--link:focus-visible { border-color: var(--rot); }
/* Hervorgehobene humect-Group-Kachel (F-Jugend-Sponsor): etwas größer, volle Marken-Farbe,
   dezente Sponsoring-Zeile — fertiges 16:9-Tile, nur sauber ins Grid eingepasst. */
/* Konsistent im selben Stil-System wie die übrigen Sponsoren: GLEICHE Kachelgröße, GLEICHE
   Entsättigung im Ruhezustand → Farbe bei Hover (erbt .sponsor / .sponsor img). Dezent betont
   nur über erste Position, einen feinen Steelblue-Rahmen und die Sponsoring-Zeile im Fuß. */
.sponsor--featured { position: relative; border-color: #A9BBC9; padding-bottom: 1.9rem; }
.sponsor--featured .sponsor__note {
  position: absolute; left: 0; right: 0; bottom: 0;
  font-family: "Oswald", sans-serif; font-weight: 500; letter-spacing: .01em;
  font-size: .6rem; line-height: 1.15; color: var(--grau-txt);
  background: rgba(255,255,255,.94); border-top: 1px solid var(--linie);
  padding: .3rem .4rem; text-align: center;
}
a.sponsor--featured:hover { border-color: #4B88A2; }   /* dezentes Steelblue statt Rot (Marken-Welt) */

/* ==========================================================================
   KUNSTRASEN-HIGHLIGHT
   ========================================================================== */
.spendband { position: relative; background: var(--rot); color: #fff; overflow: hidden; }
.spendband::before { content: ""; position: absolute; top: -40%; left: -5%; width: 45%; height: 180%; background: rgba(0,0,0,.12); transform: skewX(-14deg); }
.spendband .wrap { position: relative; display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; align-items: center; }
.spendband h2 { color: #fff; }
.spendband .lead { color: #ffe6e7; }
.spendband .spend-cta { display: flex; flex-direction: column; gap: .7rem; align-items: flex-start; }
@media (max-width: 820px) { .spendband .wrap { grid-template-columns: 1fr; } }

/* ==========================================================================
   INSTAGRAM
   ========================================================================== */
.insta-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.insta-tile {
  position: relative; aspect-ratio: 1; border-radius: var(--radius-s); overflow: hidden;
  background: linear-gradient(135deg, var(--nacht-2), var(--nacht));
  border: 1px solid rgba(255,255,255,.12); display: grid; place-items: center; text-align: center; padding: 1.2rem;
  transition: transform .24s var(--ease-out), box-shadow .24s var(--ease-out);
}
.insta-tile:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.insta-tile .ig-crest { width: 62px; height: 62px; opacity: .95; margin-bottom: .7rem; }
.insta-tile .ig-handle { font-family: "Oswald"; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: #fff; font-size: 1rem; }
.insta-tile .ig-hint { font-size: .8rem; color: var(--grau-inv); margin-top: .3rem; }
.insta-tile .ig-badge { position: absolute; top: 10px; right: 10px; color: #fff; opacity: .8; }
.insta-embed { border-radius: var(--radius-s); overflow: hidden; background: #fff; min-height: 420px; border: 1px solid var(--linie); }
.insta-embed iframe { width: 100%; border: 0; display: block; }
.insta-follow { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

/* ==========================================================================
   DOWNLOADS
   ========================================================================== */
.dl-list { display: grid; gap: .8rem; }
.dl-item {
  display: flex; align-items: center; gap: 1rem; background: #fff; border: 1px solid var(--linie);
  border-radius: var(--radius-s); padding: 1rem 1.2rem; transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out), border-color .2s;
}
.dl-item:hover { transform: translateY(-2px); box-shadow: var(--sh-1); border-color: #cfcfd2; }
.dl-item .dl-icon { flex: none; width: 46px; height: 46px; border-radius: 10px; background: rgba(227,6,19,.1); color: var(--rot); display: grid; place-items: center; }
.dl-item .dl-txt { flex: 1; }
.dl-item .dl-name { font-family: "Oswald"; font-weight: 600; text-transform: uppercase; font-size: 1.05rem; color: var(--tinte); }
.dl-item .dl-meta { font-size: .85rem; color: var(--grau-txt); }
.dl-item .dl-action { font-family: "Oswald"; font-weight: 600; text-transform: uppercase; font-size: .82rem; color: var(--rot); }
.dl-item[aria-disabled="true"] { opacity: .68; }
.dl-item[aria-disabled="true"] .dl-action { color: var(--grau-txt); }
.tag-soon { display: inline-block; font-family: "Oswald"; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; background: var(--nebel); color: var(--grau-txt); padding: .1rem .5rem; border-radius: 5px; margin-left: .5rem; vertical-align: middle; }

/* ==========================================================================
   KONTAKT-FORMULAR
   ========================================================================== */
.form-grid { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-family: "Oswald"; font-weight: 500; text-transform: uppercase; letter-spacing: .05em; font-size: .82rem; color: var(--tinte); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; padding: .8rem .9rem; border: 1.5px solid var(--linie);
  border-radius: var(--radius-s); background: #fff; color: var(--tinte); transition: border-color .18s, box-shadow .18s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--rot); box-shadow: 0 0 0 3px rgba(227,6,19,.14); }
.field textarea { resize: vertical; min-height: 140px; }
.form-note { font-size: .85rem; color: var(--grau-txt); }
.info-panel { background: var(--nacht); color: #fff; border-radius: var(--radius); padding: 1.6rem; }
.info-panel h3 { color: #fff; margin-bottom: 1rem; }
.info-row { display: flex; gap: .8rem; align-items: flex-start; padding: .7rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.info-row:last-child { border-bottom: 0; }
.info-row svg { flex: none; color: var(--rot); margin-top: 3px; }
.info-row a { color: #f0ece9; } .info-row a:hover { color: #fff; text-decoration: underline; }
.info-row .lbl { font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; color: var(--grau-inv); }

/* ==========================================================================
   PROSA / GENERISCHE INHALTE
   ========================================================================== */
.prose > * + * { margin-top: 1.1rem; }
.prose p { color: var(--grau-txt); }
.prose h2, .prose h3 { margin-top: 2rem; color: var(--tinte); }
.prose ul { padding-left: 1.2rem; color: var(--grau-txt); }
.prose li { margin: .35rem 0; }
.prose a.inline { color: var(--rot); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.pill { display: inline-block; background: rgba(227,6,19,.1); color: var(--rot); font-family: "Oswald"; font-weight: 600; text-transform: uppercase; font-size: .78rem; letter-spacing: .06em; padding: .2rem .7rem; border-radius: 999px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }
.split .media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--sh-2); aspect-ratio: 4/3; }
.split .media img { width: 100%; height: 100%; object-fit: cover; }

.addr-card { display: inline-flex; gap: .7rem; align-items: center; background: #fff; border: 1px solid var(--linie); border-radius: 999px; padding: .6rem 1.2rem; font-family: "Oswald"; text-transform: uppercase; letter-spacing: .03em; color: var(--tinte); }
.addr-card svg { color: var(--rot); }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .8rem; }
.gallery-grid figure { margin: 0; border-radius: var(--radius-s); overflow: hidden; aspect-ratio: 4/3; background: var(--nebel); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.gallery-grid figure:hover img { transform: scale(1.06); }

.notice { background: #fff; border: 1px dashed var(--rot); border-radius: var(--radius-s); padding: 1rem 1.2rem; font-size: .92rem; color: var(--grau-txt); }
.notice strong { color: var(--tinte); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--nacht); color: #cfc9c5; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; padding-block: clamp(3rem, 6vw, 4.5rem); }
.footer-brand .brand-name { font-family: "Oswald"; font-weight: 700; text-transform: uppercase; color: #fff; font-size: 1.3rem; }
.footer-brand img { width: 64px; height: 64px; margin-bottom: .8rem; }
.footer-brand p { color: var(--grau-inv); font-size: .93rem; max-width: 34ch; }
.footer-col h4 { font-family: "Oswald"; text-transform: uppercase; color: #fff; font-size: 1rem; letter-spacing: .05em; margin-bottom: .9rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.footer-col a { color: var(--grau-inv); font-size: .93rem; transition: color .16s, padding-left .16s var(--ease-out); }
.footer-col a:hover { color: #fff; padding-left: 4px; }
.footer-contact a { display: inline-flex; gap: .5rem; align-items: center; }
.footer-contact svg { color: var(--rot); flex: none; }
.footer-social { display: flex; gap: .7rem; margin-top: 1rem; }
.footer-social a { width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: background-color .2s var(--ease-out), transform .2s var(--ease-out); }
.footer-social a:hover { background: var(--rot); transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 1.2rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .84rem; color: var(--grau-inv); }
.footer-bottom a { color: var(--grau-inv); } .footer-bottom a:hover { color: #fff; }
.footer-bottom .legal-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.foerder-strip { display: flex; align-items: center; gap: 1rem; padding: 1rem 0; border-top: 1px solid rgba(255,255,255,.08); flex-wrap: wrap; }
.foerder-strip img { height: 42px; width: auto; background: #fff; border-radius: 6px; padding: 4px 8px; }
.foerder-strip span { font-size: .8rem; color: var(--grau-inv); max-width: 60ch; }
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }

/* ==========================================================================
   REVEAL-ANIMATION (JS-gesteuert)
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); will-change: opacity, transform; }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-stagger] > * { opacity: 0; transform: translateY(20px); transition: opacity .55s var(--ease-out), transform .55s var(--ease-out); }
[data-reveal-stagger].in > * { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-stagger] > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .card:hover, .person:hover, .sponsor:hover, .insta-tile:hover, .dl-item:hover { transform: none; }
  .btn:active { transform: none; }
  .card:hover .card__media img, .gallery-grid figure:hover img { transform: none; }
}

/* ==========================================================================
   STAFFECT-SPONSOR-HERO (F-Jugend 2026/2027) + Spieltag + Betreiber
   ========================================================================== */
/* (Der frühere STAFFECT-Sponsor-Hero wurde entfernt — der F-Jugend-Sponsor erscheint jetzt als
   hervorgehobene humect-Group-Kachel innerhalb der Sponsoren-Wall, siehe .sponsor--featured oben.) */

.fussball-cta { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; }
.fussball-card { flex-direction: row; align-items: center; gap: 1rem; padding: 1.3rem 1.5rem; background: var(--nacht-2); border-color: rgba(255,255,255,.12); }
.fussball-card .ficon { flex: none; width: 52px; height: 52px; border-radius: 12px; background: rgba(227,6,19,.22); color: var(--rot); display: grid; place-items: center; }
.fussball-card .card__title { color: #fff; font-size: 1.25rem; }
.fussball-card p { color: var(--grau-inv); font-size: .93rem; margin: .2rem 0 0; }
.fussball-card .card__link { margin: 0 0 0 auto; padding: 0; align-self: center; }
.fussball-card:hover { transform: translateY(-4px); }
@media (max-width: 520px){ .fussball-card { flex-wrap: wrap; } .fussball-card .card__link { margin-left: 0; } }

.betreiber-strip { display: flex; align-items: center; gap: 1.1rem; padding: 1.3rem 0; border-top: 1px solid rgba(255,255,255,.08); flex-wrap: wrap; }
.betreiber-strip .betreiber-label { font-family: "Oswald"; text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; color: var(--grau-inv); }
.betreiber-strip img { height: 30px; width: auto; opacity: .92; transition: opacity .2s var(--ease-out); }
.betreiber-strip a:hover img { opacity: 1; }
.betreiber-strip .betreiber-note { font-size: .8rem; color: var(--grau-inv); max-width: 52ch; }

.join-box {
  margin-top: 2rem; background: var(--nacht); color: #fff; border-radius: var(--radius);
  padding: 1.6rem 1.8rem; display: flex; align-items: center; justify-content: space-between;
  gap: 1.2rem; flex-wrap: wrap;
}
.join-box h3 { color: #fff; margin-bottom: .3rem; }
.join-box p { color: var(--grau-inv); margin: 0; max-width: 46ch; }
.join-box .btn { flex: none; }

/* Utility */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mb-0 { margin-bottom: 0; }
.text-red { color: var(--rot); }
.hr { height: 1px; background: var(--nebel); border: 0; margin: 2rem 0; }
.section--dark .hr { background: rgba(255,255,255,.1); }
