/* demoverein L2 — Vereiny-ähnlich (Navy / Blue), Farben + Layout */
:root {
  --vy-navy: #0b1f4d;
  --vy-navy-mid: #122a63;
  --vy-navy-soft: #1a3678;
  --vy-blue: #2563eb;
  --vy-blue-hover: #1d4ed8;
  --vy-blue-soft: #dbeafe;
  --vy-ink: #0f172a;
  --vy-muted: #64748b;
  --vy-line: #e2e8f0;
  --vy-surface: #ffffff;
  --vy-bg: #f8fafc;
  --vy-radius: 1.25rem;
  --vy-radius-sm: 0.85rem;
  --vy-radius-pill: 9999px;
  --vy-shadow: 0 12px 40px rgba(11, 31, 77, 0.08);
  --vy-font: "Plus Jakarta Sans", Manrope, ui-sans-serif, system-ui, sans-serif;
  --salon-brand: var(--vy-blue);
  --salon-brand-hover: var(--vy-blue-hover);
  --lp-heading: var(--vy-navy);
  --lp-text: #334155;
  --lp-text-soft: #475569;
  --lp-text-muted: var(--vy-muted);
  --lp-border: var(--vy-line);
  --lp-border-subtle: #eef2f7;
  --lp-surface: var(--vy-surface);
  --lp-bg: var(--vy-bg);
  --dn-radius: var(--vy-radius);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.lp-page {
  margin: 0;
  font-family: var(--vy-font);
  background: var(--vy-bg);
  color: var(--lp-text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.hidden { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.dn-wrap {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.1rem;
  padding-right: 1.1rem;
}
@media (min-width: 768px) {
  .dn-wrap { padding-left: 1.75rem; padding-right: 1.75rem; }
}

/* —— Header —— */
.dn-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--vy-line);
  backdrop-filter: blur(10px);
}
.dn-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}
.dn-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  font-weight: 700;
  color: var(--vy-navy);
  flex-shrink: 0;
}
.dn-brand-mark {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 9999px;
  overflow: hidden;
  background: var(--vy-blue-soft);
  flex-shrink: 0;
}
.dn-brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.dn-brand-mark.dn-is-hidden { display: none !important; }
.dn-brand-name {
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 11rem;
}
@media (min-width: 900px) {
  .dn-brand-name { max-width: 16rem; }
}

.dn-nav {
  display: none;
  align-items: center;
  gap: 0.2rem;
  flex: 1 1 auto;
  justify-content: flex-end;
  overflow-x: auto;
  scrollbar-width: none;
}
.dn-nav::-webkit-scrollbar { display: none; }
@media (min-width: 980px) {
  .dn-nav { display: flex; }
}
.dn-nav a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--vy-navy);
  padding: 0.45rem 0.7rem;
  border-radius: var(--vy-radius-pill);
  white-space: nowrap;
}
.dn-nav a:hover { background: #f1f5f9; }
.dn-nav a.is-active {
  background: var(--vy-blue);
  color: #fff;
}

.dn-header-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}
.dn-lang-select {
  border: 1px solid var(--vy-line);
  border-radius: 0.55rem;
  padding: 0.35rem 0.45rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--vy-navy);
  background: #fff;
}
.dn-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--vy-line);
  border-radius: 0.65rem;
  background: #fff;
  color: var(--vy-navy);
  cursor: pointer;
}
@media (min-width: 980px) {
  .dn-nav-toggle { display: none; }
}
.dn-nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1.1rem 1.1rem;
  border-top: 1px solid var(--vy-line);
  background: #fff;
}
.dn-nav-mobile.is-open { display: flex; }
.dn-nav-mobile a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--vy-navy);
  padding: 0.65rem 0.75rem;
  border-radius: 0.75rem;
}
.dn-nav-mobile a:hover,
.dn-nav-mobile a.is-active { background: var(--vy-blue-soft); color: var(--vy-blue); }

/* —— Buttons —— */
.dn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: var(--vy-radius-pill);
  padding: 0.7rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.dn-btn-primary {
  background: var(--vy-blue);
  color: #fff;
}
.dn-btn-primary:hover { background: var(--vy-blue-hover); color: #fff; }
.dn-btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.dn-btn-ghost:hover { background: rgba(255,255,255,.1); color: #fff; }
.dn-btn-outline {
  background: #fff;
  color: var(--vy-navy);
  border-color: var(--vy-line);
}
.dn-btn-outline:hover { border-color: var(--vy-blue); color: var(--vy-blue); }
.lp-booking-cta-primary {
  background: var(--salon-brand, var(--vy-blue)) !important;
  color: #fff !important;
  border-color: transparent !important;
}
.lp-booking-cta-primary:hover {
  background: var(--salon-brand-hover, var(--vy-blue-hover)) !important;
}

/* —— Hero —— */
.dn-hero {
  position: relative;
  background:
    linear-gradient(160deg, rgba(7, 21, 54, 0.92) 0%, rgba(11, 31, 77, 0.88) 45%, rgba(18, 42, 99, 0.9) 100%),
    radial-gradient(ellipse at 70% 20%, rgba(37, 99, 235, 0.35), transparent 55%),
    #0b1f4d;
  color: #fff;
  padding: 2.5rem 0 3.25rem;
  overflow: hidden;
}
.dn-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../demo/hero-community.png") center/cover no-repeat;
  opacity: 0.38;
  pointer-events: none;
}
.dn-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(7, 21, 54, 0.82) 0%, rgba(11, 31, 77, 0.72) 55%, rgba(18, 42, 99, 0.78) 100%);
  pointer-events: none;
}
.dn-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.75rem;
}
@media (min-width: 900px) {
  .dn-hero-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 0.75fr);
    align-items: start;
    gap: 2rem;
  }
}
.dn-kicker {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(15, 30, 70, 0.75);
  border-radius: 0.4rem;
}
.dn-hero h1 {
  margin: 0 0 1.1rem;
  font-size: clamp(1.85rem, 4.2vw, 3.15rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.dn-hero-lines span {
  display: inline-block;
  background: rgba(10, 28, 70, 0.72);
  padding: 0.18em 0.35em;
  margin: 0.08em 0;
  border-radius: 0.35rem;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.dn-hero-lead {
  max-width: 36rem;
  margin: 0 0 1.35rem;
  padding: 0.85rem 1rem;
  background: rgba(10, 28, 70, 0.55);
  border-radius: 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,.92);
}
.dn-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}
.dn-hero-note {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,.72);
  max-width: 34rem;
}

.dn-aktuell {
  background: rgba(8, 20, 48, 0.72);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 1.1rem;
  padding: 1rem;
  backdrop-filter: blur(8px);
}
.dn-aktuell-label {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
}
.dn-aktuell-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.dn-aktuell-list a {
  display: block;
  padding: 0.75rem 0.85rem;
  border-radius: 0.85rem;
  background: rgba(255,255,255,.08);
  color: #fff;
  transition: background .15s ease;
}
.dn-aktuell-list a:hover { background: rgba(255,255,255,.14); }
.dn-aktuell-date {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,.65);
  margin-bottom: 0.2rem;
}
.dn-aktuell-title {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

/* —— Sections —— */
.dn-section {
  padding: 3.25rem 0;
}
.dn-section-band { background: #fff; }
.dn-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.dn-eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vy-blue);
}
.dn-section-head h2,
.dn-section h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  font-weight: 800;
  color: var(--vy-navy);
  letter-spacing: -0.02em;
}
.dn-section-lead {
  margin: 0.5rem 0 0;
  color: var(--vy-muted);
  max-width: 40rem;
}

.dn-panel {
  background: #fff;
  border: 1px solid var(--vy-line);
  border-radius: 1.5rem;
  padding: 1.35rem 1.25rem 1.5rem;
  box-shadow: var(--vy-shadow);
}
@media (min-width: 768px) {
  .dn-panel { padding: 1.75rem 1.75rem 2rem; }
}

/* News */
.dn-news-grid {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 720px) {
  .dn-news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1060px) {
  .dn-news-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.dn-news-card {
  background: #fff;
  border: 1px solid var(--vy-line);
  border-radius: 1.15rem;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(11, 31, 77, 0.05);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.dn-news-media {
  aspect-ratio: 16 / 10;
  background: #1e3a8a;
  position: relative;
  overflow: hidden;
}
.dn-news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dn-news-body { padding: 1rem 1.1rem 1.2rem; flex: 1; }
.dn-news-date {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  color: var(--vy-muted);
  font-weight: 600;
}
.dn-news-body h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  color: var(--vy-navy);
  font-weight: 800;
  line-height: 1.3;
}
.dn-news-body p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--lp-text-soft);
}

/* Sponsors */
.dn-sponsors-label {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vy-muted);
}
.dn-sponsors-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
@media (min-width: 720px) {
  .dn-sponsors-row { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.dn-sponsor {
  background: #fff;
  border: 1px solid var(--vy-line);
  border-radius: 0.9rem;
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem;
  overflow: hidden;
}
.dn-sponsor img {
  width: 100%;
  height: 3.5rem;
  object-fit: contain;
}

/* Content blocks (Events / Teams / Verein / Sponsoring) */
.dn-split {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 860px) {
  .dn-split {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 2rem;
  }
  .dn-split.is-flip > :first-child { order: 2; }
}
.dn-feature-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.dn-feature-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--lp-text-soft);
  font-size: 0.95rem;
}
.dn-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--vy-blue);
}
.dn-illus {
  border-radius: 1.25rem;
  min-height: 14rem;
  background: #0b1f4d;
  border: 1px solid var(--vy-line);
  box-shadow: var(--vy-shadow);
  position: relative;
  overflow: hidden;
}
.dn-illus img {
  width: 100%;
  height: 100%;
  min-height: 14rem;
  object-fit: cover;
  display: block;
}
.dn-illus-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.75rem;
  border-radius: 0.55rem;
  background: rgba(7, 21, 54, 0.78);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
}

.dn-card-grid {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 720px) {
  .dn-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.dn-mini-card {
  background: #fff;
  border: 1px solid var(--vy-line);
  border-radius: 1rem;
  padding: 1.1rem;
}
.dn-mini-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: var(--vy-navy);
  font-weight: 800;
}
.dn-mini-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--lp-text-soft);
}

/* Contact */
.dn-contact-grid {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 900px) {
  .dn-contact-grid { grid-template-columns: 1fr 1.1fr; }
}
.dn-contact-card {
  background: #fff;
  border: 1px solid var(--vy-line);
  border-radius: 1.25rem;
  padding: 1.35rem;
  box-shadow: var(--vy-shadow);
}
.dn-map {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--vy-line);
  min-height: 18rem;
  background: #e2e8f0;
}
.dn-map iframe {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  border: 0;
}
.lp-text-soft { color: var(--lp-text-soft); }
.lp-text-muted { color: var(--lp-text-muted); }

/* Footer */
.dn-footer {
  background: #fff;
  border-top: 1px solid var(--vy-line);
  padding: 2.5rem 0 2rem;
}
.dn-footer-grid {
  display: grid;
  gap: 1.75rem;
}
@media (min-width: 800px) {
  .dn-footer-grid {
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 2rem;
  }
}
.dn-footer h2 {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vy-navy);
}
.dn-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.dn-footer-links a {
  color: var(--lp-text-soft);
  font-weight: 600;
  font-size: 0.92rem;
}
.dn-footer-links a:hover { color: var(--vy-blue); }
.dn-footer-address {
  margin: 0;
  color: var(--lp-text-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}
.dn-footer-address a { color: var(--vy-blue); font-weight: 600; }
.dn-footer-brand {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--vy-muted);
}
.dn-footer-brand strong {
  display: block;
  color: var(--vy-navy);
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}
.dn-footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--vy-line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--vy-muted);
}
.dn-footer-bottom a { color: var(--vy-navy); font-weight: 600; }

/* Off-canvas (bestehend) */
.lp-offcanvas {
  position: fixed;
  inset: 0;
  z-index: 80;
}
.lp-offcanvas.hidden { display: none !important; }
.lp-offcanvas-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
}
.lp-offcanvas-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(100%, 28rem);
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 40px rgba(15, 23, 42, 0.18);
}
.lp-offcanvas-panel.is-iframe { width: min(100%, 36rem); }
.lp-offcanvas-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: linear-gradient(135deg, var(--vy-navy) 0%, var(--vy-navy-mid) 100%);
  color: #fff;
}
.lp-offcanvas-head h2 { margin: 0; font-size: 1rem; color: #fff; }
.lp-offcanvas-close {
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.12);
  color: #fff;
  border-radius: 0.55rem;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lp-offcanvas-body {
  flex: 1;
  overflow: auto;
  background: #f8fafc;
  padding: 0;
}
.lp-offcanvas-iframe {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 3.5rem);
  border: 0;
  background: #fff;
}
body.lp-offcanvas-open { overflow: hidden; }

html[data-landing-theme="dark"] body.lp-page {
  --vy-bg: #0b1220;
  --vy-surface: #152033;
  --lp-heading: #f1f5f9;
  --lp-text: #cbd5e1;
  --lp-text-soft: #94a3b8;
  background: var(--vy-bg);
  color: var(--lp-text);
}
