/* ============================================================
   ASKANIA 09 - Sportlich / Dynamisch / Magazin
   Farben: #1a3a6b, #3874b4, #f0c808, #0f2548
   Fonts: Bebas Neue (Headings), Source Sans 3 (Body)
   ============================================================ */

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

:root {
  --blue:       #1a3a6b;
  --blue-light: #3874b4;
  --blue-dark:  #0f2548;
  --gold:       #f0c808;
  --gold-dark:  #d4b007;
  --white:      #ffffff;
  --off-white:  #f5f7fa;
  --gray-100:   #e8ecf1;
  --gray-300:   #a0aec0;
  --gray-400:   #718096;
  --gray-500:   #4a5568;
  --gray-600:   #2d3748;
  --dark:       #101c44;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
  color: var(--gray-600);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

/* ---- Container ---- */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.wrap--narrow { max-width: 900px; }


/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--gold);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.4rem 0;
  text-align: center;
}

.topbar a {
  color: var(--blue);
  margin: 0 1rem;
  transition: opacity 0.2s;
}

.topbar a:hover { opacity: 0.7; }


/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--blue);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo img { height: 48px; width: auto; }
.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1;
}
.logo-text small {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 2px;
}

/* Desktop Nav */
.main-nav { display: none; }

@media (min-width: 1024px) {
  .main-nav { display: flex; align-items: center; gap: 0.25rem; }
}

.main-nav .nav-item { position: relative; }

.main-nav .nav-link {
  display: block;
  padding: 0.5rem 0.85rem;
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 0.25rem;
  transition: all 0.2s;
}

.main-nav .nav-link:hover,
.main-nav .nav-link--active {
  background: rgba(255,255,255,0.12);
  color: var(--gold);
}

.main-nav .nav-link .caret {
  font-size: 0.55em;
  margin-left: 0.25rem;
  transition: transform 0.2s;
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--white);
  border-radius: 0.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  padding: 0.4rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s;
}

.nav-item:hover .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}

.nav-item:hover .caret { transform: rotate(180deg); }

.nav-dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: var(--gray-600);
  font-weight: 600;
  transition: all 0.15s;
}

.nav-dropdown a:hover {
  background: var(--off-white);
  color: var(--blue);
  padding-left: 1.25rem;
}

/* Hamburger */
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  justify-content: center;
  align-items: center;
  z-index: 1100;
}

.burger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (min-width: 1024px) { .burger { display: none; } }

/* Mobile Nav: bei offenem Menue Body sperren + Topbar ausblenden,
   damit der sticky Header konstant bei 0 sitzt und das X ueber dem Overlay klickbar bleibt */
body.nav-open { overflow: hidden; }
body.nav-open .topbar { display: none; }

/* Mobile Nav Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--blue-dark);
  z-index: 990;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 0.1rem;
  padding: 5.5rem 0 2rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.mobile-overlay.is-open { opacity: 1; visibility: visible; }

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  text-align: center;
}

.mobile-overlay a {
  display: block;
  padding: 0.4rem 2rem;
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.mobile-overlay a:hover { color: var(--gold); }

.mobile-sub {
  display: none;
  padding: 0 2rem 0.5rem;
}

.mobile-sub.is-open { display: block; }

.mobile-sub a {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.1rem;
  padding: 0.3rem 0;
  color: rgba(255,255,255,0.6);
}


/* ============================================================
   HERO - SPLIT SCREEN
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 85vh;
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero { grid-template-columns: 1fr 1fr; min-height: 90vh; }
}

.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 1.5rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .hero__text { padding: 4rem 3rem 4rem 2rem; }
}

@media (min-width: 1200px) {
  .hero__text { padding: 5rem 4rem 5rem calc((100vw - 1200px) / 2 + 1.25rem); }
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.hero__label::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: var(--blue-dark);
  border-radius: 50%;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.95;
  margin-bottom: 1.5rem;
}

.hero h1 span { color: var(--gold); }

.hero__desc {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero__btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.25s;
}

.btn--gold {
  background: var(--gold);
  color: var(--blue-dark);
}

.btn--gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240,200,8,0.35);
}

.btn--ghost {
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--blue {
  background: var(--blue);
  color: var(--white);
}

.btn--blue:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
}

.btn--outline {
  border: 2px solid var(--blue);
  color: var(--blue);
  background: transparent;
}

.btn--outline:hover {
  background: var(--blue);
  color: var(--white);
}

/* Hero Image Side */
.hero__visual {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}

.hero__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-dark) 0%, transparent 60%);
  z-index: 1;
}

.hero__stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gold);
  z-index: 5;
}

/* Stats inside hero */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero__stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
}


/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 5rem 0; position: relative; }
.section--blue { background: var(--blue); color: var(--white); }
.section--blue h2, .section--blue h3 { color: var(--white); }
.section--gray { background: var(--off-white); }
.section--dark { background: var(--blue-dark); color: var(--white); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--blue-dark { background: var(--blue-dark); color: var(--white); }
.section--blue-dark h2, .section--blue-dark h3, .section--blue-dark h4 { color: var(--white); }

.section--clip-top {
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
  padding-top: calc(5rem + 40px);
}

@media (min-width: 768px) {
  .section--clip-top {
    clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
    padding-top: calc(5rem + 60px);
  }
}

.section-head {
  margin-bottom: 3rem;
}

.section-head h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.section--blue .section-head h2,
.section--dark .section-head h2 { color: var(--white); }

.section-head .accent-line {
  display: block;
  width: 50px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 1rem;
}

.section-head p {
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 560px;
}

.section--blue .section-head p,
.section--dark .section-head p { color: rgba(255,255,255,0.65); }

.section-head--center {
  text-align: center;
}

.section-head--center .accent-line {
  margin-left: auto;
  margin-right: auto;
}

.section-head--center p {
  margin-left: auto;
  margin-right: auto;
}


/* ============================================================
   NEWS - BENTO GRID
   ============================================================ */
.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .bento__item--large {
    grid-row: 1 / 3;
  }
}

.bento__item {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.bento__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.bento__img {
  position: relative;
  overflow: hidden;
}

.bento__item--large .bento__img { height: 100%; min-height: 320px; }
.bento__item:not(.bento__item--large) .bento__img { height: 200px; }

.bento__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.bento__item:hover .bento__img img { transform: scale(1.05); }

.bento__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--blue-dark);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  z-index: 2;
}

.bento__body { padding: 1.5rem; }

.bento__item--large .bento__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(15,37,72,0.95), transparent);
  padding: 3rem 1.5rem 1.5rem;
  z-index: 2;
}

.bento__date {
  font-size: 0.8rem;
  color: var(--gray-300);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.bento__item--large .bento__date { color: rgba(255,255,255,0.6); }

.bento__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--blue);
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.bento__item--large .bento__title {
  font-size: 1.8rem;
  color: var(--white);
}

.bento__excerpt {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bento__item--large .bento__excerpt { color: rgba(255,255,255,0.7); }

.bento__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--blue-light);
  transition: color 0.2s;
}

.bento__link:hover { color: var(--gold); }
.bento__item--large .bento__link { color: var(--gold); }
.bento__item--large .bento__link:hover { color: var(--white); }


/* ============================================================
   ABTEILUNGEN - HORIZONTAL SCROLL CARDS
   ============================================================ */
.dept-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) rgba(255,255,255,0.1);
}

.dept-scroll::-webkit-scrollbar { height: 6px; }
.dept-scroll::-webkit-scrollbar-track { background: rgba(255,255,255,0.1); border-radius: 3px; }
.dept-scroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

.dept-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  border-radius: 0.75rem;
  overflow: hidden;
  position: relative;
  height: 380px;
  transition: transform 0.3s;
}

.dept-card:hover { transform: scale(1.02); }

.dept-card__img {
  position: absolute;
  inset: 0;
}

.dept-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dept-card__content {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--blue-dark) 0%, rgba(15,37,72,0.6) 40%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.dept-card__icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.dept-card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.dept-card__desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.dept-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: gap 0.2s;
}

.dept-card:hover .dept-card__link { gap: 0.8rem; }


/* ============================================================
   HISTORY - FULL WIDTH BANNER
   ============================================================ */
.history-banner {
  position: relative;
  padding: 5rem 0;
  background: var(--blue);
  overflow: hidden;
}

.history-banner::before {
  content: '1909';
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(8rem, 20vw, 18rem);
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}

.history-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .history-inner { grid-template-columns: auto 1fr; gap: 3rem; }
}

.history-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 6rem;
  color: var(--gold);
  line-height: 1;
  position: relative;
}

.history-year::after {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  background: var(--gold);
  margin-top: 0.5rem;
}

.history-text h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.history-text p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 640px;
}


/* ============================================================
   TERMINE - TIMELINE STYLE
   ============================================================ */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.5rem;
  width: 2px;
  background: var(--gray-100);
}

.timeline__item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline__item:last-child { padding-bottom: 0; }

.timeline__item::before {
  content: '';
  position: absolute;
  left: -1.65rem;
  top: 0.25rem;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--gold);
  z-index: 2;
}

.timeline__card {
  background: var(--white);
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border-left: 4px solid var(--blue);
  transition: transform 0.3s, box-shadow 0.3s;
}

.timeline__card:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.timeline__date {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.timeline__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: var(--blue);
  letter-spacing: 0.03em;
  margin-bottom: 0.3rem;
}

.timeline__meta {
  font-size: 0.85rem;
  color: var(--gray-400);
}

.timeline__meta span { margin-right: 1rem; }


/* ============================================================
   SPONSOREN - MARQUEE / TICKER
   ============================================================ */
.marquee-wrap {
  overflow: hidden;
  position: relative;
}

.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--off-white), transparent);
}

.marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--off-white), transparent);
}

.marquee-track {
  display: flex;
  gap: 2rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.sponsor-item {
  flex: 0 0 320px;
  height: 80px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  transition: all 0.3s;
}

.sponsor-item:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.sponsor-item img {
  max-height: 50px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.3s;
}

.sponsor-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}


/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--gold);
  padding: 3rem 0;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--blue-dark);
  margin-bottom: 0.5rem;
}

.cta-band p {
  color: var(--blue);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.cta-band .btn--blue:hover {
  box-shadow: 0 6px 20px rgba(26,58,107,0.3);
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand { max-width: 280px; }

.footer-brand .logo { margin-bottom: 1rem; }

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--blue-dark);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

.footer-col li { margin-bottom: 0.6rem; }

.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: all 0.2s;
}

.footer-col a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
}

.footer-contact-icon {
  flex-shrink: 0;
  width: 18px;
  text-align: center;
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: var(--gold); }


/* ============================================================
   INNENSEITEN - Content Area
   ============================================================ */
.page-header {
  background: var(--blue-dark);
  padding: 4rem 0 3rem;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 0.75rem;
}

.page-header .breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.page-header .breadcrumb a {
  color: var(--gold);
  transition: opacity 0.2s;
}

.page-header .breadcrumb a:hover { opacity: 0.7; }

.page-content {
  padding: 4rem 0;
}

.page-content .wrap {
  max-width: 900px;
}

.page-content h2 {
  font-size: 2rem;
  color: var(--blue);
  margin: 2rem 0 1rem;
}

.page-content h3 {
  font-size: 1.5rem;
  color: var(--blue);
  margin: 1.5rem 0 0.75rem;
}

.page-content p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.page-content ul,
.page-content ol {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.page-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.page-content img {
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}

.page-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  background: var(--off-white);
  margin: 1.5rem 0;
  border-radius: 0 0.5rem 0.5rem 0;
  font-style: italic;
  color: var(--gray-500);
}

/* Blog / Archive */
.post-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .post-grid { grid-template-columns: repeat(3, 1fr); }
}

.post-card {
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.post-card__img {
  height: 200px;
  overflow: hidden;
}

.post-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.post-card:hover .post-card__img img { transform: scale(1.05); }

.post-card__body {
  padding: 1.5rem;
}

.post-card__date {
  font-size: 0.8rem;
  color: var(--gray-300);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.post-card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--blue);
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.post-card__excerpt {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--blue-light);
  transition: color 0.2s;
}

.post-card__link:hover { color: var(--gold); }

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .team-grid { grid-template-columns: repeat(4, 1fr); }
}

.team-member {
  text-align: center;
}

.team-member__img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 3px solid var(--gold);
}

.team-member__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: var(--blue);
  letter-spacing: 0.03em;
}

.team-member__role {
  font-size: 0.85rem;
  color: var(--gray-400);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0.25rem;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.pagination a {
  background: var(--white);
  color: var(--blue);
  border: 1px solid var(--gray-100);
}

.pagination a:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.pagination .current {
  background: var(--blue);
  color: var(--white);
}


/* ============================================================
   SPONSOREN-SEITE
   ============================================================ */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .sponsors-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .sponsors-grid { grid-template-columns: repeat(4, 1fr); }
}

.sponsor-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.sponsor-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.sponsor-card__logo {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.sponsor-card__logo img {
  max-height: 80px;
  max-width: 160px;
  object-fit: contain;
}

.sponsor-card__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: var(--blue);
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
}

.sponsor-card__desc {
  font-size: 0.85rem;
  color: var(--gray-400);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.sponsor-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--blue-light);
  transition: color 0.2s;
}

.sponsor-card__link:hover { color: var(--gold); }

.sponsor-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.sponsor-cta__text {
  flex: 1;
  min-width: 280px;
}

.sponsor-cta__text h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.sponsor-cta__text p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
}


/* ============================================================
   FUPA WIDGET / CARD
   ============================================================ */
.fupa-widget-wrap {
  background: var(--white);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.fupa-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--blue-dark);
  border-radius: 0.75rem;
  padding: 2rem;
  flex-wrap: wrap;
}

.fupa-card__icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.fupa-card__content {
  flex: 1;
  min-width: 200px;
}

.fupa-card__content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.fupa-card__content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.fupa-card .btn {
  flex-shrink: 0;
}


/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}


/* ============================================================
   ASKANIALIED
   ============================================================ */
.askanialied-section { padding: 2rem 0; }
.askanialied {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.askanialied__icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--blue-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.askanialied__content { flex: 1; min-width: 200px; }
.askanialied__content h3 {
    font-family: var(--font-heading, 'Bebas Neue', sans-serif);
    font-size: 1.5rem;
    color: var(--gold);
    margin: 0;
    text-transform: uppercase;
}
.askanialied__content p {
    color: rgba(255,255,255,0.7);
    margin: 0.25rem 0 0;
    font-size: 0.95rem;
}
.askanialied__player { flex: 1; min-width: 250px; }
.askanialied__audio {
    width: 100%;
    height: 40px;
    border-radius: 2rem;
}
.askanialied__audio::-webkit-media-controls-panel {
    background: rgba(255,255,255,0.1);
}
.askanialied__fallback {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}
@media (max-width: 600px) {
    .askanialied { flex-direction: column; text-align: center; }
    .askanialied__player { width: 100%; }
}


/* ── Downloads ──────────────────────────── */
.download-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.download-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    transition: box-shadow 0.2s;
}
.download-item:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.download-item__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--off-white);
    color: var(--blue);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.download-item__content { flex: 1; min-width: 0; }
.download-item__content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--blue-dark);
    margin: 0;
}
.download-item__content p {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin: 0.25rem 0 0;
}
.download-item .btn { flex-shrink: 0; white-space: nowrap; }
@media (max-width: 640px) {
    .download-item { flex-direction: column; text-align: center; gap: 0.75rem; }
    .download-item .btn { width: 100%; }
}

/* ── Trainingszeiten-Tabelle ───────────── */
.trainingszeiten-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.trainingszeiten-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}
.trainingszeiten-table th {
    background: var(--blue);
    color: var(--white);
    padding: 0.75rem 1rem;
    text-align: left;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.trainingszeiten-table td {
    padding: 0.65rem 1rem;
    border-bottom: 1px solid var(--gray-100);
}
.trainingszeiten-table tbody tr:hover { background: var(--off-white); }

/* ── Nachwuchs-Grid ────────────────────── */
.nachwuchs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.5rem;
}
.nachwuchs-item {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
}
.nachwuchs-item h3 {
    font-family: var(--font-heading);
    color: var(--blue);
    font-size: 1.15rem;
    margin: 0 0 0.5rem;
}
.nachwuchs-item p { margin: 0.25rem 0; color: var(--gray-500); }
@media (min-width: 768px) {
    .nachwuchs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .nachwuchs-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Vorstand ───────────────────────────── */
.vorstand-intro {
    max-width: 680px;
    margin: 0 auto 2.5rem;
    text-align: center;
    color: var(--gray-500);
    line-height: 1.7;
}
.vorstand-section-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-300);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gray-100);
}
.vorstand-section-title:first-of-type { margin-top: 0; }
.vorstand-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
.vorstand-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    transition: box-shadow 0.2s, transform 0.2s;
}
.vorstand-card:hover {
    box-shadow: 0 6px 20px rgba(26,58,107,0.1);
    transform: translateY(-2px);
}
.vorstand-card--highlight {
    border-left: 4px solid var(--gold);
    background: linear-gradient(135deg, #fffdf0 0%, var(--white) 100%);
}
.vorstand-card__avatar {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
    background: var(--blue);
}
.vorstand-card--highlight .vorstand-card__avatar {
    background: var(--gold);
    color: var(--blue-dark);
}
.vorstand-card__info { flex: 1; min-width: 0; }
.vorstand-card__position {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-300);
    font-weight: 600;
    margin: 0;
}
.vorstand-card__name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--blue-dark);
    margin: 0.15rem 0 0;
}
.vorstand-card__contact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.35rem;
}
.vorstand-card__contact a {
    font-size: 0.85rem;
    color: var(--blue-light);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.vorstand-card__contact a:hover { color: var(--gold-dark); }
.vorstand-card__vacant {
    font-style: italic;
    color: var(--gray-300);
    font-size: 0.9rem;
}
@media (min-width: 768px) {
    .vorstand-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Kontakt-Info ──────────────────────── */
.kontakt-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 640px;
}
.kontakt-info__item {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 0.75rem;
    padding: 1.5rem;
}
.kontakt-info__item h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-300);
    margin: 0 0 0.5rem;
}
.kontakt-info__item p { margin: 0.25rem 0; }
.kontakt-info__item a { color: var(--blue-light); }
.kontakt-info__item a:hover { color: var(--gold-dark); }

/* ── Chronik / Timeline ────────────────── */
.chronik-toc {
    background: var(--off-white);
    border-radius: 0.75rem;
    padding: 1.5rem 2rem;
    margin-bottom: 3rem;
}
.chronik-toc h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-300);
    margin: 0 0 0.75rem;
}
.chronik-toc ul { list-style: none; columns: 2; column-gap: 2rem; }
.chronik-toc li { padding: 0.3rem 0; }
.chronik-toc a {
    color: var(--blue);
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.chronik-toc a:hover { color: var(--gold-dark); }
.chronik-toc a::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.chronik-timeline {
    position: relative;
    padding-left: 3rem;
}
.chronik-timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--gold), var(--blue), var(--gold));
    border-radius: 2px;
}
.chronik-era {
    position: relative;
    margin-bottom: 3rem;
    scroll-margin-top: 6rem;
}
.chronik-era__badge {
    position: absolute;
    left: -3rem;
    top: 0;
    width: 27px;
    height: 27px;
    background: var(--gold);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--gold);
    z-index: 1;
}
.chronik-era__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.chronik-era__years {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold);
    letter-spacing: 0.02em;
    line-height: 1;
    white-space: nowrap;
}
.chronik-era__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--blue-dark);
    text-transform: uppercase;
    margin: 0;
}
.chronik-era__text {
    color: var(--gray-500);
    line-height: 1.8;
    font-size: 0.98rem;
}
.chronik-era__text p { margin-bottom: 1rem; }

.chronik-highlight {
    background: linear-gradient(135deg, #fffdf0 0%, var(--white) 100%);
    border-left: 4px solid var(--gold);
    border-radius: 0 0.75rem 0.75rem 0;
    padding: 1.25rem 1.5rem;
    margin: 1.25rem 0;
}
.chronik-highlight strong { color: var(--blue-dark); }

.chronik-players {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}
.chronik-player {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    transition: box-shadow 0.2s, transform 0.2s;
}
.chronik-player:hover {
    box-shadow: 0 6px 20px rgba(26,58,107,0.1);
    transform: translateY(-2px);
}
.chronik-player__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.chronik-player__info { flex: 1; }
.chronik-player__name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--blue-dark);
    margin: 0;
}
.chronik-player__club {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin: 0.2rem 0 0;
}
.chronik-player--featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, #fffdf0 0%, var(--white) 100%);
}
.chronik-player--featured .chronik-player__icon {
    background: var(--gold);
    color: var(--blue-dark);
}

.chronik-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin: 1.25rem 0;
}
.chronik-stat {
    text-align: center;
    background: var(--off-white);
    border-radius: 0.5rem;
    padding: 1rem;
}
.chronik-stat__number {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    line-height: 1;
}
.chronik-stat__label {
    font-size: 0.8rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

@media (max-width: 640px) {
    .chronik-toc ul { columns: 1; }
    .chronik-timeline { padding-left: 2rem; }
    .chronik-era__badge { left: -2rem; width: 21px; height: 21px; }
    .chronik-era__header { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
    .chronik-era__years { font-size: 1.4rem; }
    .chronik-stats { grid-template-columns: 1fr; }
}
@media (min-width: 768px) {
    .chronik-players { grid-template-columns: repeat(2, 1fr); }
    .chronik-stats { grid-template-columns: repeat(4, 1fr); }
}

/* ── Satzung ────────────────────────────── */
.satzung-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--gray-100);
}
.satzung-header__title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--blue-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}
.satzung-header__sub {
    color: var(--gray-400);
    font-size: 1rem;
    margin: 0.5rem 0 0;
}
.satzung-header__meta {
    display: inline-flex;
    gap: 1.5rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--gray-300);
}
.satzung-header__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.satzung-toc {
    background: var(--off-white);
    border-radius: 0.75rem;
    padding: 1.5rem 2rem;
    margin-bottom: 2.5rem;
}
.satzung-toc h3 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-300);
    margin: 0 0 0.75rem;
}
.satzung-toc ol {
    list-style: none;
    columns: 2;
    column-gap: 2rem;
    counter-reset: toc;
    margin: 0;
    padding: 0;
}
.satzung-toc li {
    padding: 0.25rem 0;
    break-inside: avoid;
}
.satzung-toc a {
    color: var(--blue);
    text-decoration: none;
    font-size: 0.92rem;
}
.satzung-toc a:hover { color: var(--gold-dark); }
.satzung-toc a::before {
    content: attr(data-p);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--blue);
    color: var(--white);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.satzung-paragraph {
    margin-bottom: 2rem;
    scroll-margin-top: 6rem;
}
.satzung-paragraph__head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-100);
}
.satzung-paragraph__num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--blue);
    color: var(--white);
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
}
.satzung-paragraph__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--blue-dark);
    margin: 0;
}
.satzung-paragraph__body {
    color: var(--gray-500);
    line-height: 1.8;
    font-size: 0.95rem;
    padding-left: calc(36px + 0.75rem);
}
.satzung-paragraph__body p { margin-bottom: 0.6rem; }
.satzung-paragraph__body .satzung-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
}
.satzung-paragraph__body .satzung-list li {
    padding: 0.2rem 0 0.2rem 1.25rem;
    position: relative;
}
.satzung-paragraph__body .satzung-list li::before {
    content: '\2013';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}
.satzung-note {
    text-align: center;
    font-style: italic;
    color: var(--gray-300);
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gray-100);
    font-size: 0.9rem;
}
@media (max-width: 640px) {
    .satzung-toc ol { columns: 1; }
    .satzung-paragraph__body { padding-left: 0; }
    .satzung-header__meta { flex-direction: column; gap: 0.5rem; }
}

/* ── Heidepokal ────────────────── */
.heidepokal-hero {
    text-align: center;
    padding: 2rem 1rem 1.5rem;
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
    border-radius: 0.75rem;
    margin-bottom: 2rem;
    color: var(--white);
}
.heidepokal-hero__icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}
.heidepokal-hero__title {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin: 0;
}
.heidepokal-hero__sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    margin: 0.5rem 0 0;
}
.heidepokal-section {
    margin-bottom: 2rem;
}
.heidepokal-section h3 {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: 1.3rem;
    color: var(--blue);
    border-left: 4px solid var(--gold);
    padding-left: 0.75rem;
    margin: 0 0 1rem;
}
.heidepokal-results {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
.heidepokal-result {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 0.75rem;
    padding: 1.25rem;
    transition: border-color 0.2s;
}
.heidepokal-result:hover {
    border-color: var(--gold);
}
.heidepokal-result__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}
.heidepokal-result__cat {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--blue);
}
.heidepokal-result__winner {
    font-weight: 700;
    color: var(--gold-dark);
    font-size: 0.95rem;
}
.heidepokal-result__table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.heidepokal-result__table td {
    padding: 0.35rem 0.5rem;
    border-bottom: 1px solid var(--gray-100);
}
.heidepokal-result__table td:nth-child(2) {
    text-align: center;
    font-weight: 700;
    color: var(--blue);
    white-space: nowrap;
}
.heidepokal-result__note {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin: 0;
    font-style: italic;
}
.heidepokal-result--compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.25rem;
}
.heidepokal-result--compact .heidepokal-result__cat {
    margin: 0;
}
.pfingstfest-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.pfingstfest-feature {
    background: var(--off-white);
    border-radius: 0.75rem;
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}
.pfingstfest-feature__icon {
    font-size: 2rem;
    flex-shrink: 0;
}
.pfingstfest-feature__text {
    font-size: 0.9rem;
    line-height: 1.4;
}
.pfingstfest-feature__text strong {
    color: var(--blue);
    display: block;
    font-size: 0.95rem;
}
@media (max-width: 640px) {
    .heidepokal-hero__title { font-size: 2rem; }
    .heidepokal-result__header { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
    .heidepokal-result--compact { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
    .pfingstfest-features { grid-template-columns: 1fr; }
}

/* ── Team / FuPa Widgets ────────────────── */
.team-header {
    margin-bottom: 1.5rem;
}
.team-header__name {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: 2rem;
    color: var(--blue);
    margin: 0;
}
.team-header__league {
    font-size: 1.1rem;
    color: var(--gold-dark);
    font-weight: 600;
    margin: 0.25rem 0 0;
}
.team-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}
.team-info__item {
    background: var(--off-white);
    border-radius: 0.5rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
}
.team-info__item strong {
    color: var(--blue);
}
.fupa-widget-wrap {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 0.75rem;
    padding: 1rem;
    margin: 1.5rem 0;
    overflow: hidden;
}
.fupa-widget-wrap iframe {
    max-width: 100% !important;
}
h3.liveticker-section {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: 1.3rem;
    color: var(--blue);
    border-left: 4px solid var(--gold);
    padding-left: 0.75rem;
    margin: 2rem 0 0.5rem;
}

/* ── Kontakt Page ────────────────── */
.kontakt-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}
.kontakt-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.kontakt-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.kontakt-card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(26,58,107,0.08);
}
.kontakt-card__icon {
    width: 48px; height: 48px;
    background: var(--blue);
    color: var(--gold);
    border-radius: 0.5rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.kontakt-card__body h3 {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-300);
    margin: 0 0 0.35rem;
}
.kontakt-card__body p { margin: 0.15rem 0; font-size: 0.95rem; line-height: 1.5; }
.kontakt-card__body a { color: var(--blue-light); font-weight: 600; }
.kontakt-card__body a:hover { color: var(--gold-dark); }
.kontakt-map {
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid var(--gray-100);
    min-height: 380px;
}
.kontakt-map iframe {
    width: 100%; height: 100%; min-height: 380px;
    border: 0; display: block;
}
.kontakt-extra {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}
.kontakt-box {
    background: var(--off-white);
    border-radius: 0.75rem;
    padding: 1.5rem 2rem;
}
.kontakt-box h3 {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--blue);
    margin: 0 0 0.75rem;
}
.kontakt-box p { margin: 0.25rem 0; font-size: 0.95rem; }
.kontakt-box ul { list-style: none; }
.kontakt-box li {
    padding: 0.35rem 0;
    font-size: 0.95rem;
    display: flex;
    gap: 0.5rem;
}
.kontakt-box li span:first-child { min-width: 20px; text-align: center; }
.kontakt-anfahrt {
    background: var(--blue);
    color: var(--white);
    border-radius: 0.75rem;
    padding: 1.5rem 2rem;
}
.kontakt-anfahrt h3 {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gold);
    margin: 0 0 0.75rem;
}
.kontakt-anfahrt p { margin: 0.3rem 0; font-size: 0.95rem; color: rgba(255,255,255,0.85); }
.kontakt-anfahrt strong { color: var(--white); }
@media (max-width: 768px) {
    .kontakt-page { grid-template-columns: 1fr; }
    .kontakt-extra { grid-template-columns: 1fr; }
    .kontakt-map { min-height: 280px; }
    .kontakt-map iframe { min-height: 280px; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .topbar, .site-header, .burger, .mobile-overlay, .hero__stripe,
  .site-footer, .cta-band { display: none !important; }
  .hero { min-height: auto; }
  .section { padding: 2rem 0; }
  body { color: #000; background: #fff; }
}
