/* =========================================
   proshot LE academy — Premium Website CSS
   Design: Admir Celikovic / einfachbetrieb.de
   ========================================= */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #080808;
  --surface:   #111111;
  --surface2:  #1c1c1c;
  --border:    #262626;
  --red:       #b91c1c;
  --red-bright:#dc2626;
  --red-glow:  rgba(185, 28, 28, 0.12);
  --red-glow2: rgba(185, 28, 28, 0.06);
  --gold:      #c9a84c;
  --gold-light:#e2c46e;
  --white:     #f5f5f5;
  --gray-300:  #c8c8c8;
  --gray-400:  #888888;
  --gray-500:  #555555;
  --max-w:     1280px;
  --radius:    4px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  background-color: var(--bg);
  color: var(--white);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Bebas Neue', 'Impact', 'Arial Narrow', sans-serif;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.0;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 16px;
  position: relative;
  padding-left: 28px;
}
.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 2px;
  background: var(--red-bright);
}

/* ---- UTILITY ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  padding: 15px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--red);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary:hover { background: var(--red-bright); border-color: var(--red-bright); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 15px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--transition);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--gold);
  padding: 13px 30px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--bg); }

/* ---- CUSTOM CURSOR ---- */
.cursor {
  width: 8px;
  height: 8px;
  background: var(--red-bright);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(185,28,28,0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.3s, height 0.3s;
}
/* Touch-Geräte haben keine Maus — Custom Cursor würde als stehender Punkt sichtbar bleiben */
@media (hover: none), (pointer: coarse) {
  .cursor, .cursor-ring { display: none !important; }
}

/* ---- NAVIGATION ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}
.nav.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  line-height: 1.0;
}
.nav-logo span {
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-300);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--red);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--gray-400);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 5px 10px;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}
.lang-btn:hover, .lang-btn.active {
  border-color: var(--gold);
  color: var(--gold);
}

.nav-cta {
  background: var(--red);
  color: var(--white);
  padding: 10px 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--red-bright); }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ---- HERO ---- */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding-top: 72px;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(185,28,28,0.06) 0%, transparent 60%),
              radial-gradient(ellipse 40% 60% at 10% 80%, rgba(201,168,76,0.04) 0%, transparent 50%);
  pointer-events: none;
}

#particles-canvas {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
}

.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 52%;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.9) contrast(1.05);
}
.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, rgba(8,8,8,0.4) 50%, transparent 100%);
  z-index: 1;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 30%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 40px;
  max-width: 700px;
  padding-left: calc((100vw - var(--max-w)) / 2 + 40px);
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-location::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-h1 {
  font-size: clamp(60px, 8vw, 110px);
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease 0.4s forwards;
}
.hero-h1 .red { color: var(--red-bright); }
.hero-h1 .gold { color: var(--gold); }

.hero-sub {
  font-size: 14px;
  color: var(--gray-300);
  letter-spacing: 1px;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.6s forwards;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-sub-dot { color: var(--red); }

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero-stats {
  display: flex;
  gap: 48px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 1.0s forwards;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  line-height: 1;
  color: var(--white);
}
.hero-stat-num span { color: var(--red); font-size: 32px; }
.hero-stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-top: 4px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-500);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gray-500));
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.trust-bar::before,
.trust-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.trust-bar::before { left: 0; background: linear-gradient(to right, var(--surface), transparent); }
.trust-bar::after { right: 0; background: linear-gradient(to left, var(--surface), transparent); }

.trust-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: scrollTrust 24s linear infinite;
}
.trust-track-inner {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-500);
  padding: 0 36px;
  transition: color 0.3s;
}
.trust-item::after {
  content: '✦';
  color: var(--red);
  font-size: 8px;
}
.trust-bar:hover .trust-track { animation-play-state: paused; }
.trust-item:hover { color: var(--gray-300); }

@keyframes scrollTrust {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- VIDEO SECTION ---- */
.video-section {
  position: relative;
  height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--bg) 0%, transparent 20%, transparent 80%, var(--bg) 100%);
}
.video-text {
  position: relative;
  z-index: 2;
  text-align: center;
}
.video-text h2 { font-size: clamp(48px, 7vw, 96px); letter-spacing: 6px; }
.video-placeholder {
  position: absolute;
  inset: 0;
  background: var(--surface);
  background-image: repeating-linear-gradient(
    0deg, transparent, transparent 39px, var(--border) 40px
  ), repeating-linear-gradient(
    90deg, transparent, transparent 39px, var(--border) 40px
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.video-placeholder-icon { font-size: 48px; opacity: 0.3; }
.video-placeholder p { font-size: 12px; letter-spacing: 2px; color: var(--gray-500); text-transform: uppercase; }

/* ---- ABOUT ---- */
#about {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
#about::before {
  content: '';
  position: absolute;
  right: -200px;
  top: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--red-glow2) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.95) contrast(1.05);
}
.about-image-accent {
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 2px solid var(--red);
  pointer-events: none;
  z-index: -1;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--red);
  padding: 20px 28px;
  text-align: center;
}
.about-badge-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  line-height: 1;
  color: var(--white);
}
.about-badge-text {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.about-content h2 { font-size: clamp(48px, 5vw, 72px); margin-bottom: 24px; }

.about-bio {
  color: var(--gray-300);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.qualifications {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}
.qual-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 13px;
  color: var(--gray-300);
  line-height: 1.5;
}
.qual-dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: var(--red);
  border-radius: 50%;
  margin-top: 7px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.about-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  line-height: 1;
  color: var(--red-bright);
}
.about-stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-top: 6px;
}

/* ---- KURSE ---- */
#kurse {
  padding: 120px 0;
  background: var(--surface);
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-header h2 { font-size: clamp(48px, 6vw, 80px); margin-bottom: 16px; }
.section-header p { color: var(--gray-400); font-size: 15px; max-width: 500px; margin: 0 auto; }

.kurse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.kurs-card {
  background: var(--bg);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
  border: 1px solid transparent;
}
.kurs-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--red);
  transition: height 0.5s ease;
}
.kurs-card:hover {
  background: var(--surface2);
  border-color: var(--border);
  transform: translateY(-4px);
}
.kurs-card:hover::before { height: 100%; }

.kurs-card-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  line-height: 1;
  color: var(--border);
  position: absolute;
  top: 16px;
  right: 24px;
  transition: color 0.3s;
}
.kurs-card:hover .kurs-card-number { color: var(--red-glow); }

.kurs-icon {
  width: 48px;
  height: 48px;
  background: var(--red-glow);
  border: 1px solid rgba(185,28,28,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 20px;
  color: var(--red-bright);
}

.kurs-title {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
  color: var(--white);
  line-height: 1.3;
}

.kurs-target {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--gold);
  margin-bottom: 16px;
}

.kurs-desc {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 28px;
}

.kurs-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--white);
  letter-spacing: 1px;
}
.kurs-price-sub {
  font-size: 10px;
  color: var(--gray-500);
  letter-spacing: 1px;
  margin-top: 2px;
}

.kurs-anfrage {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  margin: -12px 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-top: 8px;
  transition: color 0.3s;
}
.kurs-anfrage svg { transition: transform 0.3s; }
.kurs-card:hover .kurs-anfrage { color: var(--red-bright); }
.kurs-card:hover .kurs-anfrage svg { transform: translateX(4px); }

/* ---- COURSE DETAIL SECTIONS ---- */
.course-detail {
  padding: 0;
  overflow: hidden;
}
.course-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.course-detail-inner.reverse { direction: rtl; }
.course-detail-inner.reverse > * { direction: ltr; }

.course-detail-image {
  position: relative;
  overflow: hidden;
  min-width: 0;
}
.course-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.course-detail:hover .course-detail-image img { transform: scale(1.03); }
.course-detail-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.3) 0%, transparent 60%);
}

.course-detail-content {
  background: var(--surface);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.course-detail-content h2 { font-size: clamp(40px, 4vw, 64px); margin-bottom: 16px; }
.course-detail-content p { color: var(--gray-300); font-size: 15px; line-height: 1.8; margin-bottom: 36px; }

.course-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 44px;
}
.course-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--gray-300);
}
.course-highlight-dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

.course-meta {
  display: flex;
  gap: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}
.course-meta-item label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-500);
  display: block;
  margin-bottom: 4px;
}
.course-meta-item span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--white);
  letter-spacing: 1px;
}

p.course-group-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--gray-400);
  margin: -20px 0 32px;
}
.course-group-hint::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
p.course-group-hint.centered {
  display: block;
  text-align: center;
  max-width: 460px;
  margin: 20px auto 0;
}
p.course-group-hint.centered::before { display: none; }

/* ---- HINWEIS ---- */
.hinweis-bar {
  background: rgba(185,28,28,0.08);
  border-top: 1px solid rgba(185,28,28,0.2);
  border-bottom: 1px solid rgba(185,28,28,0.2);
  padding: 24px 0;
}
.hinweis-bar .container {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hinweis-icon { font-size: 18px; flex-shrink: 0; }
.hinweis-bar p {
  font-size: 12px;
  color: var(--gray-300);
  line-height: 1.6;
  letter-spacing: 0.3px;
}
.hinweis-bar strong { color: var(--red-bright); }

/* ---- BOOKING ---- */
#buchung {
  padding: 120px 0;
  position: relative;
}
#buchung::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(185,28,28,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.buchung-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 64px;
}
.buchung-intro-text h2 { font-size: clamp(40px, 5vw, 72px); margin-bottom: 20px; }
.buchung-intro-text p { color: var(--gray-300); font-size: 15px; line-height: 1.8; }

.buchung-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.buchung-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.buchung-step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--red);
  line-height: 1;
  min-width: 36px;
}
.buchung-step-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.buchung-step p { font-size: 13px; color: var(--gray-400); }

.cal-consent-box {
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 48px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cal-consent-box p {
  color: var(--gray-300);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.cal-consent-box a { color: var(--gold); text-decoration: underline; }
.cal-consent-box a:hover { color: var(--gold-light); }

#cal-embed-container {
  display: none;
  width: 100%;
  min-height: 700px;
  background: var(--surface);
  border: 1px solid var(--border);
}

/* ---- GALLERY ---- */
#galerie {
  padding: 120px 0;
  background: var(--surface);
}

.gallery-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 920px;
  margin: 0 auto;
}

.gallery-video-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px 6px 9px;
  background: rgba(8, 8, 8, 0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(245, 245, 245, 0.18);
  border-radius: 99px;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
}
.gallery-video-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.6);
  animation: galleryPulse 1.8s infinite;
}
@keyframes galleryPulse {
  0%   { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(220, 38, 38, 0); }
  100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

.gallery-feature {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  margin: 24px auto 0;
  width: 100%;
  max-width: 920px;
  aspect-ratio: 16 / 9;
  background: var(--surface);
}
.gallery-feature-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.82) contrast(1.08) saturate(0.92);
}
.gallery-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.78) 0%, rgba(8,8,8,0.05) 50%, rgba(8,8,8,0) 75%);
  pointer-events: none;
}
.gallery-feature .gallery-video-badge {
  top: 20px;
  right: 20px;
}
.gallery-feature-caption {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 2;
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em;
  font-size: clamp(20px, 3vw, 28px);
  text-transform: uppercase;
  pointer-events: none;
}
.gallery-feature-caption::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--red);
  margin-right: 11px;
  vertical-align: middle;
}
@media (max-width: 640px) {
  .gallery-feature {
    max-width: 480px;
  }
}

/* ---- LIGHTBOX ---- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox-img {
  max-height: 90vh;
  max-width: 90vw;
  object-fit: contain;
  border: 1px solid var(--border);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: 1px solid var(--border);
  color: var(--white);
  width: 44px; height: 44px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--red); border-color: var(--red); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: 1px solid var(--border);
  color: var(--white);
  width: 52px; height: 52px;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--red); border-color: var(--red); }

/* ---- CONTACT ---- */
#kontakt {
  padding: 120px 0;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.kontakt-info h2 { font-size: clamp(40px, 4vw, 64px); margin-bottom: 20px; }
.kontakt-info p { color: var(--gray-300); font-size: 15px; line-height: 1.8; margin-bottom: 48px; }

.kontakt-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.kontakt-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.kontakt-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--red-glow);
  border: 1px solid rgba(185,28,28,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.kontakt-detail-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-500);
  display: block;
  margin-bottom: 2px;
}
.kontakt-detail-value {
  font-size: 14px;
  color: var(--gray-300);
}
.kontakt-detail-value a:hover { color: var(--red-bright); }

/* ---- FORM ---- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-400);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: var(--surface2);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select option { background: var(--surface2); }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: var(--transition);
  margin-top: 3px;
}
.form-checkbox input[type="checkbox"]:checked {
  background: var(--red);
  border-color: var(--red);
}
.form-checkbox input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
}
.form-checkbox span {
  font-size: 12px;
  color: var(--gray-400);
  line-height: 1.6;
}
.form-checkbox span a { color: var(--gold); text-decoration: underline; }

.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--red);
  color: var(--white);
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}
.form-submit:hover { background: var(--red-bright); }

.form-success {
  display: none;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 24px;
  text-align: center;
  color: #4ade80;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ---- FOOTER ---- */
footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 4px;
  margin-bottom: 4px;
}
.footer-logo-sub {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
}
.footer-desc {
  margin-top: 16px;
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 13px;
  color: var(--gray-500);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a::before {
  content: '›';
  color: var(--red);
  font-size: 16px;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 11px;
  color: var(--gray-500);
  letter-spacing: 0.5px;
}
.footer-credit {
  font-size: 11px;
  color: var(--gray-500);
  letter-spacing: 0.5px;
}
.footer-credit a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-credit a:hover { color: var(--gold-light); }
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 11px;
  color: var(--gray-500);
  letter-spacing: 0.5px;
  transition: color 0.3s;
}
.footer-legal a:hover { color: var(--white); }

/* ---- AOS CUSTOM ---- */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ---- MOBILE NAV DRAWER ---- */
.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  width: min(360px, 100vw);
  height: 100vh;
  background: #050505;
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid var(--border);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: 1px solid var(--border);
  color: var(--white);
  width: 40px; height: 40px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.mobile-nav-close:hover { background: var(--red); border-color: var(--red); }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav ul li a {
  display: block;
  font-size: 28px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 3px;
  color: var(--gray-400);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.3s, padding-left 0.3s;
}
.mobile-nav ul li a:hover { color: var(--white); padding-left: 12px; }
.mobile-nav-cta { margin-top: 40px; }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1999;
  display: none;
}
.nav-overlay.active { display: block; }

/* ---- SCROLL TO TOP ---- */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--red);
  border: none;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, background 0.3s;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--red-bright); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-image { width: 48%; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-image-wrap { max-height: 500px; }
  .about-image-wrap img { height: 500px; }
  .kurse-grid { grid-template-columns: repeat(2, 1fr); }
  .course-detail-inner { grid-template-columns: 1fr; }
  .course-detail-inner.reverse { direction: ltr; }
  .course-detail-image { min-height: 400px; }
  .buchung-intro { grid-template-columns: 1fr; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav { padding: 0 20px; }
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .hero-image { width: 100%; opacity: 0.3; }
  .hero-content {
    padding: 80px 20px 60px;
    max-width: 100%;
    text-align: center;
  }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; gap: 32px; }
  .hero-location { justify-content: center; }
  .kurse-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .about-badge { position: relative; bottom: auto; right: auto; display: inline-block; margin-top: 16px; }
  #about, #kurse, #buchung, #galerie, #kontakt { padding: 80px 0; }
  .course-detail-content { padding: 48px 24px; }
  .hero-h1 { font-size: clamp(52px, 12vw, 80px); }
  .hero-stats { flex-wrap: wrap; }
  .buchung-intro { margin-bottom: 40px; }
}

/* ---- LEGAL PAGES ---- */
.legal-page {
  padding: 120px 0 80px;
  min-height: 100vh;
}
.legal-page h1 { font-size: 56px; margin-bottom: 16px; }
.legal-page .legal-date {
  font-size: 11px;
  color: var(--gray-500);
  letter-spacing: 2px;
  margin-bottom: 64px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
}
.legal-page h2 { font-size: 28px; margin: 48px 0 16px; }
.legal-page h3 { font-size: 20px; margin: 32px 0 12px; font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: 0; }
.legal-page p { font-size: 14px; color: var(--gray-300); line-height: 1.8; margin-bottom: 16px; }
.legal-page ul { margin: 12px 0 16px 20px; }
.legal-page ul li { font-size: 14px; color: var(--gray-300); line-height: 1.8; list-style: disc; margin-bottom: 6px; }
.legal-page a { color: var(--gold); text-decoration: underline; }
.legal-page a:hover { color: var(--gold-light); }
.legal-placeholder { color: var(--red-bright) !important; font-weight: 700; }

/* ---- AUSBILDUNGSINHALT MODAL ---- */
.kurs-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.kurs-modal-overlay.active { display: flex; }
.kurs-modal-box {
  background: #111;
  border: 1px solid var(--border);
  border-top: 3px solid var(--red-bright);
  border-radius: 4px;
  max-width: 680px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  padding: 48px 40px 40px;
  scrollbar-width: thin;
  scrollbar-color: var(--red-bright) #111;
}
.kurs-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--gray-400);
  font-size: 18px;
  cursor: pointer;
  transition: color 0.2s;
  padding: 4px 8px;
}
.kurs-modal-close:hover { color: var(--white); }
.kurs-modal-tag {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.legal-ref {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.5px;
  font-size: 0.72em;
}

.kurs-modal-inner h3 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 4vw, 26px);
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 8px;
}
.kurs-modal-inner .kurs-modal-zielgruppe {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--red-bright);
  text-transform: none;
  font-family: 'Inter', sans-serif;
  margin-bottom: 20px !important;
}
.kurs-modal-inner > p {
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: 24px;
}
.kurs-modal-inner h4 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: none;
  color: var(--gray-400);
  margin: 24px 0 12px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}
.kurs-modal-inner ul {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}
.kurs-modal-inner ul li {
  font-size: 13px;
  color: var(--gray-300);
  padding: 6px 0 6px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
  line-height: 1.6;
}
.kurs-modal-inner ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  background: var(--red-bright);
  border-radius: 50%;
}
.kurs-modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.kurs-modal-meta span {
  font-size: 12px;
  color: var(--gray-400);
  background: rgba(255,255,255,0.04);
  padding: 6px 14px;
  border-radius: 2px;
  border: 1px solid var(--border);
}
@media (max-width: 600px) {
  .kurs-modal-box { padding: 40px 20px 28px; }
}

/* ---- KURS DETAILS HINT ---- */
.kurs-details-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 6px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
}
.kurs-card:hover .kurs-details-hint {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
}
