/* ═══════════════════════════════════════════════════════════
   tus-master.css – TuS Lendringsen 1894 e.V.
   Design: Professional Sports Club · Dark · #c01818 Accent
   Font: Barlow Condensed (Display) + Barlow (Body)
═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800;900&family=Barlow:wght@400;500;600;700&display=swap');

:root {
  --red:           #b81616;
  --red-dark:      #8a0000;
  --red-light:     #d42020;
  --bg:            #0a0d10;
  --bg-1:          #0f1317;
  --bg-2:          #141a20;
  --bg-3:          #1a2028;
  --border:        rgba(255,255,255,0.08);
  --border-red:    rgba(192,24,24,0.3);
  --text:          #f0f2f5;
  --text-2:        rgba(240,242,245,0.65);
  --text-3:        rgba(240,242,245,0.38);
  --success:       #22c55e;
  --r:             4px;
  --r-lg:          8px;
  --navbar-h:      64px;
  --topbar-h:      36px;
  --tr:            0.18s ease;
  --container:     1300px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow', -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--red); text-decoration: none; transition: color var(--tr); }
a:hover { color: var(--red-light); }
img { max-width: 100%; display: block; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }

/* STICKY HEADER WRAPPER (Topbar + Navbar together) */
#navbar-container {
  position: sticky;
  top: 0;
  z-index: 300;
}

/* TOPBAR */
.topbar {
  background: var(--bg-1);
  height: var(--topbar-h);
  display: flex; align-items: center;
  border-bottom: 1px solid var(--border);
}
.topbar-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.topbar-left {
  display: flex; align-items: center; gap: 20px;
  font-size: 12px; color: var(--text-2);
}
.topbar-left a { color: var(--text-2); }
.topbar-left a:hover { color: var(--text); }
.topbar-sep { color: var(--border); }
.topbar-social { display: flex; align-items: center; gap: 10px; }
.topbar-social a { color: var(--text-2); font-size: 13px; transition: color var(--tr); }
.topbar-social a:hover { color: var(--red); }

/* NAVBAR */
.navbar {
  background: var(--red);
  height: var(--navbar-h);
  display: flex; align-items: center;
  position: relative;
  border-bottom: 3px solid var(--red-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px;
  gap: 16px;
}
.navbar-brand {
  display: flex; align-items: center; gap: 12px;
  color: #fff !important; text-decoration: none; flex-shrink: 0;
}
.navbar-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.navbar-brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 900; letter-spacing: 0.04em; color: #fff; text-transform: uppercase;
}
.navbar-brand-sub { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); text-transform: uppercase; }
.navbar-logo { height: 42px; width: auto; flex-shrink: 0; }

.navbar-center { display: flex; align-items: center; flex: 1; justify-content: center; }
.navbar-links { display: flex; align-items: center; list-style: none; }
.navbar-links > li > a,
.navbar-links > li > .nav-ddtoggle {
  display: flex; align-items: center; gap: 5px;
  color: rgba(255,255,255,0.72) !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 0 14px; height: var(--navbar-h);
  cursor: pointer; background: none; border: none;
  text-decoration: none; white-space: nowrap;
  transition: color var(--tr), background var(--tr);
  position: relative;
}
.navbar-links > li > a::after,
.navbar-links > li > .nav-ddtoggle::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 3px; background: rgba(255,255,255,0.8);
  transform: scaleX(0); transition: transform var(--tr);
}
.navbar-links > li > a:hover,
.navbar-links > li > .nav-ddtoggle:hover { color: #fff !important; background: rgba(255,255,255,0.04); }
.navbar-links > li > a:hover::after,
.navbar-links > li > .nav-ddtoggle:hover::after,
.nav-dd.open > .nav-ddtoggle::after { transform: scaleX(1); }
.navbar-links > li > a.is-active,
.nav-dd.open > .nav-ddtoggle { color: #fff !important; }

.nav-dd { position: relative; align-self: stretch; display: flex; align-items: center; }
.nav-ddtoggle .chevron { font-size: 9px; opacity: .6; transition: transform var(--tr); margin-left: 2px; }
.nav-dd.open .chevron { transform: rotate(180deg); }
.nav-ddmenu {
  display: none;
  position: absolute; top: calc(100% + 3px); left: 0;
  min-width: 220px; background: var(--bg-2);
  border: 1px solid var(--border); border-top: 2px solid var(--red);
  box-shadow: 0 12px 40px rgba(0,0,0,0.7); z-index: 400;
  animation: fadeDown .15s ease;
}
.nav-dd.open .nav-ddmenu { display: block; }
.nav-ddmenu a {
  display: flex; align-items: center;
  padding: 11px 18px; font-size: 13.5px; font-weight: 500;
  color: var(--text-2) !important; border-bottom: 1px solid var(--border);
  transition: background var(--tr), color var(--tr), padding-left var(--tr);
}
.nav-ddmenu a:last-child { border-bottom: none; }
.nav-ddmenu a:hover { background: rgba(192,24,24,0.1); color: #fff !important; padding-left: 24px; }
/* show icons inside dropdown menus */
.nav-ddmenu a i { display: inline-block; }

.navbar-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.navbar-cta {
  background: #fff; color: var(--red) !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 7px 12px; border: none; cursor: pointer;
  transition: background var(--tr); text-decoration: none;
  display: inline-flex; align-items: center; gap: 5px;
  white-space: nowrap;
}
.navbar-cta:hover { background: #ffe0e0; color: var(--red-dark) !important; }
.navbar-cta i { font-size: 10px; }

.navbar-toggler {
  display: none; background: rgba(255,255,255,0.08); border: 1px solid var(--border);
  color: #fff; padding: 8px 12px; cursor: pointer; font-size: 18px; line-height: 1;
  align-items: center;
}
.navbar-collapse { display: flex; align-items: center; flex: 1; }

/* MOBILE NAV */
@media (max-width: 1120px) {
  .navbar-toggler { display: flex; }
  .navbar-center { display: none; }
  .navbar-collapse {
    display: none; position: fixed;
    top: var(--navbar-h); left: 0; right: 0;
    background: var(--bg-1); border-bottom: 2px solid var(--border-red);
    flex-direction: column; align-items: stretch;
    max-height: calc(100vh - var(--navbar-h));
    overflow-y: auto; z-index: 199;
    box-shadow: 0 12px 40px rgba(0,0,0,0.7);
  }
  .navbar-collapse.open { display: flex; animation: slideDown .2s ease; }
  .navbar-center { display: flex; flex-direction: column; width: 100%; justify-content: flex-start; }
  .navbar-links { flex-direction: column; width: 100%; border-bottom: 1px solid var(--border); }
  .navbar-links > li { width: 100%; border-bottom: 1px solid var(--border); }
  .navbar-links > li:last-child { border-bottom: none; }
  .navbar-links > li > a,
  .navbar-links > li > .nav-ddtoggle {
    width: 100%; height: auto; padding: 15px 20px; font-size: 16px;
    justify-content: space-between; color: var(--text) !important;
  }
  .navbar-links > li > a::after,
  .navbar-links > li > .nav-ddtoggle::after { display: none; }
  .navbar-links > li > a:hover,
  .navbar-links > li > .nav-ddtoggle:hover { background: rgba(192,24,24,0.08); color: #fff !important; }
  .nav-ddmenu {
    position: static; box-shadow: none; border: none; border-top: 1px solid var(--border);
    background: var(--bg); animation: none;
  }
  .nav-ddmenu a { padding: 12px 20px 12px 32px; font-size: 14px; border-bottom: 1px solid var(--border); }
  .nav-ddmenu a:hover { padding-left: 38px; }
  .navbar-mobile-bottom {
    padding: 14px 20px; display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid var(--border); gap: 12px;
  }
  .navbar-mobile-bottom .topbar-social { gap: 12px; }
  .navbar-mobile-bottom .topbar-social a { font-size: 16px; color: var(--text-2); }
  /* Mobile bottom CTA – white style */
  .navbar-mobile-cta {
    background: #fff !important; color: var(--red-dark) !important;
    border: none; font-size: 13px; padding: 10px 18px; flex: none;
  }
  .navbar-mobile-cta:hover { background: #ffe0e0 !important; }
  /* Hide the CTA in navbar-right on mobile – only show it in the mobile menu */
  .navbar-right .navbar-cta { display: none; }
}
@media (max-width: 480px) {
  .navbar-inner { padding: 0 12px; gap: 8px; }
  .navbar-logo { height: 30px; }
  .navbar-brand-name { font-size: 14px; }
  .navbar-brand-sub { font-size: 8.5px; letter-spacing: .06em; }
  /* CTA still in mobile menu bottom - hide it from navbar-right on very small screens */
  .navbar-right .navbar-cta { display: none; }
}
@media (min-width: 1121px) { .navbar-mobile-bottom { display: none; } }

/* PAGE HERO */
.page-hero {
  position: relative; min-height: 220px;
  display: flex; align-items: center; overflow: hidden;
  border-bottom: 3px solid var(--red);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; z-index: 0;
}
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,13,16,0.95) 0%, rgba(10,13,16,0.6) 60%, rgba(192,24,24,0.18) 100%);
}
.page-hero-content {
  position: relative; z-index: 1;
  padding: 48px 24px; max-width: var(--container); margin: 0 auto; width: 100%;
}
.page-hero-eyebrow {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--red-light); margin-bottom: 10px;
  font-family: 'Barlow Condensed', sans-serif;
}
.page-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 900;
  line-height: 1; color: var(--text); margin-bottom: 12px;
  letter-spacing: 0.02em; text-transform: uppercase;
}
.page-hero-sub { font-size: 1rem; color: var(--text-2); max-width: 500px; line-height: 1.6; }

/* PAGE CONTAINER */
.page-container { max-width: var(--container); margin: 0 auto; padding: 40px 24px 80px; }

/* SECTION HEADING */
.sec-head {
  display: flex; align-items: flex-end; gap: 16px;
  margin-bottom: 28px; border-bottom: 2px solid var(--border);
  padding-bottom: 14px;
}
.sec-head-label { flex: 1; }
.sec-head-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--red); margin-bottom: 4px;
  font-family: 'Barlow Condensed', sans-serif;
}
.sec-head-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem; font-weight: 800; color: var(--text);
  line-height: 1; text-transform: uppercase; letter-spacing: 0.03em;
}
.sec-head-icon { display: none; }

/* CARDS – Generic */
.card {
  background: var(--bg-2); border: 1px solid var(--border);
  overflow: hidden; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.5); border-color: var(--border-red); }
.card-body { padding: 20px; }

/* News Card */
.news-card {
  background: var(--bg-2); border: 1px solid var(--border);
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.news-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.5); border-color: var(--border-red); }
.news-card-img {
  aspect-ratio: 16/9; background: var(--bg-3);
  background-size: cover; background-position: center; position: relative;
}
.news-card-tag {
  position: absolute; top: 0; left: 0;
  background: var(--red); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 10px; font-family: 'Barlow Condensed', sans-serif;
}
.news-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.news-card-date { font-size: 11px; color: var(--text-3); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .08em; }
.news-card-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.4; }
.news-card-excerpt { font-size: .88rem; color: var(--text-2); line-height: 1.6; flex: 1; }
.news-card-link {
  display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 700;
  color: var(--red); margin-top: 14px; text-transform: uppercase; letter-spacing: .05em;
  transition: gap .15s, color .15s; font-family: 'Barlow Condensed', sans-serif;
}
.news-card-link:hover { gap: 10px; color: var(--red-light); }

/* Sport Card */
.sport-card {
  background: var(--bg-2); border: 1px solid var(--border);
  display: flex; flex-direction: column; text-decoration: none;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative; overflow: hidden;
}
.sport-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--red);
  transform: scaleY(0); transform-origin: bottom; transition: transform .25s ease;
}
.sport-card:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,0.5); border-color: var(--border-red); }
.sport-card:hover::before { transform: scaleY(1); }
.sport-card-img {
  height: 150px; background: var(--bg-3);
  background-size: cover; background-position: center; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.sport-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,13,16,0.9) 0%, transparent 60%);
}
.sport-card-body { padding: 16px 18px; flex: 1; }
.sport-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 800; color: var(--text);
  margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.04em;
}
.sport-card-sub { font-size: .84rem; color: var(--text-2); line-height: 1.5; }
.sport-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 18px; border-top: 1px solid var(--border);
  font-size: .82rem; font-weight: 700; color: var(--red);
  font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: 0.05em;
}

/* Trainer Card */
.trainer-card {
  background: var(--bg-2); border: 1px solid var(--border);
  overflow: hidden; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.trainer-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.5); border-color: var(--border-red); }
.trainer-img {
  height: 260px; background: var(--bg-3);
  background-size: cover; background-position: center top;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.trainer-img i { font-size: 64px; color: rgba(255,255,255,0.1); }
.trainer-body { padding: 14px 16px; }
.trainer-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem; font-weight: 800; color: var(--text);
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px;
}
.trainer-badge {
  display: inline-block; background: var(--red); color: #fff;
  font-size: 10px; font-weight: 700; padding: 2px 8px;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px;
  font-family: 'Barlow Condensed', sans-serif;
}
.trainer-role { font-size: .84rem; color: var(--text-2); margin-bottom: 10px; }
.trainer-contact {
  display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--text-2);
  padding: 8px 0; border-top: 1px solid var(--border);
  text-decoration: none; transition: color var(--tr);
}
.trainer-contact:hover { color: var(--text); }
.trainer-contact i { color: var(--red); width: 14px; text-align: center; flex-shrink: 0; }

/* ══════════════════════════════════════════════════
   GRUPPE KARTE – modernes Design v3
══════════════════════════════════════════════════ */
/* Legacy (für Angebots-Seiten) */
.gruppe-card {
  background: var(--bg-2); border: 1px solid var(--border);
  padding: 20px 22px; transition: transform .2s, border-color .2s;
}
.gruppe-card:hover { transform: translateY(-2px); border-color: var(--border-red); }
.gruppe-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 800; color: var(--text);
  margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.04em;
}
.gruppe-card-badge {
  display: inline-block; font-size: 10px; font-weight: 700; padding: 2px 8px;
  background: rgba(34,197,94,0.1); color: var(--success);
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px;
}
.gruppe-card-row {
  display: flex; align-items: center; gap: 8px;
  font-size: .84rem; color: var(--text-2); padding: 6px 0; border-bottom: 1px solid var(--border);
}
.gruppe-card-row:last-child { border-bottom: none; }
.gruppe-card-row i { color: var(--red); width: 14px; text-align: center; flex-shrink: 0; }

/* ── Neue Gruppen-Kachel ── */
.gruppe-karte {
  background: var(--bg-2); border: 1px solid var(--border);
  display: flex; flex-direction: column; overflow: hidden;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  position: relative;
}
.gruppe-karte:hover {
  transform: translateY(-3px);
  border-color: rgba(184,22,22,.4);
  box-shadow: 0 12px 36px rgba(0,0,0,.5);
}
.gk-bild {
  height: 180px; background-size: cover; background-position: center;
  position: relative; flex-shrink: 0;
}
.gk-bild-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,13,16,.85));
}
.gk-bild-placeholder {
  height: 100px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0f0505, #1e0808); flex-shrink: 0;
  position: relative;
}
.gk-status-badge {
  position: absolute; bottom: 10px; left: 10px;
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(0,0,0,.65); border: 1px solid var(--sc, #22c55e);
  color: var(--sc, #22c55e); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  padding: 3px 8px; font-family: 'Barlow Condensed', sans-serif;
  backdrop-filter: blur(4px);
}
.gk-status-badge i { font-size: .65rem; }

.gk-header {
  padding: 14px 16px 10px; border-bottom: 1px solid var(--border);
}
.gk-sportart {
  font-size: 9.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--red); margin-bottom: 4px;
  font-family: 'Barlow Condensed', sans-serif;
}
.gk-title-row { display: flex; align-items: flex-start; gap: 8px; justify-content: space-between; }
.gk-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem; font-weight: 900; color: var(--text);
  text-transform: uppercase; letter-spacing: .03em; line-height: 1.15; margin: 0;
}
.gk-liga {
  flex-shrink: 0; font-size: 9px; font-weight: 800; padding: 2px 7px;
  background: rgba(34,197,94,.1); color: #86efac;
  border: 1px solid rgba(34,197,94,.25); text-transform: uppercase;
  letter-spacing: .06em; font-family: 'Barlow Condensed', sans-serif;
  white-space: nowrap; margin-top: 3px;
}
.gk-beschr {
  font-size: .78rem; color: var(--text-3); line-height: 1.55;
  margin: 6px 0 0; padding: 0;
}

/* Zeiten */
.gk-zeiten { padding: 10px 16px; border-bottom: 1px solid var(--border); }
.gk-zeiten-empty {
  padding: 10px 16px; font-size: .75rem; color: var(--text-3);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 6px;
}
.gk-zeiten-empty i { color: var(--text-3); font-size: .7rem; }
.gk-section-label {
  font-size: 9px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--text-3);
  margin-bottom: 7px; display: flex; align-items: center; gap: 5px;
  font-family: 'Barlow Condensed', sans-serif;
}
.gk-section-label i { color: var(--red); opacity: .7; font-size: .65rem; }
.gz-row {
  display: flex; align-items: center; gap: 6px;
  font-size: .8rem; padding: 4px 0;
  border-top: 1px solid rgba(255,255,255,.04);
}
.gz-row:first-of-type { border-top: none; }
.gz-tag {
  display: inline-block; min-width: 26px; text-align: center;
  background: rgba(184,22,22,.15); border: 1px solid rgba(184,22,22,.2);
  color: var(--red); font-size: 9px; font-weight: 800;
  padding: 1px 4px; text-transform: uppercase; letter-spacing: .04em;
  font-family: 'Barlow Condensed', sans-serif; flex-shrink: 0;
}
.gz-time { font-weight: 700; color: var(--text); font-size: .82rem; flex: 1; }
.gz-ort {
  display: flex; align-items: center; gap: 4px;
  font-size: .72rem; color: var(--text-3);
}
.gz-ort i { font-size: .6rem; color: var(--text-3); }

/* Trainer */
.gk-trainer-section {
  padding: 12px 16px; border-bottom: 1px solid var(--border); flex: 1;
}
.gk-trainer-list { display: flex; flex-direction: column; gap: 10px; }
.gk-trainer {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-1); border: 1px solid var(--border);
  padding: 10px 12px; position: relative; overflow: hidden;
}
.gk-trainer::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--red); opacity: .5;
}
.gk-trainer-foto {
  width: 64px; height: 64px; flex-shrink: 0;
  border: 2px solid rgba(184,22,22,.3); overflow: hidden;
  background: linear-gradient(135deg, #100505, #2a0808);
  display: flex; align-items: center; justify-content: center;
}
.gk-trainer-foto img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block;
}
.gk-trainer-initials {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem;
  font-weight: 900; color: rgba(184,22,22,.6);
}
.gk-trainer-info { min-width: 0; flex: 1; }
.gk-trainer-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 800; color: var(--text);
  text-transform: uppercase; letter-spacing: .04em; line-height: 1.2;
}
.gk-trainer-lizenz {
  font-size: .68rem; font-weight: 700; color: var(--red);
  text-transform: uppercase; letter-spacing: .07em; margin-top: 2px;
}
.gk-trainer-mail {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .7rem; color: var(--text-3); margin-top: 4px;
  text-decoration: none; transition: color .15s;
}
.gk-trainer-mail:hover { color: var(--red); }
.gk-trainer-mail i { font-size: .58rem; }

/* Footer */
.gk-footer {
  padding: 10px 16px; background: rgba(184,22,22,.04);
  border-top: 1px solid rgba(184,22,22,.12);
  display: flex; justify-content: flex-end;
  margin-top: auto;
}
.gk-probe-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, #8a0000, #b81616);
  color: #fff !important; text-decoration: none;
  font-size: 11px; font-weight: 700; padding: 6px 14px;
  text-transform: uppercase; letter-spacing: .07em;
  font-family: 'Barlow Condensed', sans-serif;
  transition: opacity .15s;
}
.gk-probe-btn:hover { opacity: .85; }
.gk-probe-btn i { font-size: .65rem; }

/* Download Card */
.download-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--bg-2); border: 1px solid var(--border);
  padding: 14px 18px; text-decoration: none; color: var(--text);
  transition: background var(--tr), border-color var(--tr), transform .2s;
}
.download-card:hover { background: rgba(192,24,24,0.05); border-color: var(--border-red); transform: translateX(4px); color: var(--text); }
.dl-icon { width: 40px; height: 40px; flex-shrink: 0; background: rgba(192,24,24,0.1); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--red); }
.dl-info { flex: 1; min-width: 0; }
.dl-name { display: block; font-size: .9rem; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.dl-meta { display: block; font-size: .78rem; color: var(--text-3); }
.dl-badge { font-size: 10px; font-weight: 700; padding: 2px 7px; background: rgba(192,24,24,0.18); color: var(--red); text-transform: uppercase; letter-spacing: .06em; flex-shrink: 0; }
.dl-arrow { color: var(--text-3); font-size: 13px; margin-left: auto; flex-shrink: 0; transition: transform .2s, color .2s; }
.download-card:hover .dl-arrow { transform: translateX(4px); color: var(--red); }

/* Stat Card */
.stat-card {
  background: var(--bg-2); border: 1px solid var(--border);
  padding: 24px; position: relative; overflow: hidden; text-align: center;
  transition: transform .2s;
}
.stat-card:hover { transform: translateY(-2px); }
.stat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); }
.stat-number { display: block; font-size: 2.8rem; font-weight: 800; color: var(--red); line-height: 1; margin-bottom: 8px; font-family: 'Barlow Condensed', sans-serif; }
.stat-label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); font-family: 'Barlow Condensed', sans-serif; }
.stat-icon { display: none; }

/* Membership Card */
.membership-card {
  background: var(--bg-2); border: 1px solid var(--border);
  padding: 28px; display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.membership-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.5); border-color: var(--border-red); }
.membership-card.featured {
  border-color: var(--red); border-top: 4px solid var(--red);
  background: linear-gradient(160deg, rgba(192,24,24,0.07) 0%, var(--bg-2) 100%);
}
.mem-badge {
  display: inline-flex; align-items: center; align-self: flex-start;
  background: var(--red); color: #fff; font-size: 10px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: 3px 10px; margin-bottom: 14px;
  font-family: 'Barlow Condensed', sans-serif;
}
.mem-price { font-size: 2.5rem; font-weight: 800; color: var(--text); line-height: 1; margin-bottom: 4px; font-family: 'Barlow Condensed', sans-serif; }
.mem-price span { font-size: 1rem; color: var(--text-2); font-weight: 500; font-family: 'Barlow', sans-serif; }
.mem-name { font-size: .95rem; font-weight: 600; color: var(--text-2); margin-bottom: 20px; }
.mem-features { list-style: none; flex: 1; }
.mem-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0; border-bottom: 1px solid var(--border);
  font-size: .88rem; color: var(--text-2);
}
.mem-features li:last-child { border-bottom: none; }
.mem-features li i { color: var(--success); width: 14px; text-align: center; flex-shrink: 0; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 10px 22px; font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  cursor: pointer; border: none; transition: all var(--tr); text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(192,24,24,0.4); color: #fff; }
.btn-secondary { background: rgba(255,255,255,0.08); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { background: rgba(255,255,255,0.14); color: var(--text); }
.btn-outline { background: transparent; color: var(--red); border: 2px solid var(--red); }
.btn-outline:hover { background: var(--red); color: #fff; }
.btn-sm { padding: 7px 14px; font-size: 12px; }
.btn-lg { padding: 13px 30px; font-size: 16px; }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* FORMS */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 700; color: var(--text-3);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px;
  font-family: 'Barlow Condensed', sans-serif;
}
.form-control {
  width: 100%; background: var(--bg-3); border: 1px solid var(--border);
  color: var(--text); padding: 10px 14px;
  font-size: 14px; font-family: 'Barlow', sans-serif;
  transition: border-color .2s, box-shadow .2s; -webkit-appearance: none;
}
.form-control:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,24,24,0.15);
  background: rgba(255,255,255,0.02);
}
.form-control::placeholder { color: var(--text-3); }
select.form-control option { background: var(--bg-2); }
textarea.form-control { resize: vertical; min-height: 110px; }

/* PROBETRAINING CTA */
.probetraining-cta {
  background: linear-gradient(135deg, var(--red-dark) 0%, #180808 100%);
  border: 1px solid var(--border-red); padding: 24px; margin-bottom: 20px;
}
.probetraining-cta h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: #fff; margin-bottom: 10px;
}
.probetraining-cta p { font-size: .88rem; color: rgba(255,255,255,0.6); line-height: 1.65; margin-bottom: 16px; }

/* TABLE */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); }
.tus-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.tus-table thead th {
  background: rgba(192,24,24,0.07); color: var(--text-3);
  text-transform: uppercase; font-size: 11px; letter-spacing: .1em;
  padding: 12px 16px; text-align: left; border-bottom: 2px solid var(--border-red); white-space: nowrap;
  font-family: 'Barlow Condensed', sans-serif;
}
.tus-table tbody tr { border-bottom: 1px solid var(--border); transition: background .15s; }
.tus-table tbody tr:last-child { border-bottom: none; }
.tus-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.tus-table tbody td { padding: 11px 16px; vertical-align: middle; }

/* TABS */
.belegung-tabs {
  display: flex; background: var(--bg-2); border: 1px solid var(--border); padding: 0; margin-bottom: 20px;
}
.belegung-tab {
  flex: 1; background: none; border: none; color: var(--text-2);
  font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 11px 16px; cursor: pointer; border-right: 1px solid var(--border); transition: all .15s;
}
.belegung-tab:last-child { border-right: none; }
.belegung-tab:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.belegung-tab.active { background: var(--red); color: #fff; }

/* SKELETON */
.cms-loading { display: flex; flex-direction: column; gap: 10px; }
.skeleton-line {
  height: 56px; border: 1px solid var(--border);
  background: linear-gradient(90deg, var(--bg-2) 25%, rgba(255,255,255,0.03) 50%, var(--bg-2) 75%);
  background-size: 400% 100%; animation: shimmer 1.5s infinite;
}
@keyframes shimmer { to { background-position: -200% 0; } }

/* FAQ */
.faq-card { background: var(--bg-2); border: 1px solid var(--border); overflow: hidden; margin-bottom: 8px; transition: border-color .2s; }
.faq-card:hover, .faq-card.open { border-color: var(--border-red); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; cursor: pointer; gap: 12px;
  font-weight: 600; font-size: .92rem; color: var(--text);
  width: 100%; background: none; border: none; text-align: left;
  transition: background .15s; user-select: none;
}
.faq-q:hover { background: rgba(255,255,255,0.02); }
.faq-q i { color: var(--red); font-size: 11px; transition: transform .25s; flex-shrink: 0; }
.faq-card.open .faq-q i { transform: rotate(180deg); }
.faq-a { display: none; padding: 14px 20px 18px; font-size: .88rem; color: var(--text-2); line-height: 1.7; border-top: 1px solid var(--border); }
.faq-card.open .faq-a { display: block; }

/* PANEL */
.panel { background: var(--bg-2); border: 1px solid var(--border); overflow: hidden; margin-bottom: 16px; }
.panel-header {
  background: rgba(192,24,24,0.05); border-bottom: 1px solid var(--border);
  padding: 12px 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  border-left: 3px solid var(--red);
}
.panel-header h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; margin: 0;
}
.panel-body { padding: 18px; }

/* ALERT */
.alert { padding: 11px 16px; font-size: 13px; border-left: 3px solid; margin-bottom: 14px; line-height: 1.55; }
.alert-info    { background: rgba(192,24,24,0.07); border-color: var(--red); color: #fca5a5; }
.alert-success { background: rgba(34,197,94,0.07); border-color: var(--success); color: #86efac; }
.alert-warning { background: rgba(245,158,11,0.07); border-color: #f59e0b; color: #fcd34d; }

/* FOOTER */
.tus-footer { background: var(--bg-1); border-top: 3px solid var(--red); margin-top: 80px; }
.footer-top { background: var(--bg); padding: 14px 0; border-bottom: 1px solid var(--border); }
.footer-top-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-top-brand { display: flex; align-items: center; gap: 12px; }
.footer-logo { height: 44px; width: auto; }
.footer-brand-text { line-height: 1.2; }
.footer-brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 900; color: #fff; text-transform: uppercase; letter-spacing: 0.04em;
}
.footer-brand-year { font-size: 11px; color: var(--text-3); font-weight: 500; letter-spacing: 0.08em; }
.footer-top-social { display: flex; align-items: center; gap: 6px; }
.footer-top-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  color: var(--text-2); font-size: 14px; transition: background var(--tr), color var(--tr), border-color var(--tr);
}
.footer-top-social a:hover { background: var(--red); border-color: var(--red); color: #fff; }

.footer-main {
  max-width: var(--container); margin: 0 auto; padding: 40px 24px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 32px;
}
.footer-desc { font-size: .88rem; color: var(--text-2); line-height: 1.75; margin-bottom: 20px; }
.footer-contact-line { display: flex; align-items: center; gap: 10px; font-size: .84rem; color: var(--text-2); margin-bottom: 8px; }
.footer-contact-line i { color: var(--red); width: 14px; text-align: center; }
.footer-contact-line a { color: var(--text-2); transition: color var(--tr); }
.footer-contact-line a:hover { color: #fff; }
.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text); margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 2px solid var(--border-red);
}
.footer-links { list-style: none; display: flex; flex-direction: column; }
.footer-links li { border-bottom: 1px solid var(--border); }
.footer-links li:last-child { border-bottom: none; }
.footer-links a {
  display: flex; align-items: center; justify-content: space-between;
  font-size: .86rem; color: var(--text-2); padding: 8px 0;
  transition: color var(--tr), padding-left var(--tr);
}
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-links a::after { content: '→'; font-size: 11px; color: var(--text-3); opacity: 0; transition: opacity var(--tr); }
.footer-links a:hover::after { opacity: 1; color: var(--red); }
.footer-trainer-hint { margin-top: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.footer-trainer-hint a { font-size: .72rem; color: rgba(255,255,255,0.14); transition: color var(--tr); }
.footer-trainer-hint a:hover { color: rgba(255,255,255,0.38); }

.footer-bottom { border-top: 1px solid var(--border); background: var(--bg); }
.footer-bottom-inner {
  max-width: var(--container); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: .78rem; color: var(--text-3);
}
.footer-bottom-inner a { color: var(--text-3); transition: color var(--tr); }
.footer-bottom-inner a:hover { color: var(--text); }
.footer-bottom-links { display: flex; gap: 20px; }

/* footer responsive - see ═══ FOOTER MAP COLUMN ═══ below */

/* SCROLL TOP */
#scrollTopBtn {
  display: none; position: fixed; bottom: 28px; left: 28px; z-index: 9000;
  width: 40px; height: 40px; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.12); cursor: pointer; font-size: 13px; box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  align-items: center; justify-content: center;
  transition: background var(--tr), transform var(--tr), color var(--tr);
  border-radius: 2px;
}
#scrollTopBtn:hover { background: var(--red); color: #fff; border-color: var(--red); transform: translateY(-2px); }

/* LEGAL */
.legal-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem; font-weight: 900; color: var(--text); margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.02em;
}
.legal-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 800; color: var(--text);
  margin: 28px 0 10px; padding-bottom: 8px; border-bottom: 2px solid var(--border-red);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.legal-content p { color: var(--text-2); line-height: 1.85; margin-bottom: 12px; font-size: .92rem; }
.legal-content a { color: var(--red); }
.legal-content strong { color: var(--text); }

/* CONTACT */
.contact-box { background: var(--bg-2); border: 1px solid var(--border); padding: 32px; }
.contact-info-item {
  display: flex; align-items: center; gap: 16px;
  background: var(--bg-3); border: 1px solid var(--border); border-left: 3px solid var(--red);
  padding: 16px 18px; margin-bottom: 10px;
}
.contact-info-icon { width: 36px; height: 36px; flex-shrink: 0; background: rgba(192,24,24,0.1); display: flex; align-items: center; justify-content: center; font-size: 15px; color: var(--red); }
.contact-info-label { font-family: 'Barlow Condensed', sans-serif; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-3); margin-bottom: 2px; }
.contact-info-val { font-size: .92rem; color: var(--text); }
.contact-info-val a { color: var(--text); }
.contact-info-val a:hover { color: var(--red); }

/* HOMEPAGE HERO */
.home-hero {
  position: relative; min-height: 580px;
  display: flex; align-items: center; overflow: hidden;
  border-bottom: 3px solid var(--red);
}
.home-hero-bg {
  position: absolute; inset: 0;
  background-color: #05080c;
  background-size: cover; background-position: center; z-index: 0;
}
.home-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,13,16,0.92) 0%, rgba(10,13,16,0.5) 60%, rgba(192,24,24,0.12) 100%);
}
.home-hero-bg::before {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 45%; z-index: 1;
  background: repeating-linear-gradient(-60deg, transparent, transparent 40px, rgba(192,24,24,0.03) 40px, rgba(192,24,24,0.03) 80px);
}
.home-hero-content {
  position: relative; z-index: 2;
  max-width: var(--container); margin: 0 auto; padding: 80px 24px; width: 100%;
}
.home-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--red-light); margin-bottom: 20px;
}
.home-hero-eyebrow::before { content: ''; display: inline-block; width: 32px; height: 2px; background: var(--red); }
.home-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 900;
  line-height: .95; color: var(--text); margin-bottom: 20px;
  max-width: 800px; text-transform: uppercase; letter-spacing: 0.02em;
}
.home-hero-title span { color: var(--red); }
.home-hero-sub { font-size: 1.05rem; color: var(--text-2); line-height: 1.7; max-width: 480px; margin-bottom: 36px; }
.home-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.home-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(192,24,24,0.1); border: 1px solid var(--border-red);
  padding: 5px 14px; font-family: 'Barlow Condensed', sans-serif;
  font-size: .82rem; font-weight: 700; color: rgba(255,255,255,0.65);
  margin-bottom: 24px; letter-spacing: 0.05em; text-transform: uppercase;
}
.home-hero-badge span { background: var(--red); color: #fff; font-size: .72rem; padding: 2px 7px; font-weight: 700; }

/* KPI row */
.kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 40px 0; border: 1px solid var(--border); }
.kpi-item {
  background: var(--bg-2); padding: 28px; position: relative; overflow: hidden;
  text-align: center; border-right: 1px solid var(--border); transition: background .2s;
}
.kpi-item:last-child { border-right: none; }
.kpi-item:hover { background: var(--bg-3); }
.kpi-item::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); }
.kpi-value { font-family: 'Barlow Condensed', sans-serif; font-size: 3rem; font-weight: 900; color: var(--red); line-height: 1; margin-bottom: 8px; }
.kpi-label { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); }
.kpi-icon { display: none; }

@media (max-width: 640px) {
  .kpi-row { grid-template-columns: 1fr 1fr; }
  .kpi-item { border-bottom: 1px solid var(--border); }
  .kpi-item:nth-child(even) { border-right: none; }
}

/* ANIMATIONS */
@keyframes fadeIn   { from { opacity:0 } to { opacity:1 } }
@keyframes fadeDown { from { opacity:0;transform:translateY(-8px) } to { opacity:1;transform:translateY(0) } }
@keyframes slideUp  { from { transform:translateY(16px);opacity:0 } to { transform:translateY(0);opacity:1 } }
@keyframes slideDown { from { transform:translateY(-8px);opacity:0 } to { transform:translateY(0);opacity:1 } }
@keyframes spin     { to { transform:rotate(360deg) } }

/* RESPONSIVE UTILS */
.d-none { display: none !important; }
@media (max-width: 768px) {
  .d-md-none { display: none !important; }
  .page-container { padding: 24px 16px 60px; }
  .page-hero-content { padding: 36px 16px; }
  .tus-footer { margin-top: 48px; }
  .home-hero-content { padding: 56px 16px; }
  .home-hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .sec-head-title { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .home-hero { min-height: 480px; }
  .btn-lg { padding: 12px 22px; font-size: 14px; }
}

/* ═══ GLOBALE ERWEITERUNGEN ═══ */

/* Hero-Schrift */
.page-hero-sub {
  font-size: 1.05rem;
}

/* Konsistente Borderlinie bei Contact-Info-Items */
.contact-info-item:nth-child(1) { border-left-color: var(--red) !important; }
.contact-info-item:nth-child(2) { border-left-color: var(--red) !important; }
.contact-info-item:nth-child(3) { border-left-color: var(--red) !important; }
.contact-info-item:nth-child(4) { border-left-color: var(--red) !important; }

/* ═══ SPONSOREN SEKTION ═══ */
.tus-sponsors {
  background: var(--bg-2); border-top: 1px solid var(--border);
  padding: 20px 0;
}
.sponsors-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.sponsors-label {
  font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-3); white-space: nowrap; flex-shrink: 0;
}
.sponsors-logos {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.sponsor-item {
  display: flex; align-items: center; text-decoration: none;
  transition: opacity .2s;
}
.sponsor-item:hover { opacity: .75; }
.sponsor-logo-placeholder {
  display: flex; align-items: center; gap: 7px;
  background: var(--bg-3); border: 1px dashed var(--border);
  padding: 10px 16px;
  font-size: 12px; color: var(--text-3);
}
.sponsor-logo-placeholder i { font-size: 16px; color: var(--text-3); }
.sponsor-become {
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  color: #fff; font-size: 12px; font-weight: 700;
  padding: 10px 16px;
  display: flex; align-items: center; gap: 6px;
}
@media(max-width:600px){
  .sponsors-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ═══ FOOTER MAP COLUMN ═══ */
.footer-map-col { min-width: 180px; }
.footer-map-wrap {
  overflow: hidden;
  border: 1px solid var(--border);
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 32px;
  max-width: var(--container); margin: 0 auto;
  padding: 40px 24px;
}
@media(max-width:1100px){
  .footer-main { grid-template-columns: 1fr 1fr 1fr !important; }
  .footer-map-col { grid-column: 1 / -1; }
  .footer-map-wrap iframe { height: 200px; }
}
@media(max-width:768px){
  .footer-main { grid-template-columns: 1fr 1fr !important; }
  .footer-map-col { grid-column: 1 / -1; }
}
@media(max-width:480px){
  .footer-main { grid-template-columns: 1fr !important; gap: 24px; padding: 24px 16px; }
  .footer-top-inner { padding: 0 16px; }
  .footer-bottom-inner { padding: 12px 16px; flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; gap: 12px; }
}


/* ═══ NEWS SLIDER ═══ */
.news-slider-wrap {
  position: relative; overflow: hidden; margin-bottom: 48px;
}
.news-slider-track {
  display: flex; transition: transform .42s cubic-bezier(.4,0,.2,1);
}
.news-slide {
  flex: 0 0 100%; min-width: 0;
  display: grid; grid-template-columns: 1.2fr 1fr;
  background: var(--bg-2); border: 1px solid var(--border);
  overflow: hidden; min-height: 340px;
}
.news-slide-img {
  background: var(--bg-3) center/cover no-repeat; position: relative;
}
.news-slide-img::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(90deg, transparent 60%, var(--bg-2) 100%);
}
.news-slide-body {
  padding: 36px 32px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
}
.news-slide-tag {
  display: inline-block; background: var(--red); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 10px; font-family: 'Barlow Condensed', sans-serif; margin-bottom: 14px;
  width: fit-content; max-width: fit-content; align-self: flex-start;
}
.news-slide-date { font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.news-slide-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem; font-weight: 900; color: var(--text); line-height: 1.1; margin-bottom: 14px;
  text-transform: uppercase;
}
.news-slide-excerpt { font-size: .9rem; color: var(--text-2); line-height: 1.65; flex: 1; }
.news-slide-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 20px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--red); text-transform: uppercase; letter-spacing: .06em;
  transition: gap .15s, color .15s;
}
.news-slide-link:hover { gap: 10px; color: var(--red-light); }
.news-slider-controls {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0 0;
}
.news-slider-dots { display: flex; gap: 6px; }
.news-slider-dot {
  width: 8px; height: 8px; background: var(--border); border: none; cursor: pointer;
  transition: background .2s, width .2s;
}
.news-slider-dot.active { background: var(--red); width: 24px; }
.news-slider-btn {
  background: var(--bg-3); border: 1px solid var(--border); color: var(--text-2);
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 13px; transition: background .15s, color .15s;
}
.news-slider-btn:hover { background: var(--red); color: #fff; border-color: var(--red); }
.ns-btns { display: flex; gap: 6px; }
@media(max-width:640px) {
  .news-slide { grid-template-columns: 1fr; min-height: auto; }
  .news-slide-img { height: 200px; }
  .news-slide-img::after { background: linear-gradient(to top, var(--bg-2) 0%, transparent 60%); }
  .news-slide-body { padding: 20px; }
  .news-slide-title { font-size: 1.3rem; }
}

/* ═══ WICHTIGE MITTEILUNGEN ═══ */
.important-notice {
  background: linear-gradient(135deg, rgba(192,24,24,0.1) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border-red); border-left: 4px solid var(--red);
  padding: 20px 24px; margin-bottom: 32px; display: flex; gap: 16px; align-items: flex-start;
}
.important-notice-icon {
  width: 40px; height: 40px; background: rgba(192,24,24,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--red); flex-shrink: 0;
}
.important-notice-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 800; color: var(--red);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 6px;
}
.important-notice-text { font-size: .9rem; color: var(--text); line-height: 1.65; }
#important-notices-wrap { margin-bottom: 40px; }

/* ═══ TESTIMONIAL SLIDER ═══ */
.testimonial-section { margin-bottom: 48px; }
.testimonial-track-wrap { overflow: hidden; }
.testimonial-track { display: flex; transition: transform .4s cubic-bezier(.4,0,.2,1); }
.testimonial-slide { flex: 0 0 100%; padding: 4px; }
.testimonial-card {
  background: var(--bg-2); border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  padding: 28px; position: relative;
}
.testimonial-quote-icon {
  position: absolute; top: 16px; right: 20px;
  font-size: 48px; color: rgba(192,24,24,0.1); line-height: 1;
}
.testimonial-text { font-size: .95rem; color: var(--text-2); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-author-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 1rem; color: var(--text); text-transform: uppercase;
}
.testimonial-author-sport { font-size: .78rem; color: var(--text-3); }
.testimonial-source {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .72rem; color: var(--text-3); margin-left: auto; flex-shrink: 0;
}
.testimonial-controls { display: flex; align-items: center; gap: 6px; justify-content: center; margin-top: 14px; }
.testimonial-dot {
  width: 8px; height: 8px; background: var(--border); border: none; cursor: pointer;
  transition: background .2s, width .2s;
}
.testimonial-dot.active { background: var(--red); width: 24px; }
.testimonial-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
@media(max-width:768px){ .testimonial-grid-3 { grid-template-columns: 1fr; } }

/* ═══ TRAINERSUITE BUTTON ═══ */
.trainersuite-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #1a2535 0%, #0f1827 100%);
  border: 1px solid rgba(99,155,255,0.25);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: 9px 18px; transition: background .2s, border-color .2s, color .2s;
  text-decoration: none;
}
.trainersuite-btn:hover { background: linear-gradient(135deg, #243045 0%, #172136 100%); border-color: #7fb3ff; color: #fff !important; }
.trainersuite-btn i { font-size: 14px; }

/* ═══ GALLERY PREVIEW ═══ */
.gallery-preview-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; margin-bottom: 48px;
}
.gallery-preview-item {
  aspect-ratio: 1; overflow: hidden; cursor: pointer; position: relative;
  background: var(--bg-3);
}
.gallery-preview-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .3s ease, filter .3s ease;
}
.gallery-preview-item:hover img { transform: scale(1.06); filter: brightness(1.15); }
.gallery-preview-item:first-child { grid-column: span 2; grid-row: span 2; }
@media(max-width:600px){ .gallery-preview-grid { grid-template-columns: repeat(2,1fr); } .gallery-preview-item:first-child { grid-column: span 2; } }

/* ═══ KASSENWART CARD ═══ */
.kassenwart-section {
  background: var(--bg-2); border: 1px solid var(--border); border-top: 3px solid var(--red);
  padding: 36px 40px; margin-bottom: 28px; display: flex; gap: 28px; align-items: flex-start;
}
.kassenwart-img {
  width: 130px; height: 130px; background: var(--bg-3);
  background-size: cover; background-position: center;
  flex-shrink: 0; border: 2px solid var(--border-red);
}
.kassenwart-info {}
.kassenwart-label { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--red); margin-bottom: 6px; font-family: 'Barlow Condensed', sans-serif; }
.kassenwart-name { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 900; color: var(--text); text-transform: uppercase; margin-bottom: 8px; }
.kassenwart-contact { display: flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--text-2); }
.kassenwart-contact i { color: var(--red); }
@media(max-width:480px){ .kassenwart-section { flex-direction: column; align-items: center; text-align: center; } .kassenwart-contact { justify-content: center; } }

/* ═══ HISTORY PAGE ═══ */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: ''; position: absolute; left: 13px; top: 0; bottom: 0;
  width: 2px; background: var(--border-red);
}
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-dot {
  position: absolute; left: -34px; top: 4px;
  width: 16px; height: 16px; background: var(--red);
  border: 3px solid var(--bg); z-index: 1;
}
.timeline-year {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem; font-weight: 900; color: var(--red); margin-bottom: 4px; line-height: 1;
}
.timeline-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.timeline-text { font-size: .88rem; color: var(--text-2); line-height: 1.7; }

.nav-ddmenu a[href*="trainersuite"]:hover {
  background: rgba(192,24,24,0.1) !important;
  color: #fff !important;
}

/* Responsive fix for angebote 2-col layout */
@media(max-width:768px) {
  .row[style*="grid-template-columns:1fr 340px"] {
    grid-template-columns: 1fr !important;
  }
}

/* TrainerSuite Footer Button – red design */
.footer-trainer-hint .trainersuite-btn {
  background: var(--red) !important;
  border-color: var(--red-dark) !important;
  color: #fff !important;
}
.footer-trainer-hint .trainersuite-btn:hover {
  background: var(--red-dark) !important;
  border-color: var(--red-dark) !important;
  color: #fff !important;
}

/* Wichtige Mitteilung box */
.important-notice strong { color: #fff; }
.important-notice p { margin-bottom: 6px; }
.important-notice p:last-child { margin-bottom: 0; }

/* Angebote responsive sidebar */
@media(max-width:900px) {
  section.page-container .row[style*="1fr 340px"],
  .page-container > section > .row[style*="1fr 340px"] { display: block !important; }
  .page-container aside { margin-top: 24px; }
}

/* Gallery preview labels */
.gallery-preview-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: #fff; font-size: .8rem; font-weight: 700;
  padding: 24px 10px 10px;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase; letter-spacing: .06em;
}
.gallery-preview-label-sm {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: #fff; font-size: .7rem; font-weight: 600;
  padding: 16px 8px 6px;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase; letter-spacing: .05em;
}

/* ═══════════════════════════════════════════
   CUSTOM COOKIE BANNER
   ═══════════════════════════════════════════ */
#tus-cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 360px;
  max-width: calc(100vw - 32px);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  box-shadow: 0 8px 40px rgba(0,0,0,0.55);
  padding: 20px 22px 18px;
  display: block;
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .35s cubic-bezier(.22,.61,.36,1), transform .35s cubic-bezier(.22,.61,.36,1), visibility 0s .35s;
  pointer-events: none;
}
#tus-cookie-banner.visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .35s cubic-bezier(.22,.61,.36,1), transform .35s cubic-bezier(.22,.61,.36,1), visibility 0s 0s;
  pointer-events: auto;
}
.cookie-banner-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.cookie-banner-icon {
  width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
  background: rgba(184,22,22,.15);
  display: flex; align-items: center; justify-content: center;
}
.cookie-banner-icon i { color: var(--red); font-size: 14px; }
.cookie-banner-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--text);
}
.cookie-banner-text {
  font-size: .82rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 16px;
}
.cookie-banner-text a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-text a:hover { color: var(--red-dark); }
.cookie-banner-actions {
  display: flex;
  gap: 8px;
}
.cookie-btn-accept {
  flex: 1;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 9px 14px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--tr);
}
.cookie-btn-accept:hover { background: var(--red-dark); }
.cookie-btn-decline {
  background: transparent;
  color: var(--text-3);
  border: 1px solid var(--border);
  padding: 9px 14px;
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  transition: color var(--tr), border-color var(--tr);
  white-space: nowrap;
}
.cookie-btn-decline:hover { color: var(--text); border-color: var(--text-3); }
@media(max-width:480px) {
  #tus-cookie-banner { bottom: 0; right: 0; width: 100%; max-width:100%; border-radius:0; }
}
/* ═══ UTILITY: Page Section spacing ═══ */
.page-section { margin-bottom: 48px; }
.page-section-sm { margin-bottom: 28px; }

/* ═══ FAQ: Open state styling ═══ */
.faq-card.open .faq-q { color: var(--red); }
.faq-card.open .faq-q .faq-icon { background: var(--red); border-color: var(--red); }
.faq-card.open .faq-q .faq-icon i { transform: rotate(45deg); color: #fff; }
.faq-card .faq-a { display: none; }
.faq-card.open .faq-a { display: block; }

/* ═══ Trainer-Card: Konsistente Höhe ═══ */
.trainer-card .trainer-img { height: 260px; }

/* ═══ Testimonimals: konsistentes Gitter ═══ */
#testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }

/* Prevent margin stacking at page boundaries */
.page-container > *:first-child { margin-top: 0 !important; }
.page-container > *:last-child { margin-bottom: 0 !important; }
.sec-head + .sec-head { margin-top: 0; }
/* Normalize section spacing */
.tus-section { padding: 48px 0; }
.tus-section + .tus-section { padding-top: 0; }
