
/* ── 1. Design-Tokens ─────────────────────────────────────────────── */
:root {
  --svh-green:       #1B7A34;   /* Primärfarbe Vereinsgrün */
  --svh-green-dark:  #0D5C22;   /* Dunkelgrün – Hover, Topbar */
  --svh-green-light: #4CAF65;   /* Hellgrün – Akzente, Links */
  --svh-green-muted: #E4F2E8;   /* Mintgrün – Badges, Highlights */
  --svh-yellow:      #1B7A34;   /* Alias für Template-Kompatibilität */
  --svh-black:       #0d0d0d;
  --svh-gray:        #1a1a1a;
  --svh-gray2:       #2a2a2a;
  --svh-gray3:       #404040;
  --svh-gray-lt:     #888;
  --svh-white:       #fff;
  --svh-text:        #e8e8e8;
  --svh-radius:      8px;
  --svh-radius-lg:   12px;
  --svh-wrapper:     1200px;
  --svh-sidebar-w:   280px;
  --svh-transition:  .2s ease;
}

/* ── 2. Reset & Base ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--svh-black);
  color: var(--svh-text);
  font-family: 'Outfit', 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--svh-green-light); text-decoration: none; transition: color var(--svh-transition); }
a:hover { color: var(--svh-green); }

h1, h2, h3, h4 {
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--svh-white);
  line-height: 1.1;
}

p { margin-bottom: 1rem; }
ul { list-style: none; }

/* ── 3. Utility ───────────────────────────────────────────────────── */
.svh-wrapper    { max-width: var(--svh-wrapper); margin: 0 auto; padding: 0 24px; }
.svh-section    { padding: 56px 0; }
.svh-section-sm { padding: 36px 0; }

.svh-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(27,122,52,.14); border: 1px solid rgba(27,122,52,.35);
  border-radius: 20px; padding: 5px 16px;
  font-size: 12px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--svh-green-light);
}
.svh-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--svh-green-light); flex-shrink: 0;
  animation: svhPulse 1.5s ease infinite;
}
@keyframes svhPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.3)} }

.svh-btn {
  display: inline-block; padding: 11px 24px;
  border-radius: var(--svh-radius); font-weight: 700;
  font-size: 14px; letter-spacing: .04em; text-transform: uppercase;
  transition: background var(--svh-transition), transform var(--svh-transition);
  cursor: pointer; border: none;
}
.svh-btn-primary { background: var(--svh-green); color: #fff; }
.svh-btn-primary:hover { background: var(--svh-green-dark); color: #fff; }
.svh-btn-outline  { background: transparent; color: var(--svh-green-light); border: 1.5px solid var(--svh-green); }
.svh-btn-outline:hover { background: var(--svh-green); color: #fff; }

.svh-sec-label {
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--svh-green-light); margin-bottom: 8px;
}
.svh-sec-title {
  font-size: clamp(26px, 4vw, 40px);
  color: var(--svh-white); margin-bottom: 32px;
}

/* ── 4. Topbar ────────────────────────────────────────────────────── */
.svh-topbar {
  background: var(--svh-green-dark);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 6px 0;
  font-size: 12px;
  overflow: hidden;
}
.svh-topbar-inner {
  max-width: var(--svh-wrapper); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
}
.svh-topbar-abt {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.svh-topbar-abt span {
  font-size: 11px; font-weight: 600; letter-spacing: .05em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
}
.svh-topbar-abt a {
  font-size: 11px; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: #9FE1CB; padding: 2px 8px;
  border-radius: 3px; transition: background var(--svh-transition);
}
.svh-topbar-abt a:hover { background: rgba(255,255,255,.1); color: #fff; }
.svh-topbar-social { display: flex; align-items: center; gap: 10px; }
.svh-topbar-social a {
  color: rgba(255,255,255,.55); font-size: 11px; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  display: flex; align-items: center; gap: 4px;
}
.svh-topbar-social a:hover { color: #fff; }

/* ── 5. Navigation ────────────────────────────────────────────────── */
.svh-nav {
  background: var(--svh-gray);
  border-bottom: 1px solid var(--svh-gray3);
  position: sticky; top: 0; z-index: 200;
}
.svh-nav-inner {
  max-width: var(--svh-wrapper); margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 250px minmax(0, 1fr); align-items: center; height: 60px; column-gap: 22px;
}
.svh-nav-logo { display: flex; align-items: center; gap: 10px; min-width: 0; }
.svh-nav-logo img { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--svh-green); }
.svh-nav-logo span {
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 16px;
  color: var(--svh-white); text-transform: uppercase; letter-spacing: .03em;
  white-space: nowrap;
}

.svh-nav .svh-menu,
.svh-nav .svh-submenu {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.svh-menu { display: flex; align-items: center; justify-content: space-between; gap: 0; height: 100%; min-width: 0; }
.svh-menu > li { position: relative; height: 100%; }
.svh-menu > li > a {
  display: flex; align-items: center; gap: 5px; height: 100%;
  padding: 0 8px; color: var(--svh-text); font-size: 13px;
  font-weight: 600; letter-spacing: .03em; text-transform: uppercase;
  white-space: nowrap; transition: color var(--svh-transition);
  position: relative;
}
.svh-menu > li > a::after {
  content: ''; position: absolute; bottom: 0; left: 14px; right: 14px;
  height: 3px; background: var(--svh-green); transform: scaleX(0);
  transition: transform var(--svh-transition);
}
.svh-menu > li:hover > a,
.svh-menu > li.aktiv > a { color: var(--svh-white); }
.svh-menu > li:hover > a::after,
.svh-menu > li.aktiv > a::after { transform: scaleX(1); }

/* Dropdown */
.svh-menu .dropdown { position: relative; }
.svh-menu .dropdown-arrow {
  font-size: 9px; color: var(--svh-gray-lt);
  transition: transform var(--svh-transition);
}
.svh-menu .dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

.svh-submenu {
  position: absolute; top: 100%; left: 0;
  background: var(--svh-gray); border: 1px solid var(--svh-gray3);
  border-top: 2px solid var(--svh-green); border-radius: 0 0 var(--svh-radius) var(--svh-radius);
  min-width: 250px; padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity var(--svh-transition), transform var(--svh-transition), visibility var(--svh-transition);
  z-index: 300;
}
.svh-menu .dropdown:hover .svh-submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.svh-submenu li a {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px; font-size: 13px; font-weight: 600;
  color: var(--svh-text); text-transform: uppercase; letter-spacing: .03em;
  white-space: nowrap; border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background var(--svh-transition), color var(--svh-transition);
}
.svh-submenu li:last-child a { border-bottom: 0; }
.svh-submenu li a:hover {
  background: var(--svh-gray2); color: var(--svh-white);
}
.svh-submenu li a .sub-icon { font-size: 14px; width: 20px; }

/* Hamburger */
.svh-nav-toggle {
  display: none; margin-left: auto; background: none; border: none;
  color: var(--svh-white); cursor: pointer; padding: 8px; font-size: 22px;
}

/* ── 6. Page-Hero (Unterseiten) ───────────────────────────────────── */
.svh-page-hero {
  position: relative;
  overflow: hidden;
  background: var(--svh-gray);
  border-bottom: 0;
  padding: 34px 0 38px;
}
.svh-page-hero .svh-wrapper { position: relative; }
.svh-page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg,
    var(--svh-black) 0%, var(--svh-black) 40%,
    rgba(27,122,52,.06) 40%, rgba(27,122,52,.06) 60%,
    var(--svh-black) 60%);
}
.svh-page-hero .svh-wrapper { position: relative; z-index: 1; }
.svh-breadcrumb {
  font-size: 12px; color: var(--svh-gray-lt); margin-bottom: 8px;
  letter-spacing: .02em;
}
.svh-breadcrumb a { color: var(--svh-green-light); }
.svh-page-hero h1 { font-size: clamp(28px, 5vw, 48px); color: var(--svh-white); }
.svh-page-hero h1 em { color: var(--svh-green-light); font-style: normal; }

/* ── 7. Abteilungs-Schnellnavigation ─────────────────────────────── */
.svh-abt-nav {
  background: var(--svh-gray2);
  border-bottom: 1px solid var(--svh-gray3);
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.svh-abt-nav-inner {
  max-width: var(--svh-wrapper); margin: 0 auto; padding: 0 24px;
  display: flex; gap: 0; height: 44px;
}
.svh-abt-nav-inner a {
  display: flex; align-items: center; gap: 6px; padding: 0 14px;
  font-size: 12px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: var(--svh-gray-lt);
  white-space: nowrap; border-bottom: 2px solid transparent;
  transition: color var(--svh-transition), border-color var(--svh-transition);
}
.svh-abt-nav-inner a:hover,
.svh-abt-nav-inner a.aktiv { color: var(--svh-white); border-bottom-color: var(--svh-green); }

/* ── 8. Layout: Content + Sidebar ────────────────────────────────── */
.svh-main { padding: 40px 0 60px; }
.svh-layout-sidebar {
  display: grid;
  grid-template-columns: 1fr var(--svh-sidebar-w);
  gap: 32px; align-items: start;
}
.svh-content { min-width: 0; }

/* ── Kontaktseite ────────────────────────────────────────────────── */
.svh-contact-layout {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
}
.svh-contact-info,
.svh-contact-form {
  background: var(--svh-gray);
  border: 1px solid var(--svh-gray3);
  border-radius: var(--svh-radius-lg);
}
.svh-contact-info {
  padding: 28px;
}
.svh-contact-logo {
  width: 92px;
  height: auto;
  margin: 0 auto 18px;
}
.svh-contact-info h2 {
  font-size: clamp(20px, 1.9vw, 24px);
  margin-bottom: 8px;
  text-align: center;
  white-space: nowrap;
}
.svh-contact-intro {
  color: var(--svh-text);
  margin-bottom: 26px;
  text-align: center;
}
.svh-contact-data {
  display: grid;
  gap: 20px;
}
.svh-contact-data p {
  margin: 0;
  color: var(--svh-white);
  line-height: 1.55;
}
.svh-contact-data span {
  display: block;
  margin-bottom: 4px;
  color: var(--svh-green-light);
  font-size: 13px;
  font-weight: 700;
}
.svh-contact-data a {
  color: var(--svh-white);
  border-bottom: 1px solid rgba(63,202,109,.38);
}
.svh-contact-data a:hover {
  color: var(--svh-green-light);
}
.svh-contact-map {
  margin-top: 26px;
  overflow: hidden;
  border-radius: var(--svh-radius);
}
.svh-contact-map iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}
.svh-contact-form {
  padding: 28px 32px 32px;
}
.svh-contact-note {
  margin: 0 0 22px;
  color: var(--svh-gray-lt);
}
.svh-contact-fields {
  display: grid;
  gap: 18px;
}
.svh-field {
  display: grid;
  gap: 8px;
}
.svh-contact-form label,
.svh-contact-form .form-label {
  display: block;
  margin-bottom: 8px;
  color: var(--svh-white);
  font-weight: 600;
}
.svh-contact-form input[type="text"],
.svh-contact-form input[type="email"],
.svh-contact-form input[type="tel"],
.svh-contact-form input[type="number"],
.svh-contact-form input[type="url"],
.svh-contact-form select,
.svh-contact-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--svh-radius);
  background: #ffffff;
  color: #151515;
}
.svh-contact-form textarea {
  min-height: 178px;
  resize: vertical;
}
.svh-contact-form input[type="checkbox"],
.svh-contact-form input[type="radio"] {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: -2px;
}
.svh-check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
}
.svh-check label {
  margin: 0;
  color: var(--svh-text);
  font-weight: 400;
  line-height: 1.5;
}
.svh-form-actions {
  display: flex;
  justify-content: center;
  margin-top: 4px;
}
.svh-contact-form button,
.svh-contact-form input[type="submit"] {
  min-height: 46px;
  padding: 0 24px;
  border: 0;
  border-radius: var(--svh-radius);
  background: var(--svh-green);
  color: var(--svh-white);
  font-weight: 700;
  cursor: pointer;
}
.svh-contact-form button:hover,
.svh-contact-form input[type="submit"]:hover {
  background: var(--svh-green-dark);
}

/* ── 9. Sidebar ───────────────────────────────────────────────────── */
.svh-sidebar { display: flex; flex-direction: column; gap: 16px; }
.svh-sidebar-box {
  background: var(--svh-gray);
  border: 1px solid var(--svh-gray3);
  border-radius: var(--svh-radius-lg);
  overflow: hidden;
}
.svh-sidebar-title {
  display: block; padding: 12px 16px;
  background: var(--svh-gray2);
  border-bottom: 1px solid var(--svh-gray3);
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--svh-green-light);
}

/* Akkordeon */
.svh-sidebar-akkordeon { padding: 8px 0; }
.svh-sidebar-akkordeon > li { border-bottom: 1px solid var(--svh-gray3); }
.svh-sidebar-akkordeon > li:last-child { border-bottom: none; }
.svh-sidebar-akkordeon details { }
.svh-sidebar-akkordeon summary {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px; cursor: pointer;
  font-size: 13px; font-weight: 700; color: var(--svh-white);
  text-transform: uppercase; letter-spacing: .03em;
  list-style: none; user-select: none;
  transition: background var(--svh-transition);
}
.svh-sidebar-akkordeon summary::-webkit-details-marker { display: none; }
.svh-sidebar-akkordeon summary::after {
  content: '▾'; margin-left: auto; color: var(--svh-gray-lt);
  font-size: 12px; transition: transform var(--svh-transition);
}
.svh-sidebar-akkordeon details[open] summary::after { transform: rotate(180deg); }
.svh-sidebar-akkordeon summary:hover { background: var(--svh-gray2); }
.nav-sub-list { padding: 8px 0 10px 0; }
.nav-sub-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px 9px 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--svh-text);
  border-left: 3px solid transparent;
  transition: color var(--svh-transition), background var(--svh-transition), border-color var(--svh-transition);
}
.nav-sub-list li a:hover {
  color: var(--svh-white);
  background: rgba(27,122,52,.18);
  border-left-color: var(--svh-green-light);
}
.nav-icon {
  width: 16px;
  flex-shrink: 0;
  color: var(--svh-green-light);
  font-size: 17px;
  line-height: 1;
}

/* Galerie */
.svh-sidebar-galerie {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 8px;
}
.sidebar-galerie-bild {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 4px; cursor: zoom-in; transition: opacity var(--svh-transition);
}
.sidebar-galerie-bild:hover { opacity: .8; }

/* Sponsor */
.svh-sidebar-sponsor { padding: 12px 16px; text-align: center; }
.sidebar-sponsor-logo { max-width: 140px; max-height: 60px; object-fit: contain; margin: 0 auto; }

/* ── 10. Abteilungs-Karten ────────────────────────────────────────── */
.svh-abt-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.svh-abt-card {
  min-height: 168px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--svh-radius-lg);
  padding: 0;
  text-align: center; cursor: pointer;
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end; justify-content: center;
  background-image: linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.28) 42%, rgba(0,0,0,.78) 100%), var(--svh-abt-bg);
  background-size: cover;
  background-position: center;
  text-decoration: none;
  transition: border-color var(--svh-transition), transform var(--svh-transition), filter var(--svh-transition);
}
.svh-abt-card::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(27,122,52,.08);
  opacity: 0; transition: opacity var(--svh-transition);
}
.svh-abt-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: var(--svh-green);
  transform: scaleX(0); transition: transform var(--svh-transition);
}
.svh-abt-card:hover { border-color: var(--svh-green); transform: translateY(-2px); filter: brightness(1.08); }
.svh-abt-card:hover::before { opacity: 1; }
.svh-abt-card:hover::after { transform: scaleX(1); }
.svh-abt-icon { display: none; }
.svh-abt-name {
  position: relative; z-index: 1;
  display: block; width: 100%;
  padding: 18px 12px 16px;
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 18px;
  text-transform: uppercase; letter-spacing: .04em; color: var(--svh-white);
  text-shadow: 0 2px 8px rgba(0,0,0,.8);
}
.svh-abt-sub { display: none; }
/* ── 11. News-Grid (Startseite) ───────────────────────────────────── */
.svh-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.svh-news-card {
  background: var(--svh-gray);
  border: 1px solid var(--svh-gray3);
  border-radius: var(--svh-radius-lg);
  overflow: hidden;
  transition: border-color var(--svh-transition);
}
.svh-news-card:hover { border-color: var(--svh-green); }
.svh-news-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.svh-news-card-img-placeholder {
  width: 100%; aspect-ratio: 16/9;
  background: var(--svh-gray2);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; color: var(--svh-gray3);
}
.svh-news-card-body { padding: 16px 18px 18px; }
.svh-news-meta {
  font-size: 11px; color: var(--svh-gray-lt);
  margin-bottom: 6px; display: flex; gap: 10px;
}
.svh-news-tag {
  font-size: 10px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--svh-green-light);
  background: rgba(27,122,52,.14); padding: 2px 8px; border-radius: 3px;
}
.svh-news-card h3 {
  font-size: 16px; color: var(--svh-white); margin-bottom: 8px;
  text-transform: none; letter-spacing: 0;
}
.svh-news-card p { font-size: 13px; color: var(--svh-gray-lt); margin: 0; }

/* ── 12. Tabelle / Content-Blöcke ────────────────────────────────── */
.svh-content-block {
  background: var(--svh-gray);
  border: 1px solid var(--svh-gray3);
  border-radius: var(--svh-radius-lg);
  padding: 24px; margin-bottom: 20px;
}
.svh-content-block h2,
.svh-content-block h3 { margin-bottom: 16px; font-size: 20px; }
.svh-table-wrap { overflow-x: auto; }
.svh-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.svh-table th {
  text-align: left; padding: 10px 14px;
  background: var(--svh-gray2); color: var(--svh-white);
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; border-bottom: 2px solid var(--svh-green);
}
.svh-table td {
  padding: 10px 14px; border-bottom: 1px solid var(--svh-gray3);
  color: var(--svh-text);
}
.svh-table tr:last-child td { border-bottom: none; }
.svh-table tr:hover td { background: rgba(255,255,255,.03); }

/* ── 13. Terminkalender ───────────────────────────────────────────── */
.svh-termine-list { display: flex; flex-direction: column; gap: 10px; }
.svh-termin {
  display: grid; grid-template-columns: 68px 1fr auto;
  gap: 16px; align-items: center;
  background: var(--svh-gray); border: 1px solid var(--svh-gray3);
  border-radius: var(--svh-radius); padding: 14px 18px;
  transition: border-color var(--svh-transition);
}
.svh-termin:hover { border-color: var(--svh-green); }
.svh-termin-date {
  text-align: center; flex-shrink: 0;
  background: var(--svh-green); border-radius: var(--svh-radius);
  padding: 8px 6px;
}
.svh-termin-day { font-size: 24px; font-weight: 700; color: #fff; line-height: 1; display: block; }
.svh-termin-mon { font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.8); }
.svh-termin-info h4 { font-size: 15px; color: var(--svh-white); text-transform: none; letter-spacing: 0; margin-bottom: 3px; }
.svh-termin-info p  { font-size: 12px; color: var(--svh-gray-lt); margin: 0; }
.svh-termin-abt {
  font-size: 10px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--svh-green-light);
  background: rgba(27,122,52,.14); padding: 4px 10px;
  border-radius: 20px; white-space: nowrap; flex-shrink: 0;
}

/* ── 14. Kontaktformular ──────────────────────────────────────────── */
.svh-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.svh-form-full { grid-column: 1 / -1; }
.svh-form-group { display: flex; flex-direction: column; gap: 6px; }
.svh-form-group label { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--svh-gray-lt); }
.svh-form-group input,
.svh-form-group select,
.svh-form-group textarea {
  background: var(--svh-gray2); border: 1px solid var(--svh-gray3);
  border-radius: var(--svh-radius); padding: 11px 14px;
  color: var(--svh-white); font-size: 14px; font-family: inherit;
  transition: border-color var(--svh-transition);
  width: 100%;
}
.svh-form-group input:focus,
.svh-form-group select:focus,
.svh-form-group textarea:focus {
  outline: none; border-color: var(--svh-green);
  box-shadow: 0 0 0 2px rgba(27,122,52,.2);
}
.svh-form-group textarea { resize: vertical; min-height: 120px; }


/* ── Startseite: Veranstaltungen ───────────────────────────────────── */
.svh-event-section {
  padding: 56px 0;
  background: var(--svh-black);
  border-top: 2px solid var(--svh-green);
}
.svh-event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.svh-event-card {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--svh-gray3);
  border-radius: var(--svh-radius);
  background: var(--svh-gray);
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
  transition: transform var(--svh-transition), border-color var(--svh-transition), box-shadow var(--svh-transition);
}
.svh-event-card:hover,
.svh-event-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--svh-green);
  box-shadow: 0 22px 54px rgba(0,0,0,.36);
  outline: none;
}
.svh-event-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
@media (max-width: 900px) {
  .svh-event-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .svh-event-grid { grid-template-columns: 1fr; }
}
/* ── 15. Sponsoren-Leiste ─────────────────────────────────────────── */
.svh-spon-section {
  padding: 36px 0;
  border-top: 1px solid var(--svh-gray3);
  background: var(--svh-black);
}
.svh-spon-label {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--svh-gray-lt);
  text-align: center; margin-bottom: 20px;
}
.svh-spon-row {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.svh-sponsor-board {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}
.svh-sponsor-logo {
  min-height: 84px;
  background: #fff;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--svh-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
.svh-sponsor-logo img {
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
}


/* ── Content: Partner- und Sponsorentafeln ───────────────────────── */
.content-centered {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.content-centered h2,
.content-centered h3 {
  text-align: center;
}
.content-centered .content-button {
  margin-top: 8px;
}
.content-case-normal {
  text-transform: none;
}
.content-optout-frame {
  width: 100%;
  max-width: 680px;
  min-height: 220px;
  border: 0;
}

/* ── Content: Downloadliste ──────────────────────────────────────── */
.content-download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 34px;
}
.content-download-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 78px;
  padding: 14px 16px;
  border: 1px solid var(--svh-gray3);
  border-radius: var(--svh-radius);
  background: var(--svh-gray);
  color: var(--svh-white);
  text-decoration: none;
  transition: border-color var(--svh-transition), transform var(--svh-transition), background var(--svh-transition);
}
.content-download-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: var(--svh-radius);
  background: #c62828;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
}
.content-download-card span:last-child {
  font-weight: 700;
  line-height: 1.35;
}
.content-download-card:hover {
  border-color: var(--svh-green);
  background: var(--svh-gray2);
  color: var(--svh-white);
  text-decoration: none;
  transform: translateY(-2px);
}
@media (max-width: 700px) {
  .content-download-grid { grid-template-columns: 1fr; }
}

.content-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0 32px;
}
.content-logo-card {
  min-height: 112px;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--svh-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.content-logo-card img {
  max-width: 100%;
  max-height: 76px;
  object-fit: contain;
  border-radius: 0;
}
@media (max-width: 760px) {
  .content-logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .content-logo-grid { grid-template-columns: 1fr; }
}

/* ── Content: Partnervereine ─────────────────────────────────────── */
.content-partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 22px 0 34px;
}
.content-partner-card {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--svh-radius);
  background: #ffffff;
  color: #151515;
  text-align: center;
  text-decoration: none;
  transition: transform var(--svh-transition), border-color var(--svh-transition), box-shadow var(--svh-transition);
}
.content-partner-card img {
  max-width: 100%;
  max-height: 104px;
  object-fit: contain;
  border-radius: 0;
}
.content-partner-card span {
  font-weight: 700;
  line-height: 1.25;
}
.content-partner-card:hover {
  border-color: var(--svh-green);
  color: #151515;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.26);
}
@media (max-width: 760px) {
  .content-partner-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .content-partner-grid { grid-template-columns: 1fr; }
}

/* ── Content: Abteilungskacheln ──────────────────────────────────── */
.content-abt-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0 34px;
}
.content-abt-card {
  position: relative;
  min-height: 150px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--svh-radius);
  background-color: #111111;
  background-position: center;
  background-size: cover;
  color: var(--svh-white);
  text-decoration: none;
  isolation: isolate;
  transition: transform var(--svh-transition), border-color var(--svh-transition), filter var(--svh-transition);
}
.content-abt-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.78));
}
.content-abt-card span {
  font-family: 'Oswald', Arial Black, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--svh-white);
  text-shadow: 0 2px 14px rgba(0,0,0,.72);
}
.content-abt-card:hover {
  color: var(--svh-white);
  text-decoration: none;
  border-color: var(--svh-green);
  transform: translateY(-2px);
  filter: brightness(1.08);
}
.content-abt-fussball { background-image: url('/bilder/1771922880/1771922880-1778344803-illu_bg_fussball.jpg'); }
.content-abt-nachwuchs { background-image: url('/bilder/1771922880/1771922880-1778344805-illu_bg_nachwuchs.jpg'); }
.content-abt-tischtennis { background-image: url('/bilder/1771922880/1771922880-1778344808-illu_bg_tt.jpg'); }
.content-abt-dart { background-image: url('/bilder/1771922880/1771922880-1778344801-illu_bg_dart.jpg'); }
.content-abt-tanz { background-image: url('/bilder/1771922880/1771922880-1778344807-illu_bg_tanz.jpg'); }
.content-abt-horsing { background-image: url('/bilder/1771922880/1771922880-1778344804-illu_bg_horsing.jpg'); }
.content-abt-sportgruppe { background-image: url('/bilder/1771922880/1771922880-1778344806-illu_bg_sportgruppe.jpg'); }
.content-abt-fasching { background-image: url('/bilder/1771922880/1771922880-1778344802-illu_bg_fasching.jpg'); }
.content-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: var(--svh-radius);
  background: var(--svh-green);
  color: var(--svh-white);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}
.content-button:hover {
  background: var(--svh-green-dark);
  color: var(--svh-white);
  text-decoration: none;
}
.content-contact-box {
  background: var(--svh-gray);
  border: 1px solid var(--svh-gray3);
  border-radius: var(--svh-radius-lg);
  padding: 24px;
  margin: 28px 0;
}
.content-contact-box h3 {
  margin-bottom: 18px;
}
.content-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}
.content-contact-card {
  background: var(--svh-gray2);
  border: 1px solid var(--svh-gray3);
  border-radius: var(--svh-radius);
  padding: 18px;
}
.content-contact-name {
  color: var(--svh-white);
  font-weight: 700;
  margin-bottom: 8px;
}
@media (max-width: 700px) {
  .content-contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .content-abt-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .content-abt-grid { grid-template-columns: 1fr; }
  .content-abt-card { min-height: 140px; }
}
/* ── 16. Footer ───────────────────────────────────────────────────── */
.svh-footer {
  background: #080808;
  border-top: 3px solid var(--svh-green);
  padding: 48px 0 24px;
}
.svh-footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px; margin-bottom: 36px;
}
.svh-footer-brand-logo {
  width: 56px; height: 56px; border-radius: 50%;
  border: 2px solid var(--svh-green); margin-bottom: 12px;
}
.svh-footer-brand-name {
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 18px;
  color: var(--svh-white); text-transform: uppercase; margin-bottom: 4px;
  white-space: nowrap;
}
.svh-footer-meta { font-size: 13px; color: var(--svh-gray-lt); line-height: 1.5; margin: 10px 0 8px; }
.svh-footer-counter,
.svh-footer-update {
  display: block;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: var(--svh-gray-lt);
}
.svh-footer-counter {
  margin: 8px 0 8px;
}
.svh-footer-counter table,
.svh-footer-counter tbody,
.svh-footer-counter tr {
  display: inline !important;
}
.svh-footer-counter table {
  width: auto !important;
  max-width: 100%;
  margin: 0 !important;
  border: 0 !important;
  border-collapse: collapse;
  border-spacing: 0;
}
.svh-footer-counter td {
  display: inline !important;
  width: auto !important;
  min-width: 0 !important;
  height: auto !important;
  padding: 0 1px !important;
  border: 0 !important;
  background: transparent !important;
  color: inherit !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  text-align: left;
}
.svh-footer-counter img {
  display: inline !important;
  width: auto;
  max-width: none;
  height: auto;
  max-height: 13px;
  vertical-align: -1px;
}
.svh-footer-update {
  margin-top: 4px;
}
.svh-footer-brand-tagline { font-size: 12px; color: var(--svh-gray-lt); line-height: 1.5; }
.svh-footer-col-title {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--svh-green-light);
  margin-bottom: 14px;
}
.svh-footer-col ul li { margin-bottom: 8px; }
.svh-footer-col ul li a { color: var(--svh-gray-lt); font-size: 13px; }
.svh-footer-col ul li a:hover { color: var(--svh-white); }
.svh-footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--svh-gray3);
}
.svh-footer-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(52, 211, 93, .45);
  border-radius: 50%;
  color: var(--svh-green-light);
  line-height: 1;
}
.svh-footer-social a:hover {
  border-color: var(--svh-green-light);
  color: var(--svh-white);
}
.svh-social-icon {
  width: 19px;
  height: 19px;
  display: block;
  fill: currentColor;
}
.svh-footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--svh-gray3);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--svh-gray-lt); flex-wrap: wrap; gap: 8px;
}
.svh-footer-bottom strong { color: var(--svh-green-light); }

/* ── 17. Lightbox ─────────────────────────────────────────────────── */
#svh-lb {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.92);
  align-items: center; justify-content: center;
}
#svh-lb.aktiv { display: flex; }
#svh-lb img {
  max-width: 92vw; max-height: 88vh; object-fit: contain;
  border-radius: 4px; box-shadow: 0 8px 48px rgba(0,0,0,.8);
  animation: svhLbFade .2s ease;
}
@keyframes svhLbFade { from{opacity:0;transform:scale(.97)} to{opacity:1;transform:scale(1)} }
#svh-lb-close {
  position: fixed; top: 18px; right: 22px;
  color: #fff; font-size: 36px; line-height: 1;
  cursor: pointer; opacity: .7; transition: opacity var(--svh-transition);
  background: none; border: none; padding: 0; font-family: sans-serif;
}
#svh-lb-close:hover { opacity: 1; }


@media (max-width: 1280px) {
  .svh-nav-inner { grid-template-columns: 250px minmax(0, 1fr); column-gap: 18px; padding: 0 24px; }
  .svh-menu > li > a { padding: 0 7px; font-size: 12.5px; }
}

@media (max-width: 1120px) {
  .svh-nav-inner { grid-template-columns: auto minmax(0, 1fr); }
  .svh-nav-logo span { display: none; }
  .svh-menu > li > a { padding: 0 8px; }
}

@media (max-width: 900px) {
  .svh-sponsor-board { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .svh-abt-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .svh-sponsor-board { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .svh-abt-grid { grid-template-columns: 1fr; }
  .svh-abt-card { min-height: 150px; }
}
/* ── 18. Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .svh-contact-layout { grid-template-columns: 1fr; }
  .svh-layout-sidebar { grid-template-columns: 1fr; }
  .svh-sidebar { order: -1; }
  .svh-footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .svh-nav-inner { display: flex; }
  .svh-nav-logo { margin-right: 0; }
  .svh-menu { display: none; flex-direction: column; height: auto; width: 100%; }
  .svh-menu.offen {
    display: flex; position: absolute; top: 60px; left: 0; right: 0;
    background: var(--svh-gray); border-top: 1px solid var(--svh-gray3);
    padding: 8px 0; z-index: 200;
  }
  .svh-menu > li { height: auto; border-bottom: 1px solid var(--svh-gray3); }
  .svh-menu > li > a { padding: 14px 24px; }
  .svh-menu > li > a::after { display: none; }
  .svh-submenu {
    position: static; opacity: 1; visibility: visible; transform: none;
    border: none; border-radius: 0; background: var(--svh-gray2);
    display: none; padding: 0;
  }
  .svh-menu .dropdown.offen .svh-submenu { display: block; }
  .svh-nav-toggle { display: block; }
  .svh-nav-inner { position: relative; }
  .svh-nav-logo span { display: none; }
  .svh-footer-inner { grid-template-columns: 1fr; }
  .svh-contact-info,
  .svh-contact-form { padding: 22px; }
  .svh-contact-map iframe { min-height: 300px; }
  .svh-form-grid { grid-template-columns: 1fr; }
  .svh-termin { grid-template-columns: 56px 1fr; }
  .svh-termin-abt { display: none; }
  .svh-topbar-abt { display: none; }
}










