/* ═══════════════════════════════════════════
   RC WORLD BREMEN — Stylesheet
   ═══════════════════════════════════════════ */

/* ─── Reset & Base ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Colors */
  --red:        #e30613;
  --red-dark:   #b5040f;
  --red-glow:   rgba(227, 6, 19, 0.28);
  --orange:     #ff6b00;
  --orange-glow:rgba(255, 107, 0, 0.18);
  --dark:       #00005e;
  --dark-2:     #000070;
  --dark-card:  #000080;
  --dark-bd:    #1515a0;
  --dark-hover: #0c0c8f;
  --text:       #ffffff;
  --text-m:     #8888a8;
  --text-lt:    #c0c0d8;
  --light:      #f4f5f8;
  --white:      #ffffff;
  --light-bd:   #e2e3ed;
  --green:      #25d366;
  --facebook:   #1877f2;

  /* Misc */
  --nav-h:      104px;
  --r:          12px;
  --r-lg:       20px;
  --t:          all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --sh-red:     0 8px 32px rgba(227, 6, 19, 0.30);
  --sh-dark:    0 8px 40px rgba(0, 0, 0, 0.50);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2a2a3a;
  background: #fff;
  overflow-x: hidden;
}

img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
input, select, textarea, button { font-family: inherit; }

/* ─── Layout ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

.bg-dark  { background: var(--dark);  color: var(--text); }
.bg-light { background: var(--light); }
.bg-white { background: var(--white); }

/* ─── Section Header ─── */
.section-head {
  text-align: center;
  margin-bottom: 60px;
}

.section-head.light .section-title,
.section-head.light .section-desc { color: var(--text); }

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 4px 18px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-desc {
  font-size: 1.05rem;
  color: #666;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--t);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: var(--sh-red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(227,6,19,0.45);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-facebook {
  background: var(--facebook);
  color: #fff;
  border-color: var(--facebook);
  width: 100%;
  justify-content: center;
}
.btn-facebook:hover { background: #0d65d9; transform: translateY(-2px); }

.btn-whatsapp {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 15px 26px;
}
.btn-whatsapp:hover {
  background: #1dac53;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
}

.full-w { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: auto;
  z-index: 1000;
  transition: var(--t);
  background: rgba(0, 0, 94, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-bd);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

.navbar.scrolled {}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  padding: 4px 0;
  margin-right: 16px;
}
.nav-logo-img {
  width: 38px;
  height: auto;
  max-width: none;
}
.logo-rc    { color: var(--red); }
.logo-world { color: #fff; }
.logo-city  { color: var(--text-m); font-size: 0.85rem; font-weight: 400; margin-left: 4px; }

/* Nav links */
.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3px;
  flex: 1;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: rgba(255,255,255,0.8);
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--t);
  position: relative;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition: var(--t);
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link:hover::after, .nav-link.active::after { width: 55%; }

.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 700;
  margin-left: 8px;
  flex-shrink: 0;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: var(--sh-red); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--t);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

/* Background layers */
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-video {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-video-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 15, 0.15);
  z-index: 1;
}

.hero-grid {
  position: absolute; inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(var(--dark-bd) 1px, transparent 1px),
    linear-gradient(90deg, var(--dark-bd) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.45;
}

.hero-glow {
  position: absolute;
  z-index: 3;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.glow-red {
  width: 700px; height: 700px;
  background: rgba(0, 0, 94, 0.35);
  top: -150px; right: -80px;
  animation: glowPulse1 9s ease-in-out infinite alternate;
}
.glow-orange {
  width: 450px; height: 450px;
  background: rgba(0, 0, 80, 0.25);
  bottom: -60px; left: 8%;
  animation: glowPulse2 7s ease-in-out infinite alternate;
}
@keyframes glowPulse1 {
  from { transform: translate(0,0) scale(1);   opacity: 0.6; }
  to   { transform: translate(-40px,40px) scale(1.15); opacity: 0.9; }
}
@keyframes glowPulse2 {
  from { transform: translate(0,0) scale(1);   opacity: 0.4; }
  to   { transform: translate(24px,-24px) scale(0.85); opacity: 0.65; }
}

/* Speed lines */
.speed-lines { position: absolute; inset: 0; overflow: hidden; z-index: 4; }
.sl {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--red) 40%, var(--orange) 60%, transparent 100%);
  opacity: 0;
  animation: speedLine linear infinite;
}
.sl-1 { top: 9%;  width: 55%; animation-duration: 2.4s; animation-delay: 0.0s; }
.sl-2 { top: 22%; width: 38%; animation-duration: 3.0s; animation-delay: 0.6s; }
.sl-3 { top: 37%; width: 68%; animation-duration: 2.0s; animation-delay: 1.1s; }
.sl-4 { top: 52%; width: 48%; animation-duration: 2.7s; animation-delay: 0.3s; }
.sl-5 { top: 66%; width: 42%; animation-duration: 3.2s; animation-delay: 1.8s; }
.sl-6 { top: 79%; width: 60%; animation-duration: 2.2s; animation-delay: 0.9s; }
.sl-7 { top: 16%; width: 30%; animation-duration: 1.9s; animation-delay: 1.4s; }
.sl-8 { top: 61%; width: 72%; animation-duration: 2.8s; animation-delay: 2.1s; }

@keyframes speedLine {
  0%   { left: -80%; opacity: 0; }
  15%  { opacity: 0.7; }
  85%  { opacity: 0.25; }
  100% { left: 110%; opacity: 0; }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 94, 0.85);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 8px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-logo-img {
  display: block;
  width: clamp(65px, 12.5vw, 120px);
  height: auto;
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-sub-box {
  display: inline-block;
  margin-bottom: 40px;
  animation: fadeUp 0.8s ease 0.4s both;
}
.hero-sub {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: #fff;
  max-width: 560px;
  margin-bottom: 0;
  line-height: 1.75;
  text-shadow:
    0 1px 3px rgba(0,0,0,0.9),
    0 3px 12px rgba(0,0,0,0.75),
    0 6px 24px rgba(0,0,0,0.55);
  font-weight: 600;
}
.hero-sub em { color: var(--red); font-style: normal; font-weight: 700; }

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeUp 0.8s ease 0.6s both;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-m);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeUp 0.8s ease 1s both;
}
.scroll-chevron {
  width: 18px; height: 18px;
  border-right: 2px solid var(--text-m);
  border-bottom: 2px solid var(--text-m);
  transform: rotate(45deg);
  animation: chevronBounce 1.6s ease-in-out infinite;
}
@keyframes chevronBounce {
  0%,100% { transform: rotate(45deg) translateY(0); }
  50%      { transform: rotate(45deg) translateY(6px); }
}

/* ═══════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════ */
.stats-bar {
  background: var(--red);
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 20px,
    rgba(0,0,0,0.06) 20px, rgba(0,0,0,0.06) 40px
  );
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
  flex: 1;
  min-width: 120px;
  max-width: 200px;
}
.stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.stat-lbl {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: 4px;
}
.stat-sep {
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.3);
}

/* ═══════════════════════════════════════════
   ABOUT – FEATURE CARDS
═══════════════════════════════════════════ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 36px 28px;
  border: 1px solid var(--light-bd);
  transition: var(--t);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border-color: var(--red);
}

.card-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: var(--sh-red);
}

.feature-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════ */
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}
.g-tab {
  background: transparent;
  border: 2px solid var(--dark-bd);
  color: var(--text-m);
  padding: 10px 24px;
  border-radius: var(--r);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--t);
}
.g-tab.active, .g-tab:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(227,6,19,0.1);
}

.tab-content { display: none; }
.tab-content.active { display: block; }

/* Photo grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--r);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(227,6,19,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  opacity: 0;
  transition: var(--t);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-placeholder {
  aspect-ratio: 4/3;
  background: var(--dark-card);
  border: 2px dashed var(--dark-bd);
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-m);
  transition: var(--t);
  cursor: default;
}
.gallery-placeholder:hover { border-color: var(--red); color: var(--red); }
.gallery-placeholder i    { font-size: 2.2rem; opacity: 0.5; }
.gallery-placeholder span { font-size: 0.8rem; opacity: 0.5; }

.gallery-note {
  text-align: center;
  color: var(--text-m);
  font-size: 0.95rem;
  padding: 16px 20px;
  background: var(--dark-card);
  border: 1px solid var(--dark-bd);
  border-radius: var(--r);
}
.gallery-note a { color: var(--facebook); font-weight: 700; text-decoration: underline; }

/* Video grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.video-item, .video-placeholder {
  aspect-ratio: 16/9;
  border-radius: var(--r);
  overflow: hidden;
}
.video-item iframe { width: 100%; height: 100%; }
.video-placeholder {
  background: var(--dark-card);
  border: 2px dashed var(--dark-bd);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-m);
  transition: var(--t);
}
.video-placeholder:hover { border-color: var(--red); color: var(--red); }
.video-placeholder i    { font-size: 3rem; opacity: 0.5; }
.video-placeholder span { font-size: 0.8rem; opacity: 0.5; }

/* ═══════════════════════════════════════════
   EVENTS / TERMINE
═══════════════════════════════════════════ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 28px;
}

.event-card {
  background: var(--light);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  gap: 20px;
  border: 1px solid var(--light-bd);
  transition: var(--t);
  /* reset <a> defaults */
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
  border-color: var(--red);
}
.event-card:hover .ev-fb-link { color: var(--facebook); }

.ev-fb-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem !important;
  font-weight: 700;
  color: var(--text-m, #aaa);
  margin-top: 8px !important;
  transition: var(--t);
}
.ev-fb-link i { color: var(--facebook); }

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  min-width: 68px;
  text-align: center;
  flex-shrink: 0;
  box-shadow: var(--sh-red);
}
.ev-race { background: linear-gradient(135deg, var(--orange), var(--red)); }
.ev-ws   { background: linear-gradient(135deg, #1ca049, #0e7c36); }

.ev-day  { font-family: 'Orbitron', sans-serif; font-size: 1.4rem; font-weight: 900; line-height: 1; }
.ev-mon  { font-size: 0.65rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; opacity: 0.9; }

.event-body { flex: 1; }

.ev-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: rgba(227,6,19,0.12);
  color: var(--red);
  padding: 2px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}
.badge-race { background: rgba(255,107,0,0.12); color: var(--orange); }
.badge-ws   { background: rgba(37,211,102,0.12); color: #1ca049; }

.event-body h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.event-body p {
  font-size: 0.88rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
.event-body p i { color: var(--red); width: 14px; }

.events-fb-note {
  text-align: center;
  font-size: 0.95rem;
  color: #666;
  padding: 16px 20px;
  background: var(--light);
  border: 1px solid var(--light-bd);
  border-radius: var(--r);
}
.events-fb-note a { color: var(--facebook); font-weight: 700; text-decoration: underline; }

/* ═══════════════════════════════════════════
   TERMINE KACHELN
═══════════════════════════════════════════ */
.termine-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}

.termine-tile {
  border-radius: var(--r-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

/* Training-Kachel */
.training-tile {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  border: 2px solid var(--red);
  color: #fff;
}
.training-tile::after {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(227,6,19,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Winter-Training-Kachel */
.winter-tile {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  border: 2px solid #4a9eed;
  color: #fff;
}
.winter-tile::after {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(74,158,237,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.winter-tile .tt-fact i {
  color: #4a9eed;
}

/* Facebook-Events-Kachel */
.fb-events-tile {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  border: 2px solid var(--facebook);
  color: #fff;
  cursor: pointer;
  transition: var(--t);
}
.fb-events-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(24, 119, 242, 0.30);
  border-color: #5aabff;
}
.fb-events-tile:hover .btn-facebook-tile {
  background: #3b91f0;
}

/* Icon-Box */
.tt-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: rgba(227, 6, 19, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--red);
  flex-shrink: 0;
}
.tt-fb-icon {
  background: rgba(24, 119, 242, 0.15);
  color: var(--facebook);
}
.tt-winter-icon {
  background: rgba(74, 158, 237, 0.15);
  color: #4a9eed;
}

/* Badge */
.tt-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(227, 6, 19, 0.12);
  border: 1px solid rgba(227, 6, 19, 0.35);
  border-radius: 20px;
  padding: 4px 14px;
  align-self: flex-start;
}
.tt-fb-badge {
  color: var(--facebook);
  background: rgba(24, 119, 242, 0.12);
  border-color: rgba(24, 119, 242, 0.35);
}
.tt-winter-badge {
  color: #4a9eed;
  background: rgba(74, 158, 237, 0.12);
  border-color: rgba(74, 158, 237, 0.35);
}

/* Titel */
.tt-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

/* Fakten-Liste (Training) */
.tt-facts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.tt-fact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  color: rgba(255,255,255,0.85);
}
.tt-fact i {
  color: var(--red);
  width: 18px;
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.tt-fact strong {
  color: #fff;
  display: block;
}

/* Beschreibung (FB-Kachel) */
.tt-desc {
  color: rgba(255,255,255,0.80);
  font-size: 1rem;
  line-height: 1.65;
  flex: 1;
  margin: 0;
}

/* CTA-Button */
.tt-cta { margin-top: auto; }

.btn-facebook-tile {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--facebook);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: var(--r);
  transition: var(--t);
}

/* Rennserien-Kachel */
.rennserie-tile {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  border: 2px solid #22c55e;
  color: #fff;
  grid-column: 1 / -1;
}
.rennserie-tile::after {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(34,197,94,0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.tt-rennserie-icon {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}
.tt-rennserie-badge {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.35);
}

/* Link-Grid (Rennserien) */
.tt-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  flex: 1;
}
.tt-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  text-decoration: none;
  color: rgba(255,255,255,0.90);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--t);
  border: 1px solid rgba(34, 197, 94, 0.20);
}
.tt-link:hover {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.50);
  color: #fff;
  transform: translateX(4px);
}
.tt-link-icon {
  color: #22c55e;
  width: 20px;
  flex-shrink: 0;
  font-size: 0.9rem;
}
.tt-link span { flex: 1; }
.tt-link-arrow {
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
  flex-shrink: 0;
}
.tt-link:hover .tt-link-arrow { color: #22c55e; }

@media (max-width: 1024px) {
  .termine-tiles { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .termine-tiles { grid-template-columns: 1fr; }
  .tt-links { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   COMMUNITY
═══════════════════════════════════════════ */
.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.social-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-bd);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: var(--t);
}
.social-card:hover { border-color: var(--dark-hover); transform: translateY(-4px); }

.sc-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  flex-shrink: 0;
}
.fb-icon { background: var(--facebook); }
.wa-icon { background: var(--green); }

.sc-header h3 { font-family: 'Orbitron', sans-serif; font-size: 1.05rem; font-weight: 700; color: #fff; }
.sc-header p  { font-size: 0.82rem; color: var(--text-m); margin-top: 2px; }

.sc-desc { font-size: 0.95rem; color: var(--text-lt); line-height: 1.65; }

/* Facebook embed wrapper */
.fb-embed-wrap {
  background: #fff;
  border-radius: var(--r);
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

/* Gallery video block */
.gallery-video {
  margin-top: 40px;
}
.gallery-video-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-m);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gallery-video-label i { color: var(--facebook); }

.fb-video-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: unset;
  background: var(--dark);
}
.fb-video-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.fb-video-wrap .consent-wrap {
  display: contents;
}

/* WhatsApp features */
.wa-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.wa-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-lt);
}
.wa-feat i { color: var(--green); font-size: 0.85rem; }

.wa-alt-note {
  font-size: 0.8rem;
  color: var(--text-m);
  text-align: center;
}
.wa-alt-note a { color: var(--red); text-decoration: underline; }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form-wrap h3,
.contact-info h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

/* Form */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: #fff;
  border: 2px solid var(--light-bd);
  border-radius: var(--r);
  font-size: 0.95rem;
  color: #333;
  transition: var(--t);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none;
  margin-top: 12px;
  padding: 12px 16px;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: var(--r);
  color: #1ca049;
  font-weight: 600;
  font-size: 0.9rem;
  align-items: center;
  gap: 8px;
}
.form-success.show { display: flex; }

/* Contact info */
.ci-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.ci-item { display: flex; align-items: flex-start; gap: 14px; }

.ci-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.fb-ci { background: var(--facebook) !important; }
.wa-ci { background: var(--green) !important; }

.ci-item div { display: flex; flex-direction: column; }
.ci-item strong { font-size: 0.85rem; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.ci-item a, .ci-item span { font-size: 0.9rem; color: #666; }
.ci-item a { color: var(--red); }
.ci-item a:hover { text-decoration: underline; }

/* Join box */
.join-box {
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-radius: var(--r-lg);
  padding: 28px;
  color: #fff;
}
.join-box h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.join-box p { font-size: 0.92rem; margin-bottom: 16px; opacity: 0.92; line-height: 1.5; }
.join-list { display: flex; flex-direction: column; gap: 7px; }
.join-list li { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; }
.join-list li i { color: rgba(255,255,255,0.85); font-size: 0.8rem; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--dark);
  color: var(--text);
  padding: 72px 0 0;
  border-top: 1px solid var(--dark-bd);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo-link { margin-bottom: 16px; display: inline-flex; }
.footer-logo-img { width: 80px; height: auto; max-width: none; }

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-m);
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px;
  background: var(--dark-card);
  border: 1px solid var(--dark-bd);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-m);
  font-size: 0.9rem;
  transition: var(--t);
}
.footer-socials a:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a {
  font-size: 0.88rem;
  color: var(--text-m);
  transition: var(--t);
}
.footer-col a:hover { color: var(--red); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid var(--dark-bd);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-m);
}

/* ═══════════════════════════════════════════
   FLOATING ELEMENTS
═══════════════════════════════════════════ */
/* WhatsApp Float */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.75rem;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  z-index: 900;
  transition: var(--t);
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 40px rgba(37,211,102,0.65);
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

.wa-tooltip {
  position: absolute;
  right: 66px;
  background: rgba(37,211,102,0.92);
  color: #fff;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--t);
  pointer-events: none;
}

/* Scroll-to-top */
.scroll-top-btn {
  position: fixed;
  bottom: 28px; left: 28px;
  width: 46px; height: 46px;
  background: var(--dark-card);
  border: 1px solid var(--dark-bd);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-m);
  font-size: 0.95rem;
  cursor: pointer;
  z-index: 900;
  transition: var(--t);
  opacity: 0;
  pointer-events: none;
}
.scroll-top-btn.show { opacity: 1; pointer-events: auto; }
.scroll-top-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════════ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.active { opacity: 1; pointer-events: auto; }

.lb-img-wrap { max-width: 90vw; max-height: 88vh; }
.lb-img-wrap img { max-width: 100%; max-height: 88vh; object-fit: contain; border-radius: 8px; }

.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: var(--red);
  border-color: var(--red);
}

.lb-close { top: 20px; right: 20px; width: 42px; height: 42px; font-size: 1rem; }
.lb-prev  { left: 20px;  top: 50%; transform: translateY(-50%); width: 46px; height: 46px; font-size: 1rem; }
.lb-next  { right: 20px; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; font-size: 1rem; }

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll-triggered animations */
.anim {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.anim.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  /* Mobile nav */
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(0, 0, 94, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 20px 24px 28px;
    gap: 4px;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: var(--t);
    border-bottom: 1px solid var(--dark-bd);
    flex-basis: auto;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-link { width: 100%; text-align: center; padding: 12px; }
  .nav-cta { margin: 8px 0 0; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .stats-grid { gap: 20px; flex-wrap: wrap; }
  .stat-sep { display: none; }
  .stat { padding: 0 20px; }

  .community-grid { grid-template-columns: 1fr; }

  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }

  .form-row { grid-template-columns: 1fr; gap: 0; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }

  .wa-float { bottom: 20px; right: 20px; }
  .scroll-top-btn { bottom: 20px; left: 20px; }
}

@media (max-width: 480px) {
  .gallery-grid  { grid-template-columns: 1fr 1fr; }
  .events-grid   { grid-template-columns: 1fr; }
  .cards-grid    { grid-template-columns: 1fr; }
  .wa-features   { grid-template-columns: 1fr; }
  .guest-facts   { grid-template-columns: 1fr; }
  .guest-wa-box  { flex-direction: column; align-items: stretch; }
  .guest-wa-box .btn-whatsapp { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════
   DAS HOBBY
═══════════════════════════════════════════ */

/* Off-Road vs. On-Road */
.hobby-vs-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 40px;
}

.hobby-vs-card {
  background: var(--light);
  border: 2px solid var(--light-bd);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: var(--t);
}
.hobby-vs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.09);
}
.onroad-card {
  border-color: var(--red);
  background: #fff;
  box-shadow: var(--sh-red);
}

.hobby-focus-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}

.hvc-icon {
  width: 68px; height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  margin: 0 auto 18px;
}
.offroad-icon { background: linear-gradient(135deg, #5a7a3a, #3d5c24); }
.onroad-icon  { background: linear-gradient(135deg, var(--red), var(--orange)); box-shadow: var(--sh-red); }

.hobby-vs-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.hobby-vs-card p {
  font-size: 0.93rem;
  color: #666;
  line-height: 1.6;
}

.hobby-vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
.hobby-vs-divider span {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--light-bd);
  background: #fff;
  border: 2px solid var(--light-bd);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Info-Reihe: Maßstäbe & Antrieb */
.hobby-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

.hobby-info-block {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--light-bd);
  border-radius: var(--r);
  padding: 20px 18px;
  transition: var(--t);
}
.hobby-info-block:hover {
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}
.hobby-info-block > i {
  font-size: 1.3rem;
  color: var(--red);
  margin-top: 3px;
  flex-shrink: 0;
  width: 22px;
  text-align: center;
}
.hobby-info-block strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.hobby-info-block span {
  font-size: 0.84rem;
  color: #666;
  line-height: 1.5;
}

/* Fahrzeugklassen */
.hobby-classes-head {
  text-align: center;
  margin-bottom: 24px;
}
.hobby-classes-head h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.hobby-classes-head p {
  font-size: 0.95rem;
  color: #666;
}

.hobby-classes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.hobby-class-card {
  background: var(--light);
  border: 1px solid var(--light-bd);
  border-radius: var(--r-lg);
  padding: 28px 22px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--t);
}
.hobby-class-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
  border-color: var(--red);
}

.hcc-scale {
  position: absolute;
  top: 14px; right: 16px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  background: rgba(227,6,19,0.08);
  border: 1px solid rgba(227,6,19,0.2);
  padding: 2px 8px;
  border-radius: 6px;
}

.hcc-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(227,6,19,0.25);
}

.hobby-class-card h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.hobby-class-card p {
  font-size: 0.87rem;
  color: #666;
  line-height: 1.55;
  margin-bottom: 14px;
}

.hcc-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: rgba(227,6,19,0.1);
  color: var(--red);
  padding: 3px 10px;
  border-radius: 100px;
}
.hcc-badge--new {
  background: rgba(34,139,34,0.12);
  color: #1a7a1a;
}

/* Fairness-Box */
.hobby-fair {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: linear-gradient(135deg, #000070 0%, #0c0c8f 100%);
  border: 1px solid var(--dark-bd);
  border-left: 4px solid var(--red);
  border-radius: var(--r-lg);
  padding: 32px 36px;
  color: var(--text);
}

.hobby-fair-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: var(--sh-red);
}

.hobby-fair-text h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.hobby-fair-text p {
  font-size: 0.93rem;
  color: var(--text-lt);
  line-height: 1.7;
}
.hobby-fair-text strong { color: var(--red); }

/* Responsive Das Hobby */
@media (max-width: 900px) {
  .hobby-vs-wrap {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hobby-vs-divider { padding: 4px 0; }
  .hobby-info-row   { grid-template-columns: 1fr; }
  .hobby-classes-grid { grid-template-columns: 1fr; }
  .hobby-fair { flex-direction: column; gap: 16px; }
}
@media (max-width: 640px) {
  .hobby-classes-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   GASTFAHRER
═══════════════════════════════════════════ */
.guest-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  align-items: start;
}

/* Preiskarte */
.guest-price-card {
  background: linear-gradient(160deg, var(--red) 0%, #8c0009 100%);
  border-radius: var(--r-lg);
  padding: 40px 28px;
  color: #fff;
  text-align: center;
  box-shadow: var(--sh-red);
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}

.gpc-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 14px;
}

.gpc-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
  gap: 2px;
}
.gpc-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1;
}
.gpc-cur {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  margin-top: 10px;
}
.gpc-unit {
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.82;
  margin-bottom: 0;
}

.gpc-divider {
  width: 36px;
  height: 2px;
  background: rgba(255,255,255,0.35);
  margin: 22px auto;
}

.gpc-note {
  font-size: 0.93rem;
  line-height: 1.55;
  opacity: 0.88;
  margin-bottom: 22px;
}

.gpc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.32);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
}

/* Fakten-Grid */
.guest-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

.guest-fact {
  background: #fff;
  border: 1px solid var(--light-bd);
  border-radius: var(--r);
  padding: 18px 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--t);
}
.guest-fact:hover {
  border-color: var(--red);
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.gf-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(227,6,19,0.25);
}

.guest-fact strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}
.guest-fact span {
  font-size: 0.83rem;
  color: #666;
  line-height: 1.4;
}

/* WhatsApp-Box */
.guest-wa-box {
  background: #fff;
  border: 1px solid var(--light-bd);
  border-left: 4px solid var(--green);
  border-radius: var(--r);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.guest-wa-text {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
}
.guest-wa-text > i {
  font-size: 1.8rem;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}
.guest-wa-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.guest-wa-text span {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
}

.guest-wa-box .btn-whatsapp {
  width: auto;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Strecke & Anfahrt */
.track-map-wrap {
  margin-top: 48px;
  border-top: 1px solid var(--light-bd);
  padding-top: 48px;
}

.track-map-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: stretch;
}

.track-map-info h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.track-map-info > p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.65;
  margin-bottom: 22px;
}

.track-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.track-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #555;
}
.track-detail-item i {
  width: 18px;
  color: var(--red);
  font-size: 0.9rem;
  text-align: center;
  flex-shrink: 0;
}

.track-map-btn { align-self: flex-start; }

.track-offroad-hint {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(34,139,34,0.08);
  border-left: 3px solid #1a7a1a;
  border-radius: var(--r-md);
  padding: 14px 16px;
  margin: 20px 0;
  font-size: 0.9rem;
  color: #333;
}
.track-offroad-hint i {
  color: #1a7a1a;
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.track-offroad-hint strong {
  display: block;
  margin-bottom: 4px;
  color: #1a7a1a;
}
.track-offroad-hint span {
  line-height: 1.5;
}

.track-map-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 380px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border: 1px solid var(--light-bd);
}
.track-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
}

/* Responsive Gastfahrer */
@media (max-width: 900px) {
  .guest-layout { grid-template-columns: 1fr; }
  .guest-price-card { position: static; }
  .track-map-head { grid-template-columns: 1fr; }
  .track-map-frame { min-height: 300px; }
  .track-map-frame iframe { min-height: 300px; }
}
@media (max-width: 640px) {
  .guest-wa-box { flex-direction: column; align-items: stretch; }
  .guest-wa-box .btn-whatsapp { width: 100%; justify-content: center; }
}

/* Mietfahrzeug-Kachel */
.rental-tile {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  border: 2px solid var(--orange);
  border-radius: var(--r-lg);
  padding: 36px 40px;
  margin-top: 36px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.rental-tile::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(255,107,0,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.rental-tile-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.rental-tile-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rental-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: rgba(255,107,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--orange);
  flex-shrink: 0;
}
.rental-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,107,0,0.12);
  border: 1px solid rgba(255,107,0,0.35);
  border-radius: 20px;
  padding: 4px 14px;
  align-self: flex-start;
}
.rental-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.rental-desc {
  color: rgba(255,255,255,0.80);
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0;
  max-width: 560px;
}
.rental-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
}
.rental-price-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--orange);
}
.rental-price-label {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.60);
}
.rental-tile-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  min-width: 240px;
}
.rental-contact-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
  line-height: 1.5;
}
.rental-contact-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
@media (max-width: 900px) {
  .rental-tile-inner { grid-template-columns: 1fr; gap: 28px; }
  .rental-tile-right { align-items: stretch; min-width: 0; width: 100%; }
  .rental-contact-btns .btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════
   VORSTAND (Subsection in Über uns)
═══════════════════════════════════════════ */
.vorstand-wrap {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--light-bd);
}
.vorstand-head {
  text-align: center;
  margin-bottom: 32px;
}
.vorstand-head h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.vorstand-head p {
  font-size: 0.95rem;
  color: #666;
}
.vorstand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.vorstand-card {
  background: #fff;
  border: 1px solid var(--light-bd);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--t);
}
.vorstand-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}
.vorstand-avatar {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
}
.vorstand-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.vorstand-role {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}
.vorstand-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

/* ═══════════════════════════════════════════
   GESCHICHTE – TIMELINE
═══════════════════════════════════════════ */
.timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto 48px;
  padding: 0 0 20px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--red), var(--dark-bd));
  transform: translateX(-50%);
}

.tl-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 40px;
  position: relative;
}
.tl-left  { flex-direction: row-reverse; }
.tl-right { flex-direction: row; }

/* Dot on timeline */
.tl-dot {
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  width: 16px; height: 16px;
  background: var(--red);
  border: 3px solid var(--dark);
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--red-glow);
  flex-shrink: 0;
}

.tl-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-bd);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  width: calc(50% - 40px);
  transition: var(--t);
}
.tl-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
}

.tl-year {
  display: inline-block;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: var(--red);
  background: rgba(227,6,19,0.12);
  border: 1px solid rgba(227,6,19,0.3);
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.tl-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.tl-card p {
  font-size: 0.9rem;
  color: var(--text-lt);
  line-height: 1.65;
}
.tl-card strong { color: var(--red); }

/* DMC-Box */
.geschichte-dmc {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--dark-card);
  border: 1px solid var(--dark-bd);
  border-left: 4px solid var(--red);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  max-width: 860px;
  margin: 0 auto;
}
.geschichte-dmc img {
  height: 64px;
  width: auto;
  flex-shrink: 0;
}
.geschichte-dmc strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.geschichte-dmc span {
  font-size: 0.87rem;
  color: var(--text-lt);
  line-height: 1.5;
}

/* Responsive Timeline */
@media (max-width: 700px) {
  .timeline::before { left: 16px; }
  .tl-item { flex-direction: column !important; padding-left: 48px; gap: 12px; }
  .tl-dot  { left: 16px; top: 4px; }
  .tl-card { width: 100%; }
  .geschichte-dmc { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════
   MITGLIEDSCHAFT
═══════════════════════════════════════════ */
.mitgl-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 64px;
}

/* Spalten */
.mitgl-col {
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
}
.guest-col {
  background: var(--light);
  border: 1px solid var(--light-bd);
}
.member-col {
  background: #fff;
  border: 2px solid var(--red);
  box-shadow: var(--sh-red);
}

.mitgl-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.mitgl-col-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.mitgl-col-head i {
  font-size: 1.4rem;
  color: var(--red);
}
.guest-col .mitgl-col-head i { color: #999; }
.mitgl-col-head h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
}

.mitgl-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.mitgl-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #555;
}
.mitgl-list li i { font-size: 0.85rem; width: 16px; text-align: center; flex-shrink: 0; }
.mitgl-list li.yes i { color: var(--green); }
.mitgl-list li.no  i { color: #ccc; }
.mitgl-list li.no    { color: #aaa; }

.mitgl-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  background: var(--light-bd);
  border-radius: var(--r);
  margin-top: auto;
}
.member-price {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
}
.mp-amount {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}
.member-price .mp-amount { color: #fff; }
.mp-label {
  font-size: 0.8rem;
  color: #888;
  font-weight: 600;
  margin-top: 4px;
}
.member-price .mp-label { color: rgba(255,255,255,0.85); }

/* Beitragsübersicht */
.mitgl-price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
  font-size: 0.85rem;
}
.mitgl-price-table td {
  padding: 5px 6px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.mitgl-price-table tbody tr:last-child td {
  border-bottom: none;
}
.mpt-cat {
  color: rgba(255,255,255,0.85);
  text-align: left;
}
.mpt-price {
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

/* VS Divider */
.mitgl-vs {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mitgl-vs span {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--light-bd);
  background: #fff;
  border: 2px solid var(--light-bd);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* So wirst du Mitglied */
.mitgl-steps {
  background: var(--light);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  margin-bottom: 32px;
}
.mitgl-steps h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  text-align: center;
}
.mitgl-steps > p {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 32px;
}
.mitgl-steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
}
.mitgl-step {
  text-align: center;
  padding: 0 8px;
}
.ms-num {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  box-shadow: var(--sh-red);
}
.mitgl-step h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.mitgl-step p {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.5;
}
.ms-arrow {
  color: var(--light-bd);
  font-size: 1.2rem;
  padding: 0 4px;
}

/* CTA */
.mitgl-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  border: 1px solid var(--dark-bd);
  border-radius: var(--r-lg);
  padding: 28px 36px;
  color: #fff;
}
.mitgl-cta strong {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.mitgl-cta span { font-size: 0.9rem; color: var(--text-lt); }
.mitgl-cta-btns { display: flex; gap: 12px; flex-shrink: 0; }

/* Responsive Mitgliedschaft */
@media (max-width: 900px) {
  .mitgl-compare {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .mitgl-vs { padding: 4px 0; }
  .mitgl-steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .ms-arrow { transform: rotate(90deg); margin: 0 auto; }
  .mitgl-cta { flex-direction: column; align-items: flex-start; text-align: left; }
  .mitgl-cta-btns { width: 100%; }
  .mitgl-cta-btns .btn { flex: 1; justify-content: center; }
  .vorstand-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .vorstand-grid { grid-template-columns: 1fr; }
}
