/* ============================================================
   TC Steimel e.V. — Stylesheet
   Farben & Schriften nach Original-Design, modernisiert.
   ============================================================ */

:root {
  --main: #FAD021;          /* Tennisball-Gelb */
  --main-dark: #E3B900;
  --second: #AC5B3D;        /* Sandplatz-Terrakotta */
  --second-dark: #8F4A31;
  --dark: #10181A;
  --dark-2: #162124;
  --dark-3: #1E2C30;
  --light: #F2F7F3;
  --white: #FFFFFF;
  --text: #263336;
  --text-muted: #5C6B6F;
  --border: #E2EAE4;
  --green: #82B452;
  --red: #F5392B;
  --font-head: 'Kanit', 'Arial Narrow', sans-serif;
  --font-body: 'Mulish', 'Helvetica Neue', sans-serif;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(16, 24, 26, .07);
  --shadow-md: 0 10px 34px rgba(16, 24, 26, .12);
  --shadow-lg: 0 22px 60px rgba(16, 24, 26, .22);
  --wrap: 1200px;
  --nav-h: 78px;
  --ease: cubic-bezier(.33, 1, .68, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--second); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--second-dark); }
ul, ol { padding-left: 1.3em; }
:focus-visible { outline: 3px solid var(--main); outline-offset: 2px; border-radius: 4px; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: -.5px;
  line-height: 1.15;
  color: var(--dark);
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section.tight { padding: 72px 0; }
.section.alt { background: var(--light); }

/* Überschriften-Muster: gelbe Overline + große Kanit-Headline */
.sec-head { max-width: 720px; margin-bottom: 52px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.overline {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 14px;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--second);
  margin-bottom: 14px;
}
.overline::before { content: ""; width: 34px; height: 3px; background: var(--main); border-radius: 2px; }
.sec-head.center .overline::after { content: ""; width: 34px; height: 3px; background: var(--main); border-radius: 2px; }
.sec-head h2 { font-size: clamp(30px, 4.4vw, 44px); }
.sec-head p { margin-top: 14px; color: var(--text-muted); font-size: 17px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 16px;
  letter-spacing: .4px; text-transform: uppercase;
  padding: 15px 32px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; min-height: 48px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s, border-color .2s;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn-primary { background: var(--main); color: var(--dark); box-shadow: 0 8px 24px rgba(250, 208, 33, .35); }
.btn-primary:hover { background: var(--main-dark); color: var(--dark); box-shadow: 0 12px 30px rgba(250, 208, 33, .45); }
.btn-outline { border-color: rgba(255,255,255,.75); color: var(--white); background: rgba(255,255,255,.06); backdrop-filter: blur(4px); }
.btn-outline:hover { background: var(--white); color: var(--dark); border-color: var(--white); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark-3); color: var(--main); }
.btn-clay { background: var(--second); color: var(--white); }
.btn-clay:hover { background: var(--second-dark); color: var(--white); }

/* ---------- Navigation (Gelb wie das Original) ---------- */
.site-nav {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: var(--main);
  transition: box-shadow .3s var(--ease);
}
.site-nav.solid {
  box-shadow: 0 4px 24px rgba(16, 24, 26, .22);
}
.site-nav :focus-visible { outline-color: var(--dark); }
.site-nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 54px; width: auto; transition: height .3s var(--ease); }
.site-nav.solid .brand img { height: 46px; }
.brand-name { display: none; }

.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; padding: 0; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-weight: 500; font-size: 15px;
  letter-spacing: .6px; text-transform: uppercase;
  color: var(--dark); padding: 10px 13px; border-radius: 8px;
  position: relative; white-space: nowrap;
}
.nav-menu > li > a::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px;
  height: 2px; background: var(--dark); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.nav-menu > li > a:hover, .nav-menu > li > a[aria-current="page"] { color: var(--second-dark); }
.nav-menu > li > a:hover::after, .nav-menu > li > a[aria-current="page"]::after { transform: scaleX(1); }
.nav-menu .caret { width: 13px; height: 13px; transition: transform .25s var(--ease); }
.nav-menu li.open > a .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 10px); left: 8px; min-width: 230px;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 10px; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.nav-menu li:hover > .dropdown, .nav-menu li.open > .dropdown, .nav-menu li:focus-within > .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-menu > li:last-child .dropdown { left: auto; right: 8px; }
.dropdown a {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 500; font-size: 14.5px;
  letter-spacing: .4px; color: var(--dark);
  padding: 11px 14px; border-radius: 9px;
}
.dropdown a:hover { background: var(--main); color: var(--dark); }
.dropdown svg { width: 15px; height: 15px; color: var(--second); flex: none; }
.dropdown a:hover svg { color: var(--dark); }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 48px; height: 48px; border-radius: 10px;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 26px; height: 2.6px; border-radius: 2px;
  background: var(--dark); position: relative; transition: all .3s var(--ease);
}
.nav-toggle span::before { position: absolute; top: -8px; }
.nav-toggle span::after { position: absolute; top: 8px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); background: var(--dark); }
body.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); background: var(--dark); }

/* ---------- Hero (Startseite) ---------- */
.hero {
  position: relative; min-height: 100svh; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  background: var(--dark);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; animation: kenburns 11s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,24,26,.62) 0%, rgba(16,24,26,.38) 45%, rgba(16,24,26,.82) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 140px 0 110px; max-width: 780px; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--main);
  margin-bottom: 18px;
}
.hero-kicker svg { width: 20px; height: 20px; }
.hero h1 {
  font-size: clamp(42px, 7.2vw, 82px); font-weight: 700; color: var(--white);
  line-height: 1.04; text-wrap: balance;
}
.hero h1 .accent { color: var(--main); }
.hero p.lead { margin: 22px 0 34px; font-size: clamp(17px, 2vw, 20px); color: rgba(255,255,255,.88); max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,.8); display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-family: var(--font-head);
}
.hero-scroll svg { width: 22px; height: 22px; animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0);} 50% { transform: translateY(7px);} }

/* ---------- Unterseiten-Header ---------- */
.page-header {
  position: relative; padding: calc(var(--nav-h) + 92px) 0 76px;
  background: var(--dark);
  background-size: cover; background-position: center 30%;
  overflow: hidden;
}
.page-header::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(16,24,26,.9) 12%, rgba(16,24,26,.55) 60%, rgba(172,91,61,.35) 100%);
}
.page-header .wrap { position: relative; z-index: 2; }
.page-header h1 { color: var(--white); font-size: clamp(34px, 5.4vw, 56px); font-weight: 700; }
.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 12px;
  font-family: var(--font-head); font-size: 13.5px; letter-spacing: 1.4px; text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.breadcrumb a { color: var(--main); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb svg { width: 13px; height: 13px; opacity: .7; }

/* ---------- Feature-Sektion (Startseite) ---------- */
.features-grid {
  display: grid; grid-template-columns: 1fr 1.05fr 1fr; gap: 40px; align-items: center;
}
.features-col { display: flex; flex-direction: column; gap: 34px; }
.feature { display: flex; gap: 18px; align-items: flex-start; }
.features-col.right .feature { flex-direction: row-reverse; text-align: right; }
.feature-icon {
  flex: none; width: 62px; height: 62px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--dark); color: var(--main);
  box-shadow: 0 6px 18px rgba(16,24,26,.18);
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.feature:hover .feature-icon { transform: translateY(-4px) rotate(-6deg); background: var(--main); color: var(--dark); }
.feature-icon svg { width: 28px; height: 28px; }
.feature h3 { font-size: 19px; margin-bottom: 5px; }
.feature p { color: var(--text-muted); font-size: 15px; line-height: 1.55; }
.features-center { position: relative; }
.features-center img {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  aspect-ratio: 3 / 3.6; object-fit: cover; width: 100%;
}
.features-center::before {
  content: ""; position: absolute; inset: 18px -18px -18px 18px;
  border-radius: var(--radius-lg); background: var(--main); z-index: -1; opacity: .9;
}

/* ---------- Stats-Band ---------- */
.stats {
  position: relative; padding: 100px 0; background-color: var(--dark);
  background-size: cover; background-position: center;
}
@media (min-width: 1024px) { .stats { background-attachment: fixed; } }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; text-align: center; }
.stat .num {
  font-family: var(--font-head); font-weight: 700; font-size: clamp(46px, 6vw, 68px);
  color: var(--main); line-height: 1; font-variant-numeric: tabular-nums;
}
.stat .num .suffix { font-size: .6em; }
.stat .label {
  margin-top: 8px; font-family: var(--font-head); font-weight: 500;
  letter-spacing: 1.6px; text-transform: uppercase; font-size: 15px; color: rgba(255,255,255,.9);
}

/* ---------- Team (Vorstand) ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.person {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.person:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.person .photo { aspect-ratio: 3 / 3.2; overflow: hidden; background: var(--light); }
.person .photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; transition: transform .4s var(--ease); }
.person:hover .photo img { transform: scale(1.05); }
.person .info { padding: 18px 20px 20px; border-top: 4px solid var(--main); }
.person h3 { font-size: 19px; }
.person .role {
  font-family: var(--font-head); font-size: 13px; font-weight: 500;
  letter-spacing: 1.4px; text-transform: uppercase; color: var(--second); margin-top: 3px;
}

/* ---------- Preise ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  position: relative; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 34px 28px 30px;
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.price-card.featured { background: var(--dark); border-color: var(--dark); box-shadow: var(--shadow-md); }
.price-card.featured h3, .price-card.featured .amount { color: var(--white); }
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--main); color: var(--dark);
  font-family: var(--font-head); font-weight: 600; font-size: 12.5px;
  letter-spacing: 1.6px; text-transform: uppercase;
  padding: 6px 18px; border-radius: 999px; white-space: nowrap;
}
.price-card h3 { font-size: 18.5px; min-height: 48px; display: flex; align-items: center; }
.price-card .amount { font-family: var(--font-head); font-weight: 700; font-size: 52px; color: var(--dark); line-height: 1; margin: 16px 0 4px; }
.price-card .amount .cur { font-size: .5em; color: var(--second); vertical-align: super; margin-right: 3px; }
.price-card .per { font-size: 13.5px; color: var(--text-muted); margin-bottom: 20px; }
.price-card.featured .per { color: rgba(255,255,255,.65); }
.price-card ul { list-style: none; padding: 0; margin: 0 0 26px; flex: 1; }
.price-card li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 8px 0; font-size: 15px; border-bottom: 1px dashed var(--border);
}
.price-card.featured li { border-color: rgba(255,255,255,.14); color: rgba(255,255,255,.9); }
.price-card li svg { width: 18px; height: 18px; flex: none; color: var(--green); margin-top: 3px; }
.price-card .btn { width: 100%; }

/* ---------- CTA-Band ---------- */
.cta-band {
  position: relative; padding: 110px 0; text-align: center; background-color: var(--dark);
  background-size: cover; background-position: center;
}
@media (min-width: 1024px) { .cta-band { background-attachment: fixed; } }
.cta-band h2 { color: var(--white); font-size: clamp(32px, 5vw, 52px); font-weight: 700; }
.cta-band h2 .accent { color: var(--main); }
.cta-band p { color: rgba(255,255,255,.85); max-width: 620px; margin: 16px auto 34px; font-size: 17px; }

/* ---------- News / Aktuelles ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.news-card .thumb { position: relative; aspect-ratio: 16 / 10.5; overflow: hidden; background: var(--dark-2); }
.news-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.news-card:hover .thumb img { transform: scale(1.06); }
.news-date {
  position: absolute; top: 14px; left: 14px;
  background: var(--main); color: var(--dark);
  font-family: var(--font-head); font-weight: 600; font-size: 12.5px;
  letter-spacing: .8px; text-transform: uppercase;
  padding: 6px 13px; border-radius: 999px; box-shadow: 0 4px 14px rgba(0,0,0,.25);
}
.news-card .body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.news-card h3 { font-size: 20px; line-height: 1.25; }
.news-card h3 a { color: var(--dark); }
.news-card h3 a:hover { color: var(--second); }
.news-card p { color: var(--text-muted); font-size: 15px; margin: 10px 0 16px; flex: 1; }
.read-more {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-weight: 600; font-size: 14px;
  letter-spacing: 1px; text-transform: uppercase; color: var(--second);
}
.read-more svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.read-more:hover svg { transform: translateX(4px); }

/* Artikel-Seite */
.article { max-width: 800px; margin: 0 auto; }
.article-hero { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 36px; }
.article-hero img { width: 100%; max-height: 520px; object-fit: cover; }
.article-body { font-size: 17px; }
.article-body p { margin-bottom: 1.2em; }
.article-body img { border-radius: var(--radius); margin: 1.4em auto; box-shadow: var(--shadow-sm); max-height: 760px; width: auto; max-width: 100%; }
.article-body figure { margin: 1.6em 0; text-align: center; }
.article-body figcaption { font-size: 14px; color: var(--text-muted); margin-top: -0.6em; }
.article-body h2, .article-body h3 { margin: 1.4em 0 .5em; }
.article-body ul, .article-body ol { margin-bottom: 1.2em; }
.article-nav { display: flex; justify-content: space-between; gap: 16px; margin-top: 48px; flex-wrap: wrap; }

/* ---------- Galerie ---------- */
.album-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.album-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4 / 3; display: block; background: var(--dark-2);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.album-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.album-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.album-card:hover img { transform: scale(1.07); }
.album-card .meta {
  position: absolute; inset: auto 0 0 0; padding: 44px 20px 18px;
  background: linear-gradient(180deg, transparent, rgba(16,24,26,.88));
  display: flex; align-items: flex-end; justify-content: space-between; gap: 10px;
}
.album-card .meta h3 { color: var(--white); font-size: 19px; font-weight: 600; }
.album-count {
  flex: none; background: var(--main); color: var(--dark);
  font-family: var(--font-head); font-weight: 600; font-size: 12.5px;
  padding: 4px 12px; border-radius: 999px; letter-spacing: .6px;
}
.photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.photo-grid a {
  display: block; border-radius: 10px; overflow: hidden; aspect-ratio: 4 / 3;
  background: var(--light); cursor: zoom-in;
}
.photo-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s var(--ease), opacity .35s; }
.photo-grid a:hover img { transform: scale(1.06); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000; display: none;
  align-items: center; justify-content: center;
  background: rgba(10, 14, 15, .94); backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(92vw, 1400px); max-height: 84vh; border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0,0,0,.6);
}
.lb-btn {
  position: absolute; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  color: var(--white); width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background .2s, color .2s;
}
.lb-btn:hover { background: var(--main); color: var(--dark); border-color: var(--main); }
.lb-btn svg { width: 24px; height: 24px; }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }
.lb-counter {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.85); font-family: var(--font-head); letter-spacing: 1.6px; font-size: 14px;
}

/* ---------- Termine ---------- */
.event-list { display: grid; gap: 18px; max-width: 860px; margin: 0 auto; }
.event {
  display: flex; gap: 24px; align-items: center;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 22px 28px; box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.event:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.event-date {
  flex: none; width: 86px; text-align: center;
  background: var(--dark); color: var(--white); border-radius: var(--radius);
  padding: 12px 8px; font-family: var(--font-head);
}
.event-date .d { font-size: 30px; font-weight: 700; line-height: 1; color: var(--main); }
.event-date .m { font-size: 13px; letter-spacing: 1.6px; text-transform: uppercase; margin-top: 3px; }
.event-date .y { font-size: 11.5px; opacity: .65; }
.event-info { flex: 1; }
.event-info h3 { font-size: 20px; }
.event-meta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 6px; color: var(--text-muted); font-size: 14.5px; }
.event-meta span { display: inline-flex; align-items: center; gap: 6px; }
.event-meta svg { width: 15px; height: 15px; color: var(--second); }
.event.past { opacity: .55; }
.event.past:hover { transform: none; }
.event-tag {
  flex: none; font-family: var(--font-head); font-weight: 600; font-size: 12px;
  letter-spacing: 1.4px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(130, 180, 82, .14); color: #4E7A28;
}
.event.past .event-tag { background: var(--light); color: var(--text-muted); }
.event-tag.live { background: rgba(250, 208, 33, .3); color: #7A6410; }

/* Zweispalter (Termine-Speisen, Vereinshaus etc.) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split .img-frame { position: relative; }
.split .img-frame img {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
}
.split .img-frame::before {
  content: ""; position: absolute; inset: 20px -20px -20px 20px;
  border-radius: var(--radius-lg); background: var(--second); opacity: .85; z-index: -1;
}
.split .img-frame.yellow::before { background: var(--main); }

/* ---------- Checkliste ---------- */
.check-list { list-style: none; padding: 0; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; }
.check-list svg { width: 21px; height: 21px; flex: none; color: var(--green); margin-top: 2px; }

/* ---------- Mannschaften ---------- */
.teams-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card {
  border-radius: var(--radius-lg); overflow: hidden; background: var(--white);
  box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-card .photo { aspect-ratio: 4 / 3; overflow: hidden; background: var(--dark-2); position: relative; }
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.team-card:hover .photo img { transform: scale(1.05); }
.team-card .photo .placeholder {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3)); color: var(--main);
}
.team-card .photo .placeholder svg { width: 64px; height: 64px; opacity: .8; }
.team-card .label {
  padding: 18px 22px; border-top: 4px solid var(--main);
  font-family: var(--font-head); font-weight: 600; font-size: 18px; color: var(--dark);
}

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 64px; }
.contact-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 24px; text-align: center;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.contact-card .ico {
  width: 58px; height: 58px; border-radius: 50%; margin: 0 auto 16px;
  background: var(--dark); color: var(--main);
  display: flex; align-items: center; justify-content: center;
}
.contact-card .ico svg { width: 26px; height: 26px; }
.contact-card h3 { font-size: 17px; margin-bottom: 6px; }
.contact-card p { font-size: 15px; color: var(--text-muted); line-height: 1.55; }
.contact-card a { font-weight: 600; }

.form-card {
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  padding: 44px; max-width: 760px; margin: 0 auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-family: var(--font-head); font-weight: 500; font-size: 14px; letter-spacing: .6px; text-transform: uppercase; color: var(--dark); }
.form-field label .req { color: var(--red); }
.form-field input, .form-field textarea {
  font-family: var(--font-body); font-size: 16px; color: var(--text);
  border: 1.5px solid var(--border); border-radius: 10px;
  padding: 13px 16px; background: var(--light);
  transition: border-color .2s, background .2s, box-shadow .2s;
  width: 100%;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none; border-color: var(--main); background: var(--white);
  box-shadow: 0 0 0 4px rgba(250, 208, 33, .25);
}
.form-check { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--text-muted); }
.form-check input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--second); flex: none; }
.form-note { font-size: 13.5px; color: var(--text-muted); margin-top: 14px; }
.hp-feld { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }
.form-status { display: none; padding: 13px 16px; border-radius: 10px; font-size: 15px; }
.form-status.ok { display: block; background: rgba(130, 180, 82, .15); color: #3E6420; }
.form-status.err { display: block; background: rgba(245, 57, 43, .1); color: #A8261C; }

/* ---------- Downloads ---------- */
.dl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
.dl-card {
  display: flex; gap: 20px; align-items: center;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 26px 28px; transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.dl-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.dl-card .ico {
  flex: none; width: 60px; height: 60px; border-radius: var(--radius);
  background: rgba(245, 57, 43, .1); color: var(--red);
  display: flex; align-items: center; justify-content: center;
}
.dl-card .ico svg { width: 30px; height: 30px; }
.dl-card h3 { font-size: 18px; }
.dl-card p { font-size: 14px; color: var(--text-muted); margin: 3px 0 10px; }

/* ---------- Timeline (Unser Verein) ---------- */
.timeline { position: relative; max-width: 900px; margin: 0 auto; padding: 10px 0; }
.timeline::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px; background: linear-gradient(var(--main), var(--second)); border-radius: 2px;
  transform: translateX(-50%);
}
.tl-item { position: relative; width: 50%; padding: 0 44px 44px 0; }
.tl-item:nth-child(even) { margin-left: 50%; padding: 0 0 44px 44px; }
.tl-item::before {
  content: ""; position: absolute; top: 6px; right: -9px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--main); border: 4px solid var(--white);
  box-shadow: 0 0 0 3px var(--main);
}
.tl-item:nth-child(even)::before { right: auto; left: -9px; }
.tl-item .year {
  font-family: var(--font-head); font-weight: 700; font-size: 26px; color: var(--second);
}
.tl-item .card {
  margin-top: 8px; background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 18px 22px; box-shadow: var(--shadow-sm);
  font-size: 15.5px;
}
.tl-item:nth-child(odd) { text-align: right; }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: rgba(255,255,255,.8); margin-top: 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding: 72px 0 56px; }
.footer h4 {
  color: var(--white); font-size: 17px; letter-spacing: 1.4px; text-transform: uppercase;
  margin-bottom: 20px; position: relative; padding-bottom: 12px;
}
.footer h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 34px; height: 3px; background: var(--main); border-radius: 2px; }
.footer-brand img { height: 84px; margin-bottom: 18px; }
.footer-brand p { font-size: 14.5px; line-height: 1.7; max-width: 320px; }
.footer ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.footer a { color: rgba(255,255,255,.8); }
.footer a:hover { color: var(--main); }
.footer li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; }
.footer li svg { width: 17px; height: 17px; flex: none; color: var(--main); margin-top: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0;
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between;
  font-size: 13.5px; color: rgba(255,255,255,.55);
}
.footer-bottom a { color: rgba(255,255,255,.7); margin-left: 18px; }
.footer-bottom a:first-child { margin-left: 0; }

/* ---------- Live-Beiträge ---------- */
.live-card { cursor: pointer; }
.live-thumb-leer {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
}
.live-modal {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10, 14, 15, .9); backdrop-filter: blur(6px);
  padding: 24px;
}
.live-modal-card {
  position: relative; background: var(--white); border-radius: var(--radius-lg);
  max-width: 720px; width: 100%; max-height: 88vh; overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.live-modal-card > img { width: 100%; max-height: 55vh; object-fit: contain; background: var(--dark); border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.live-modal-body { padding: 28px 32px 34px; }
.live-modal-body h2 { font-size: 26px; margin-bottom: 12px; }
.live-modal-body .lm-text { white-space: pre-wrap; font-size: 16.5px; }
.lm-close { position: absolute; top: 14px; right: 14px; background: rgba(16,24,26,.55); border: 0; z-index: 2; }

/* ---------- Scroll-Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- To-Top ---------- */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 900;
  width: 50px; height: 50px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--main); color: var(--dark); box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: opacity .25s, transform .25s, visibility .25s, background .2s;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--dark); color: var(--main); }
.to-top svg { width: 22px; height: 22px; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  .section { padding: 72px 0; }
  .nav-menu, .site-nav .caret { }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: rgba(16, 24, 26, .98); backdrop-filter: blur(14px);
    flex-direction: column; align-items: stretch; gap: 2px;
    padding: 22px 24px 40px; overflow-y: auto;
    transform: translateX(100%); transition: transform .32s var(--ease);
  }
  body.nav-open .nav-menu { transform: none; }
  body.nav-open { overflow: hidden; }
  .nav-menu > li > a { font-size: 19px; padding: 14px 10px; justify-content: space-between; color: rgba(255,255,255,.92); }
  .nav-menu > li > a:hover, .nav-menu > li > a[aria-current="page"] { color: var(--main); }
  .nav-menu > li > a::after { background: var(--main); }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: transparent; box-shadow: none; padding: 0 0 6px 18px;
    display: none; min-width: 0;
  }
  .nav-menu li.open > .dropdown { display: block; }
  .dropdown a { color: rgba(255,255,255,.85); font-size: 16px; }
  .dropdown a:hover { background: rgba(255,255,255,.06); color: var(--main); }
  .features-grid { grid-template-columns: 1fr; gap: 44px; }
  .features-center { order: -1; max-width: 480px; margin: 0 auto; }
  .features-col.right .feature { flex-direction: row; text-align: left; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid, .album-grid, .teams-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .split .img-frame { max-width: 560px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .timeline::before { left: 10px; }
  .tl-item, .tl-item:nth-child(even) { width: 100%; margin: 0; padding: 0 0 38px 44px; text-align: left; }
  .tl-item::before, .tl-item:nth-child(even)::before { left: 2px; right: auto; }
  .tl-item:nth-child(odd) { text-align: left; }
}

@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .wrap { padding: 0 18px; }
  .news-grid, .album-grid, .teams-grid, .pricing-grid, .contact-grid, .dl-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { gap: 30px 16px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 30px 22px; }
  .event { flex-wrap: wrap; padding: 20px; gap: 16px; }
  .footer-top { grid-template-columns: 1fr; gap: 38px; }
  .hero-actions .btn { width: 100%; }
  .brand img { height: 46px; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-slide.active { animation: none; transform: none; }
  .reveal { opacity: 1; transform: none; }
  .stats, .cta-band { background-attachment: scroll; }
}

/* ---------- Print ---------- */
@media print {
  .site-nav, .to-top, .hero-scroll, .footer { display: none; }
}
