/* ============================================================
   TACTIX-SHOOTING · Stylesheet
   ============================================================

   SCHNELL-ÄNDERUNGEN — alles was du brauchst steht in :root:
   --accent      → Goldton (Hauptfarbe)
   --bg          → Seitenhintergrund
   --surface     → Kartenfarbe / Abschnittshintergrund
   --text        → Haupttextfarbe
   --muted       → Grauer Hilfstext
   --border      → Linien & Rahmen
   --heading     → Display-Schriftart
   --body        → Fließtext-Schriftart
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── DESIGN TOKENS ── */
:root {
  --bg:          #0d0d0d;
  --surface:     #161616;
  --border:      #2a2a2a;
  --accent:      #c8a84b;
  --accent-dim:  rgba(200, 168, 75, 0.12);
  --text:        #e8e4dc;
  --muted:       #6b6b6b;
  --heading:     'Bebas Neue', sans-serif;
  --body:        'DM Sans', sans-serif;
}

/* ── BASE ── */
html { scroll-behavior: smooth; }

body {
  background:   var(--bg);
  color:        var(--text);
  font-family:  var(--body);
  font-weight:  300;
  line-height:  1.7;
  overflow-x:   hidden;
}

/* ── NAV ── */
nav {
  position:        fixed;
  top: 0; left: 0; right: 0;
  z-index:         100;
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  padding:         1.2rem 3rem;
  background:      rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(12px);
  border-bottom:   1px solid var(--border);
}

.nav-logo {
  font-family:    var(--heading);
  font-size:      1.5rem;
  letter-spacing: 3px;
  color:          var(--accent);
}

.nav-links {
  display:    flex;
  gap:        2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size:       0.78rem;
  letter-spacing:  2px;
  text-transform:  uppercase;
  color:           var(--muted);
  transition:      color .2s;
}

.nav-links a:hover { color: var(--text); }

/* ── HERO ── */
.hero {
  min-height:            100vh;
  display:               grid;
  grid-template-columns: 1fr 1fr;
  align-items:           center;
  padding:               0 3rem;
  padding-top:           80px;
  gap:                   4rem;
  position:              relative;
  overflow:              hidden;
}

.hero::before {
  content:        '';
  position:       absolute;
  inset:          0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(200, 168, 75, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 10% 80%, rgba(200, 168, 75, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-label {
  font-size:      0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color:          var(--accent);
  margin-bottom:  1.2rem;
  opacity:        0;
  animation:      fadeUp .6s .1s forwards;
}

.hero-title {
  font-family:    var(--heading);
  font-size:      clamp(4rem, 8vw, 7.5rem);
  line-height:    0.92;
  letter-spacing: 2px;
  opacity:        0;
  animation:      fadeUp .6s .25s forwards;
}

.hero-title span { color: var(--accent); }

.hero-sub {
  margin-top: 1.8rem;
  font-size:  1.05rem;
  color:      var(--muted);
  max-width:  460px;
  opacity:    0;
  animation:  fadeUp .6s .4s forwards;
}

.hero-cta {
  margin-top: 2.5rem;
  display:    flex;
  gap:        1rem;
  flex-wrap:  wrap;
  opacity:    0;
  animation:  fadeUp .6s .55s forwards;
}

/* ── BUTTONS ── */
.btn {
  display:         inline-block;
  padding:         .85rem 2rem;
  font-family:     var(--body);
  font-size:       0.78rem;
  font-weight:     500;
  letter-spacing:  2px;
  text-transform:  uppercase;
  text-decoration: none;
  cursor:          pointer;
  border:          none;
  transition:      all .25s;
}

.btn-primary {
  background: var(--accent);
  color:      #0d0d0d;
}

.btn-primary:hover {
  background: #e0bb55;
  transform:  translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color:      var(--text);
  border:     1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color:        var(--accent);
}

/* ── HERO RIGHT (CERT CARDS) ── */
.hero-right {
  display:        flex;
  flex-direction: column;
  gap:            1.5rem;
  opacity:        0;
  animation:      fadeIn .8s .5s forwards;
}

.cert-card {
  background:  var(--surface);
  border:      1px solid var(--border);
  padding:     1.4rem 1.8rem;
  display:     flex;
  align-items: center;
  gap:         1.2rem;
  transition:  border-color .2s, transform .2s;
}

.cert-card:hover {
  border-color: var(--accent);
  transform:    translateX(4px);
}

.cert-icon {
  width:           40px;
  height:          40px;
  background:      var(--accent-dim);
  border:          1px solid rgba(200, 168, 75, 0.3);
  display:         flex;
  align-items:     center;
  justify-content: center;
  font-size:       1.1rem;
  flex-shrink:     0;
}

.cert-title {
  font-size:      0.82rem;
  font-weight:    500;
  letter-spacing: 1px;
}

.cert-sub {
  font-size:  0.72rem;
  color:      var(--muted);
  margin-top: .15rem;
}

/* ── LOCATION BADGE ── */
.location-badge {
  display:         inline-flex;
  align-items:     center;
  gap:             .6rem;
  background:      var(--accent-dim);
  border:          1px solid rgba(200, 168, 75, 0.25);
  padding:         .55rem 1rem;
  font-size:       0.75rem;
  letter-spacing:  1.5px;
  text-transform:  uppercase;
  color:           var(--accent);
  margin-top:      .5rem;
}

/* ── SECTION DIVIDER ── */
.section-divider {
  height:     1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin:     0 3rem;
}

/* ── SECTIONS (ALLGEMEIN) ── */
section { padding: 6rem 3rem; }

.section-tag {
  font-size:      0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color:          var(--accent);
  margin-bottom:  .8rem;
}

.section-title {
  font-family:    var(--heading);
  font-size:      clamp(2.5rem, 5vw, 4.5rem);
  line-height:    1;
  letter-spacing: 2px;
  margin-bottom:  2rem;
}

/* ── ABOUT ── */
.about-grid {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   4rem;
  align-items:           start;
}

.about-body {
  font-size:   1rem;
  color:       #b0aca5;
  line-height: 1.8;
}

.about-body p + p { margin-top: 1rem; }

.stat-list {
  display:        flex;
  flex-direction: column;
  gap:            1.2rem;
}

.stat-item {
  background:  var(--surface);
  border-left: 3px solid var(--accent);
  padding:     1.2rem 1.5rem;
}

.stat-num {
  font-family: var(--heading);
  font-size:   2.5rem;
  color:       var(--accent);
  line-height: 1;
}

.stat-label {
  font-size:      0.78rem;
  color:          var(--muted);
  letter-spacing: 1px;
  margin-top:     .2rem;
}

/* ── KURSLISTE ── */
.training-section { background: var(--surface); }

.kurse-list {
  display:        flex;
  flex-direction: column;
  gap:            .6rem;
  margin-top:     2.5rem;
}

/* Gruppenüberschrift (Status-Label) */
.kurs-group-label {
  font-size:      0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color:          var(--muted);
  padding:        .4rem 0;
  border-bottom:  1px solid var(--border);
  margin-bottom:  .4rem;
}

/* Einzelne Kurszeile */
.kurs-row {
  display:         flex;
  align-items:     center;
  gap:             1.5rem;
  padding:         1.1rem 1.5rem;
  background:      var(--bg);
  border:          1px solid var(--border);
  border-left:     3px solid transparent;
  transition:      border-color .2s, background .2s;
}

.kurs-row:hover { background: #111; }

/* Farbliche Markierung je Status */
.kurs-done  { border-left-color: #3a3a3a; opacity: .55; }
.kurs-open  { border-left-color: var(--accent); }
.kurs-soon  { border-left-color: #4a6b8a; }

.kurs-date {
  font-family:    var(--heading);
  font-size:      1.1rem;
  letter-spacing: 1px;
  color:          var(--text);
  min-width:      80px;
  flex-shrink:    0;
}

.kurs-info { flex: 1; }

.kurs-title {
  font-size:   0.92rem;
  font-weight: 500;
  color:       var(--text);
}

.kurs-location {
  font-size:  0.75rem;
  color:      var(--muted);
  margin-top: .15rem;
}

/* Status-Badge */
.kurs-badge {
  font-size:      0.68rem;
  font-weight:    500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding:        .35rem .8rem;
  border:         1px solid;
  flex-shrink:    0;
  white-space:    nowrap;
}

.badge-done {
  color:        var(--muted);
  border-color: var(--border);
  background:   transparent;
}

.badge-open {
  color:        var(--accent);
  border-color: rgba(200, 168, 75, 0.4);
  background:   var(--accent-dim);
}

.badge-soon {
  color:        #7aadcc;
  border-color: rgba(122, 173, 204, 0.35);
  background:   rgba(122, 173, 204, 0.07);
}

/* ── AVAILABILITY STRIP ── */
.avail-strip {
  background: var(--accent);
  color:      #0d0d0d;
  text-align: center;
  padding:    3rem;
}

.avail-strip h2 {
  font-family:    var(--heading);
  font-size:      clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 3px;
}

.avail-strip p {
  margin-top:  .8rem;
  font-size:   1rem;
  opacity:     .7;
  font-weight: 500;
}

.avail-strip .btn-dark {
  display:         inline-block;
  margin-top:      1.8rem;
  padding:         .9rem 2.2rem;
  background:      #0d0d0d;
  color:           var(--accent);
  font-size:       0.78rem;
  font-weight:     500;
  letter-spacing:  2px;
  text-transform:  uppercase;
  text-decoration: none;
  transition:      opacity .2s;
}

.avail-strip .btn-dark:hover { opacity: .85; }

/* ── FOOTER ── */
footer {
  padding:         2.5rem 3rem;
  border-top:      1px solid var(--border);
  display:         flex;
  justify-content: space-between;
  align-items:     center;
  flex-wrap:       wrap;
  gap:             1rem;
}

footer .logo {
  font-family:    var(--heading);
  font-size:      1.2rem;
  letter-spacing: 3px;
  color:          var(--accent);
}

footer p {
  font-size: 0.75rem;
  color:     var(--muted);
}

/* ── HERO LOGO BLOCK ── */
.hero-logo-block {
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  justify-content: center;
}

.hero-logo-img {
  width:      100%;
  max-width:  420px;
  height:     auto;
  opacity:    0;
  animation:  fadeIn 1s .4s forwards;
  filter:     drop-shadow(0 0 40px rgba(200,168,75,0.15));
}

/* ── CERT-LIST IN ABOUT (replaces stat-list) ── */
.cert-list {
  display:        flex;
  flex-direction: column;
  gap:            1rem;
}

/* ── KURS LINK BADGE ── */
a.kurs-link {
  text-decoration: none;
  cursor:          pointer;
  transition:      background .2s, color .2s, transform .2s;
}

a.kurs-link:hover {
  background:  var(--accent);
  color:       #0d0d0d;
  transform:   translateX(-3px);
}

/* ── IMPRESSUM ── */
.impressum-body {
  max-width:      700px;
  display:        flex;
  flex-direction: column;
  gap:            2.5rem;
}

.impressum-block h2 {
  font-family:    var(--heading);
  font-size:      1.3rem;
  letter-spacing: 1px;
  color:          var(--accent);
  margin-bottom:  .6rem;
}

.impressum-block p {
  font-size:   0.95rem;
  color:       #b0aca5;
  line-height: 1.8;
}

.impressum-block a {
  color:           var(--accent);
  text-decoration: none;
}

.impressum-block a:hover {
  text-decoration: underline;
}

/* ── ANIMATIONEN ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav                         { padding: 1rem 1.5rem; }
  .nav-links                  { display: none; }
  .hero                       { grid-template-columns: 1fr; padding: 6rem 1.5rem 3rem; gap: 3rem; }
  .hero-logo-block            { display: none; }
  .about-grid                 { grid-template-columns: 1fr; }
  section                     { padding: 4rem 1.5rem; }
  .section-divider            { margin: 0 1.5rem; }
  footer                      { flex-direction: column; padding: 2rem 1.5rem; text-align: center; }
  .kurs-row                   { flex-wrap: wrap; gap: .8rem; }
  .kurs-badge                 { width: 100%; text-align: center; }
}
