/* ── Reset & Basis ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  background: #111;
  color: #fff;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── CSS-Variablen ── */
:root {
  --dark:    #111111;
  --dark-2:  #1a1a1a;
  --light:   #f5f5f2;
  --gold:    #F4BB19;
  --gold-on-light: #8C6900;
  --white:   #ffffff;
  --text-on-light: #1a1a1a;
  --text-muted-dark: rgba(255,255,255,0.55);
  --text-muted-light: #555555;
}

/* ── Navigation ── */
.site-nav {
  background: var(--dark);
  border-bottom: 1px solid #222;
  padding: 12px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-nav::before,
.site-nav::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
}
.site-nav::before {
  left: 0;
  width: 5px;
  background: var(--gold);
}
.site-nav::after {
  left: 14px;
  width: 2px;
  background: rgba(232,168,0,0.35);
}
.site-nav .logo img { height: 124px; width: auto; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--text-muted-dark);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

/* ── Diagonale Schnitte ── */
.cut-to-light {
  height: 60px;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 60' preserveAspectRatio='none'><polygon points='0,0 100,0 0,60' fill='%23111111'/><polygon points='100,0 100,60 0,60' fill='%23f5f5f2'/></svg>") center / 100% 100% no-repeat;
}
.cut-to-dark {
  height: 60px;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 60' preserveAspectRatio='none'><polygon points='0,0 100,0 0,60' fill='%23f5f5f2'/><polygon points='100,0 100,60 0,60' fill='%23111111'/></svg>") center / 100% 100% no-repeat;
}
.cut-to-dark-2 {
  height: 60px;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 60' preserveAspectRatio='none'><polygon points='0,0 100,0 0,60' fill='%23f5f5f2'/><polygon points='100,0 100,60 0,60' fill='%231a1a1a'/></svg>") center / 100% 100% no-repeat;
}
.cut-dark-to-dark-2 {
  height: 60px;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 60' preserveAspectRatio='none'><polygon points='0,0 100,0 0,60' fill='%23111111'/><polygon points='100,0 100,60 0,60' fill='%231a1a1a'/></svg>") center / 100% 100% no-repeat;
}

/* ── Abschnitt-Typografie ── */
.section-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.section-h2 {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
}
.section-p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted-light);
  margin-bottom: 14px;
}

/* ── Footer ── */
.site-footer {
  background: var(--dark);
  border-top: 1px solid #222;
  padding: 28px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.site-footer .logo img { height: 64px; width: auto; }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 0.62rem;
  color: var(--text-muted-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.62rem; color: var(--text-muted-dark); }

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #111;
  padding: 13px 28px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.88; }
.btn-ghost {
  display: inline-block;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: #fff; border-color: #fff; }

/* ── Hamburger ── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}
.nav-burger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .site-nav { padding: 12px 20px; flex-wrap: nowrap; }
  .site-nav .logo img { height: 83px; }
  .nav-burger { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    border-top: 1px solid #222;
    padding: 8px 0;
    z-index: 100;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 14px 20px;
    font-size: 0.8rem;
    border-bottom: 1px solid #1e1e1e;
  }
  .site-footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
  .section-h2 { font-size: 1.6rem; }
}

/* ── Hero ── */
.hero {
  background: var(--dark);
  padding: 80px 48px 120px;
  position: relative;
  overflow: hidden;
  min-height: 520px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 3s ease;
}
.hero-bg-slide.active {
  opacity: 0.18;
}
.hero-bg-slide.no-transition {
  transition: none;
}
.hero-line {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.hero-line-2 {
  position: absolute;
  left: 14px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(232,168,0,0.35), transparent);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-kicker::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
}
.hero-h1 {
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-h1 em {
  color: var(--gold);
  font-style: normal;
  display: block;
}
.hero-sub {
  font-size: 1rem;
  color: var(--text-muted-dark);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 440px;
}
.hero-btns { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.hero-stats {
  position: absolute;
  right: 48px;
  bottom: 80px;
  display: flex;
  gap: 40px;
  z-index: 2;
}
.stat-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-num span { color: var(--gold); }
.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
  margin-top: 4px;
}
@media (max-width: 768px) {
  .hero { padding: 60px 20px 80px; min-height: auto; }
  .hero-stats { position: static; margin-top: 40px; gap: 24px; }
}

/* ── Über uns ── */
.about {
  background: var(--light);
  padding: 80px 48px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about .section-h2 { color: var(--text-on-light); }
.about .section-eyebrow { color: var(--gold-on-light); }
.about .section-p { color: var(--text-muted-light); }
.about-img-wrap {
  position: relative;
  height: 340px;
  border-radius: 3px;
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-img-badge {
  position: absolute;
  bottom: 18px; left: 18px;
  background: var(--gold);
  color: #111;
  padding: 10px 18px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .about { grid-template-columns: 1fr; padding: 60px 20px; gap: 32px; }
  .about-img-wrap { height: 240px; }
}

/* ── Sportarten ── */
.sports {
  background: var(--dark);
  padding: 80px 48px;
}
.sports-header {
  text-align: center;
  margin-bottom: 48px;
}
.sports-header .section-h2 { color: var(--white); }
.sport-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1400px;
  margin: 0 auto;
}
.sport-card {
  background: var(--dark-2);
  border-top: 3px solid var(--gold);
  padding: 30px 22px 26px;
  transition: transform 0.2s;
}
.sport-card:hover { transform: translateY(-5px); }
.sport-card[data-href] { cursor: pointer; }
.sport-icon { display: block; margin-bottom: 14px; }
.sport-icon svg { width: 32px; height: 32px; color: var(--gold); display: block; }
.sport-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.sport-detail {
  font-size: 0.85rem;
  color: var(--text-muted-dark);
  line-height: 1.8;
}
.sport-detail strong { color: var(--gold); font-weight: 600; }
.sport-detail a { color: var(--text-muted-dark); border-bottom: 1px solid rgba(255,255,255,0.2); }
.sport-detail a:hover { color: var(--gold); border-color: var(--gold); }
@media (max-width: 900px) {
  .sport-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .sport-grid { grid-template-columns: 1fr; }
  .sports { padding: 60px 20px; }
}

/* ── Vorstand ── */
.vorstand {
  background: var(--light);
  padding: 80px 48px;
}
.vorstand-header {
  text-align: center;
  margin-bottom: 48px;
}
.vorstand-header .section-h2 { color: var(--text-on-light); }
.vorstand-header .section-eyebrow { color: var(--gold-on-light); }
.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}
.board-card {
  background: var(--white);
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border-bottom: 3px solid var(--gold);
}
.board-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  overflow: hidden;
  margin: 0 auto 18px;
}
.board-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.board-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-on-light);
  margin-bottom: 5px;
}
.board-role {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-on-light);
}
@media (max-width: 600px) {
  .board-grid { grid-template-columns: 1fr; max-width: 280px; }
  .vorstand { padding: 60px 20px; }
}

/* ── Kontakt ── */
.kontakt {
  background: var(--dark);
  padding: 80px 48px;
  text-align: center;
}
.kontakt .section-h2 { color: var(--white); font-size: 2rem; }
.kontakt-sub {
  font-size: 0.92rem;
  color: var(--text-muted-dark);
  margin-bottom: 30px;
  line-height: 1.75;
}
.kontakt-email {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 3px;
  margin-bottom: 32px;
  transition: opacity 0.2s;
}
.kontakt-email:hover { opacity: 0.8; }
.kontakt-address {
  font-size: 0.82rem;
  color: var(--text-muted-dark);
  line-height: 2;
}
@media (max-width: 768px) {
  .kontakt { padding: 60px 20px; }
}

/* ── Unterseiten (Satzung, Impressum, Datenschutz) ── */
.subpage-hero {
  background: var(--dark);
  padding: 100px 48px 100px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.subpage-hero h1 {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.05;
}
.subpage-hero .sub-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.subpage-hero .sub-kicker::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.subpage-content {
  background: var(--light);
  padding: 64px 48px 80px;
  max-width: 860px;
  margin: 0 auto;
}
.subpage-content h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-on-light);
  margin: 36px 0 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--gold);
}
.subpage-content h2:first-child { margin-top: 0; }
.subpage-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-muted-light);
  margin-bottom: 12px;
}
.subpage-content ul {
  padding-left: 20px;
  margin-bottom: 12px;
}
.subpage-content li {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-muted-light);
  margin-bottom: 4px;
}
.satzung-meta {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #ddd;
  font-size: 0.75rem;
  color: #999;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .subpage-hero { padding: 60px 20px 60px; min-height: 280px; }
  .subpage-content { padding: 48px 20px 60px; }
}

/* ── Back-to-top ── */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s, transform 0.25s;
  z-index: 200;
}
#back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#back-to-top:hover { background: #fff; }

/* ── Nav Section Label ── */
.nav-section-label {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex: 1;
  text-align: center;
}
@media (max-width: 768px) {
  .nav-section-label { display: none; }
}

/* ── Schießen: Verein ── */
.verein-section { background: var(--light); padding: 4rem 2rem; }
.verein-section .section-h2 { color: var(--text-on-light); }
.verein-section .section-eyebrow { color: var(--gold-on-light); }
.verein-inner { max-width: 800px; margin: 0 auto; }
.verein-subh {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-on-light);
  margin: 2rem 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.disziplinen-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.disziplin-tag {
  background: var(--gold);
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

/* ── Schießen: Training ── */
.training-section { background: var(--dark); padding: 4rem 2rem; }
.training-inner { max-width: 900px; margin: 0 auto; }
.training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.training-card {
  background: var(--dark-2);
  border-top: 3px solid var(--gold);
  padding: 1.5rem;
}
.training-day {
  color: var(--gold);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.training-time {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.training-info {
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  line-height: 1.5;
}
.training-anlage { margin-top: 2.5rem; }
.training-anlage-list {
  list-style: none;
  margin: 0.75rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.training-anlage-list li {
  color: var(--text-muted-dark);
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
}
.training-anlage-list li strong { color: #fff; }
.training-hinweis {
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 1rem;
}

/* ── Schießen: Anlage ── */
.anlage-section { background: var(--light); padding: 4rem 2rem; }
.anlage-section .section-h2 { color: var(--text-on-light); }
.anlage-section .section-eyebrow { color: var(--gold-on-light); }
.anlage-inner { max-width: 1000px; margin: 0 auto; }
.anlage-list {
  list-style: none;
  margin: 1.5rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.anlage-list li {
  color: var(--text-muted-light);
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
}
.anlage-list li strong { color: var(--text-on-light); }
.anlage-foto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.anlage-foto-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s;
}
.anlage-foto-grid img:hover { transform: translateY(-5px); }
.foto-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 300;
}
.foto-lightbox.active { opacity: 1; pointer-events: auto; }
.foto-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 4px;
  object-fit: contain;
}
.foto-lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
}
.anlage-hinweis {
  color: var(--text-muted-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .anlage-foto-grid { grid-template-columns: 1fr; }
  .anlage-foto-grid img { height: 200px; }
}

/* ── Schießen: News ── */
.news-section { background: var(--dark); padding: 4rem 2rem; }
.news-section .section-h2 { color: var(--white); }
.news-inner { max-width: 800px; margin: 0 auto; }
.news-list { display: flex; flex-direction: column; gap: 2rem; margin-top: 2rem; }
.news-item { border-left: 3px solid var(--gold); padding-left: 1.5rem; }
.news-date {
  color: var(--text-muted-dark);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.25rem;
}
.news-titel {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.news-text {
  color: var(--text-muted-dark);
  font-size: 1rem;
  line-height: 1.65;
}

.news-mehr-btn {
  margin-top: 2rem;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  padding: 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.news-mehr-btn:hover { border-bottom-color: var(--gold); }

/* ── Schießen: Wiederladen ── */
.wiederladen-section { background: var(--light); padding: 4rem 2rem; }
.wiederladen-section .section-h2 { color: var(--text-on-light); }
.wiederladen-section .section-eyebrow { color: var(--gold-on-light); }
.wiederladen-section .section-p { color: var(--text-muted-light); }
.wiederladen-inner { max-width: 800px; margin: 0 auto; }

/* ── Schießen: Kontakt Persons ── */
.kontakt-persons {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0 1.5rem;
}
.kontakt-person { text-align: center; }
.kontakt-name { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 0.2rem; }
.kontakt-rolle { color: var(--text-muted-dark); font-size: 0.95rem; margin-bottom: 0.5rem; }

/* ── Sport Card Link ── */
.sport-card-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.sport-card-link:hover { border-bottom-color: var(--gold); }
.sport-card-link-secondary {
  display: block;
  width: fit-content;
  margin-top: 0.5rem;
  color: var(--text-muted-dark);
  font-size: 0.72rem;
  font-weight: 600;
  border-bottom-color: transparent;
}
.sport-card-link-secondary:hover { color: var(--gold); border-bottom-color: var(--gold); }
