/* ============================================================
   BNI Golf & Networking Event 2026 – Landingpage Styles
   ============================================================ */

:root {
  --red: #D5192E;
  --red-dark: #B0121F;
  --green: #0F3A2A;
  --green-2: #1B5238;
  --cream: #F7F3EC;
  --paper: #FFFFFF;
  --ink: #14110F;
  --ink-soft: #3A3733;
  --muted: #665F57;
  --line: #E8E1D6;
  --shadow-sm: 0 1px 2px rgba(20,17,15,.05);
  --shadow-md: 0 8px 30px rgba(20,17,15,.08);
  --shadow-lg: 0 30px 60px rgba(20,17,15,.15);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: 'Barlow Condensed', Impact, 'Arial Narrow Bold', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --wrap: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Fokus-Ringe (nur bei Keyboard-Fokus) */
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible { outline-offset: 4px; }

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ TYPOGRAPHY ============
   Duale Strategie:
   - font-display (Barlow Condensed) NUR für große Impact-Headlines & Zahlen
   - font-body (Inter Bold) für alle mittleren Sub-Headings (bessere Lesbarkeit)
============================================ */

.hero-title,
.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin: 0 0 0.4em;
  color: var(--ink);
  text-transform: none;
}

.hero-title { font-size: clamp(3.5rem, 8vw, 6.5rem); }
.section-title { font-size: clamp(2.2rem, 5vw, 4rem); }
.section-title.light { color: #fff; }

/* Sub-Heading: Inter Extra-Bold, straffer letter-spacing, klarer lesbar als Condensed */
.sub-heading {
  font-family: var(--font-body);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--red);
}
.section-eyebrow.light { color: #fff; border-color: #fff; }

.section-lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 3rem;
}

.lead { font-size: 1.15rem; color: rgba(255,255,255,0.9); }

/* ============ BUTTONS ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-sm { padding: 10px 18px; font-size: 0.9rem; }
.btn-lg { padding: 18px 34px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 22px rgba(213,25,46,0.28);
}
.btn-primary:hover { background: var(--red-dark); box-shadow: 0 12px 28px rgba(213,25,46,0.36); }
.btn[disabled], .btn.is-loading {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}
.btn.is-loading { position: relative; padding-left: 44px; }
.btn.is-loading::before {
  content: '';
  position: absolute;
  left: 20px; top: 50%;
  width: 16px; height: 16px;
  margin-top: -8px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover { background: var(--green); color: #fff; }

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.55); }

/* ============ HEADER ============ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247,243,236,0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand { display: flex; align-items: baseline; gap: 8px; }
.brand-mark {
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1;
  padding: 6px 10px 4px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}
.brand-region {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.header-nav { display: flex; align-items: center; gap: 28px; }
.header-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: color .15s ease;
}
.header-nav a:hover { color: var(--red); }
.header-nav a.btn { color: #fff; }

@media (max-width: 720px) {
  .header-nav a:not(.btn) { display: none; }
}

/* ============ HERO ============ */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #0a0a0a;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.85) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 60%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-top: 80px;
  padding-bottom: 140px;
  max-width: 900px;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
  font-weight: 600;
  color: #fff;
}
.kicker-badge {
  background: var(--red);
  color: #fff;
  padding: 10px 18px 8px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(213,25,46,0.35);
}
.kicker-dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; opacity: 0.55; }
.kicker-place {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.95;
}
@media (max-width: 720px) {
  .kicker-badge { font-size: 1.25rem; padding: 8px 14px 6px; }
  .kicker-place { font-size: 0.85rem; }
}

.hero-title {
  color: #fff;
  text-shadow: 0 4px 24px rgba(0,0,0,0.4);
  margin-bottom: 24px;
}
.hero-title-accent { color: #fff; opacity: 0.92; }

.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: rgba(255,255,255,0.92);
  max-width: 640px;
  margin-bottom: 36px;
}
.hero-sub strong { color: #fff; font-weight: 600; }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 60px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 640px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 24px;
}
.hero-facts > div { display: flex; flex-direction: column; gap: 4px; }
.fact-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: #fff;
  line-height: 1;
}
.fact-label {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

.hero-brand-cut {
  position: absolute;
  bottom: -1px; right: -1px;
  width: 45%; height: 25%;
  background: var(--red);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-brand-cut::before {
  content: 'BNI Augsburg';
  position: absolute;
  bottom: 24px; right: 32px;
  font-family: var(--font-display);
  font-weight: 900;
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .hero { min-height: 100vh; }
  .hero-inner { padding-bottom: 180px; padding-top: 60px; }
  .hero-facts { grid-template-columns: 1fr; gap: 16px; }
  .hero-brand-cut { width: 65%; height: 20%; }
  .hero-brand-cut::before { font-size: 1rem; bottom: 18px; right: 20px; }
}

/* ============ SECTION SPACING ============ */

section { padding: 100px 0; }
@media (max-width: 720px) { section { padding: 70px 0; } }

/* ============ INTRO ============ */

.intro { background: var(--cream); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.intro-body { font-size: 1.1rem; color: var(--ink-soft); }
@media (max-width: 900px) { .intro-grid { grid-template-columns: 1fr; gap: 24px; } }

/* ============ ABLAUF / TIMELINE ============ */

.ablauf { background: var(--paper); }

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 120px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: var(--line);
}
.tl-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  column-gap: 60px;
  padding: 28px 0;
  position: relative;
}
.tl-item + .tl-item { border-top: 1px solid var(--line); }
.tl-time {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--green);
  line-height: 1;
  padding-top: 6px;
}
/* Punkt sitzt auf der vertikalen Linie bei left:120px */
.tl-item::after {
  content: '';
  position: absolute;
  left: 120px;
  top: 34px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--paper);
  border: 3px solid var(--green);
  transform: translateX(-50%);
  z-index: 1;
}
.tl-item.highlight .tl-time { color: var(--red); }
.tl-item.highlight::after { border-color: var(--red); background: var(--red); }
.tl-body h3 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  line-height: 1.2;
  color: var(--ink);
}
.tl-body p { margin: 0; color: var(--ink-soft); }
.tl-meta {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--muted);
  margin-left: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 720px) {
  .timeline::before { left: 8px; }
  .tl-item {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 8px;
    padding-left: 32px;
  }
  .tl-item::after { left: 8px; top: 34px; }
  .tl-time { font-size: 1.5rem; padding-top: 0; }
}

/* ============ FORMAT ============ */

.format {
  background: var(--green);
  color: #fff;
  position: relative;
}
.format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.format-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.format-image img { width: 100%; height: 100%; object-fit: cover; }
.format-copy p, .format-copy li { color: rgba(255,255,255,0.88); }
.checklist { list-style: none; padding: 0; margin: 0 0 32px; }
.checklist li {
  position: relative;
  padding: 10px 0 10px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 18px; height: 10px;
  border-left: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  transform: rotate(-45deg);
}
.format-badge {
  background: rgba(255,255,255,0.06);
  border-left: 3px solid var(--red);
  padding: 18px 22px;
  border-radius: 6px;
  margin-top: 24px;
  font-size: 0.98rem;
  color: rgba(255,255,255,0.9);
}
.format-badge strong { color: #fff; display: block; margin-bottom: 4px; }

@media (max-width: 900px) {
  .format-grid { grid-template-columns: 1fr; gap: 40px; }
  .format-image { aspect-ratio: 4/3; }
}

/* ============ PREISE ============ */

.preise { background: var(--cream); }

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card--primary {
  border: 2px solid var(--red);
  box-shadow: var(--shadow-md);
}
.price-tag {
  position: absolute;
  top: -14px; left: 32px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.price-tag--muted { background: var(--ink); }
.price-card h3 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 4px 0 16px;
  color: var(--ink);
}
.price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3rem;
  line-height: 1;
  color: var(--green);
  margin-bottom: 28px;
}
.price span {
  display: inline-block;
  font-size: 1rem;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 500;
  margin-left: 4px;
}
.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.price-list li {
  padding: 8px 0 8px 26px;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.98rem;
  border-bottom: 1px solid var(--line);
}
.price-list li:last-child { border-bottom: none; }
.price-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

@media (max-width: 800px) {
  .price-grid { grid-template-columns: 1fr; }
}

/* ============ FORMULAR ============ */

.anmeldung {
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.form-container { max-width: 860px; }
.form-header { text-align: center; margin-bottom: 48px; }
.form-header .section-eyebrow { border-color: var(--red); }
.form-header .section-lead { margin-left: auto; margin-right: auto; }

.form {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--line);
}

.form-block {
  border: none;
  padding: 0;
  margin: 0 0 40px;
}
.form-block legend {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.005em;
  color: var(--green);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green);
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-block legend::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 2px;
  transform: rotate(45deg);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field--wide { grid-column: 1 / -1; }
.field > span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(213,25,46,0.15);
}
.field textarea { resize: vertical; min-height: 60px; }

.checkbox {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 4px 0;
}
.checkbox input[type="checkbox"] {
  width: 20px; height: 20px;
  margin: 2px 0 0;
  accent-color: var(--red);
  cursor: pointer;
  flex-shrink: 0;
}
.checkbox span { font-size: 0.98rem; color: var(--ink-soft); line-height: 1.5; }

/* Radio-Cards */
.radio-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.radio-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 24px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.radio-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.radio-card:has(input:checked) {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(213,25,46,0.12);
}
.rc-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.005em;
  color: var(--ink);
  line-height: 1.2;
}
.rc-price {
  font-weight: 600;
  color: var(--muted);
  font-size: 0.95rem;
}
@media (max-width: 600px) {
  .radio-cards { grid-template-columns: 1fr; }
}

.conditional {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .3s ease, opacity .3s ease, margin .3s ease;
  grid-column: 1 / -1;
}
.conditional.open {
  max-height: 400px;
  opacity: 1;
  margin-top: 8px;
}

.form-submit {
  border-top: 2px solid var(--line);
  padding-top: 32px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
}
.consent { padding: 4px 0; }
.form-hint { text-align: center; font-size: 0.9rem; color: var(--muted); margin: 0; }
.form-hint a { color: var(--red); font-weight: 600; }

@media (max-width: 600px) {
  .form { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
}

/* Alerts */
.alert {
  padding: 18px 22px;
  border-radius: var(--radius);
  margin-bottom: 32px;
  border-left: 4px solid;
}
.alert-success {
  background: #E8F5EE;
  border-color: #1E7B45;
  color: #0F4A29;
}
.alert-error {
  background: #FBE9EC;
  border-color: var(--red);
  color: var(--red-dark);
}

/* ============ VERANSTALTER ============ */

.host {
  background: var(--green);
  color: #fff;
}
.host .section-eyebrow { color: #fff; border-color: #fff; }
.host .section-title { color: #fff; }
.host p { color: rgba(255,255,255,0.85); font-size: 1.1rem; }

.host-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.host-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.host-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-left: 3px solid var(--red);
}
.host-name {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.015em;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px;
}
.host-role { font-weight: 600; color: rgba(255,255,255,0.9); font-size: 0.98rem; }
.host-org { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-top: 4px; }

@media (max-width: 900px) {
  .host-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 500px) {
  .host-cards { grid-template-columns: 1fr; }
}

/* ============ FOOTER ============ */

.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; align-items: baseline; gap: 8px; }
.footer-brand .brand-region { color: #fff; }
.footer-meta { font-size: 0.95rem; }
.footer-meta strong { color: #fff; font-weight: 600; display: block; }
.footer-links { display: flex; flex-direction: column; gap: 6px; text-align: right; font-size: 0.95rem; }
.footer-links a:hover { color: #fff; }
.footer-copy {
  padding-top: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-links { align-items: center; text-align: center; }
}
