/* Golf Welt – Shared Styles */
:root {
  --bg: #0b1220;
  --card: #0f172a;
  --muted: #94a3b8;
  --text: #e2e8f0;
  --brand: #0f6d2f;
  --brand-2: #22c55e;
  --accent: #34d399;
  --shadow: 0 10px 30px rgba(0, 0, 0, .35);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1200px 600px at 80% -10%, rgba(52, 211, 153, .12), transparent 60%),
  radial-gradient(1200px 600px at 20% 110%, rgba(34, 197, 94, .12), transparent 60%),
  linear-gradient(180deg, #070b14, #0b1220 40%);
}

.container {
  max-width: 1100px;
  margin-inline: auto;
  padding: 0 20px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 920px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  background: #fff;
  color: #000;
  padding: .5rem .75rem;
  border-radius: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(7, 11, 20, .6);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(148, 163, 184, .12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.brand-mark {
  font-size: 1.2rem;
}

.brand-text {
  letter-spacing: .3px;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  padding: .55rem .8rem;
  border-radius: 10px;
}
.nav .btn {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.nav a.active, .nav a:hover {
  background: rgba(148, 163, 184, .1);
}

.btn {
  display: inline-block;
  border-radius: 12px;
  padding: .7rem 1rem;
  text-decoration: none;
  font-weight: 600;
  transition: .2s ease;
  box-shadow: var(--shadow);
  border: 1px solid transparent;
}

.btn-small {
  padding: .45rem .8rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #08120a;
}

.btn-primary:hover {
  filter: brightness(1.1);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(148, 163, 184, .25);
  color: var(--text);
}

.btn-ghost:hover {
  background: rgba(148, 163, 184, .1);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
}

.nav-toggle .burger, .nav-toggle .burger::before, .nav-toggle .burger::after {
  content: "";
  display: block;
  background: #e2e8f0;
  height: 2px;
  border-radius: 2px;
  width: 22px;
  margin-inline: auto;
  position: relative;
}

.nav-toggle .burger::before {
  top: -6px;
  position: relative;
}

.nav-toggle .burger::after {
  top: 4px;
  position: relative;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: absolute;
    inset: 60px 0 auto 0;
    display: none;
  }

  .nav.open {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    background: rgba(7, 11, 20, .9);
    border: 1px solid rgba(148, 163, 184, .15);
    margin: .5rem;
    padding: .5rem;
    border-radius: 14px;
  }

  .nav a {
    padding: .9rem 1rem;
  }
}

.hero {
  position: relative;
  padding: 64px 0 24px;
}

.hero .hero-actions {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hero-highlights {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.2rem 0 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.hero-art {
  display: grid;
  place-items: center;
}

.golf-illustration {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1/1.1;
  background: linear-gradient(180deg, #0a1428, #0b1c30);
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, .15);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.golf-illustration .sun {
  position: absolute;
  top: 16%;
  left: 18%;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, #fde68a 40%, transparent 60%);
  filter: blur(.2px);
}

.golf-illustration .hill {
  position: absolute;
  bottom: -10%;
  left: -10%;
  right: -10%;
  height: 48%;
  background: radial-gradient(120% 60% at 50% 100%, var(--brand) 0%, #0b5e28 60%, transparent 61%);
}

.golf-illustration .flag {
  position: absolute;
  bottom: 34%;
  left: 70%;
  width: 2px;
  height: 90px;
  background: #e2e8f0;
}

.golf-illustration .flag::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0;
  width: 46px;
  height: 26px;
  background: linear-gradient(135deg, #10b981, #22c55e);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.golf-illustration .ball {
  position: absolute;
  bottom: 28%;
  left: 16%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f1f5f9;
  box-shadow: 0 2px 0 rgba(0, 0, 0, .25);
}

.hero-wave {
  height: 40px;
  background: radial-gradient(100% 60% at 50% -20px, rgba(52, 211, 153, .25), transparent 70%);
}

.section {
  padding: 54px 0;
}

.section-title {
  margin: 0 0 .5rem 0;
  font-size: 2rem;
}

.section-lead {
  margin: 0 0 1.5rem 0;
  color: var(--muted);
}

.card-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .02), transparent), var(--card);
  border: 1px solid rgba(148, 163, 184, .15);
  padding: 1.1rem;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow);
  transition: .2s transform ease, .2s box-shadow ease, .15s border-color ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .45);
  border-color: var(--accent);
}

.card-icon {
  font-size: 1.6rem;
}

.card h3 {
  margin: .3rem 0 .3rem 0;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card-cta {
  display: inline-block;
  margin-top: .7rem;
  color: #a7f3d0;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: .8rem 0 0 0;
  color: var(--muted);
}

.checklist li {
  position: relative;
  padding-left: 1.4rem;
  margin: .25rem 0;
}

.checklist li::before {
  content: "✔";
  color: #34d399;
  position: absolute;
  left: 0;
}

/* Media blocks in Lernpfad */
.media-img, .media-video {
  width: 100%;
  max-width: 560px;
  border-radius: 12px;
  display: block;
  margin: .5rem 0;
  border: 1px solid rgba(148, 163, 184, .15);
  box-shadow: var(--shadow);
}
figure { margin: 0; }
figcaption { color: var(--muted); font-size: .9rem; margin-top: .4rem; }

.quote blockquote {
  margin: 0;
  padding: 1rem 1.2rem;
  background: rgba(148, 163, 184, .1);
  border: 1px solid rgba(148, 163, 184, .15);
  border-radius: 12px;
}

.quote footer {
  color: var(--muted);
}

.cta .btn {
  margin: .2rem;
}

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, .15);
  padding: 20px 0;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-inner a {
  color: inherit;
  text-decoration: none;
}

.footer-inner a:hover {
  color: #e2e8f0;
}

@media (max-width: 680px) {
  .footer-inner {
    flex-direction: column;
  }
}

/* Media section */
.media {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .media {
    grid-template-columns: 1fr 1fr;
  }
}

.media-visual {
  display: flex;
  justify-content: center;
}

.media-copy .hint {
  color: var(--muted);
  font-size: .9rem;
  margin-top: .5rem;
}

.clip-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 780px) {
  .clip-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Stepper */
.stepper-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: .5rem;
}
.stepper .step {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: .5rem;
  padding: .5rem .6rem;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 12px;
  color: var(--muted);
  background: rgba(148, 163, 184, .05);
}
.stepper .step span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(148, 163, 184, .12);
  font-weight: 700;
  color: #cbd5e1;
}
.stepper .step.is-active {
  border-color: #22c55e;
  color: #e2e8f0;
}
.stepper .step.is-active span {
  background: linear-gradient(135deg, #0f6d2f, #22c55e);
  color: #0b1220;
}
.stepper .step.is-done {
  border-style: dashed;
  color: #9aa7b8;
}
.lp-content figure {
  margin: .8rem 0 0 0;
}
.lp-actions {
  display: flex;
  gap: .6rem;
  margin-top: 1rem;
}
