/* Minimaler Kurs-Style: bewusst schlank, damit Marketing/Content im Fokus bleibt */

:root {
  --brand: #0d6efd; /* Bootstrap primary */
  --brand-dark: #0b5ed7;
}

body { scroll-behavior: smooth; }

.hero {
  background: radial-gradient(1200px 600px at 20% 20%, rgba(13,110,253,.18), transparent 60%),
              radial-gradient(900px 500px at 80% 0%, rgba(25,135,84,.12), transparent 55%);
}

.badge-soft {
  background: rgba(13,110,253,.08);
  color: var(--brand-dark);
  border: 1px solid rgba(13,110,253,.12);
}

.card-hover {
  transition: transform .15s ease, box-shadow .15s ease;
}
.card-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.75rem 1.25rem rgba(0,0,0,.08);
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: .5rem .75rem;
  z-index: 9999;
}
.skip-link:focus { top: 0; }

.small-muted { color: rgba(0,0,0,.65); }
