:root {
  --blue: #1a3a8c;
  --blue-dark: #0f2460;
  --blue-light: #2d55c8;
  --gold: #f0b429;
  --gold-light: #fcd262;
  --white: #ffffff;
  --gray-50: #f8f9fb;
  --gray-100: #f0f2f7;
  --gray-200: #dde3ef;
  --gray-500: #6b7a99;
  --gray-700: #374264;
  --gray-900: #0f1829;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
}

/* ──────────── HEADER ──────────── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 58, 140, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-img {
  height: 44px;
  width: auto;
  background: var(--white);
  padding: 5px 9px;
  border-radius: 8px;
}

/* Der Schriftzug steckt bereits im Logo – Doppelung im Header vermeiden */
.logo-text {
  display: none;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text strong {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.logo-text span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 500;
}

nav {
  display: flex;
  gap: 0.25rem;
}

nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  transition: all 0.2s;
}

nav a:hover,
nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--blue-dark) !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ──────────── HERO ──────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--blue-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.confetti-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.confetti-piece {
  position: absolute;
  width: 8px;
  height: 16px;
  opacity: 0.3;
  animation: confettiFall linear infinite;
  border-radius: 2px;
}

@keyframes confettiFall {
  0% { transform: translateY(-100px) rotate(0deg); opacity: 0.3; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-badge {
  display: inline-block;
  background: rgba(240, 180, 41, 0.2);
  border: 1px solid rgba(240, 180, 41, 0.4);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s 0.1s ease both;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  animation: fadeInDown 0.8s 0.2s ease both;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  animation: fadeInDown 0.8s 0.3s ease both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInDown 0.8s 0.4s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240,180,41,0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 4rem;
  animation: fadeInUp 0.8s 0.5s ease both;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat strong {
  display: block;
  color: var(--gold);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.hero-stat span {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: block;
}

/* ──────────── SECTIONS ──────────── */
section {
  padding: 5rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 600px;
}

.section-header {
  margin-bottom: 3rem;
}

/* ──────────── ÜBER UNS / ABOUT ──────────── */
.about {
  background: var(--gray-50);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text p {
  color: var(--gray-700);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.about-visual {
  position: relative;
}

.about-card {
  background: var(--blue);
  border-radius: 20px;
  padding: 2.5rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.about-card-year {
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.1);
  position: absolute;
  right: 1.5rem;
  top: 1rem;
  line-height: 1;
}

.about-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.about-card p {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.6;
}

.vereinsfarben {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.farbe-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.farbe-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

/* ──────────── VORSTAND ──────────── */
.vorstand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.vorstand-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.vorstand-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(26,58,140,0.12);
  transform: translateY(-4px);
}

.vorstand-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.6rem;
  color: white;
  font-weight: 700;
}

.vorstand-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.vorstand-card span {
  font-size: 0.85rem;
  color: var(--blue);
  font-weight: 500;
}

/* ──────────── GARDEN ──────────── */
.garden {
  background: var(--gray-50);
}

.garden-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.garden-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}

.garden-card:hover {
  box-shadow: 0 12px 40px rgba(26,58,140,0.15);
  transform: translateY(-4px);
}

.garden-card-header {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 2rem;
  color: white;
}

.garden-card-header .icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.garden-card-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

.garden-card-body {
  padding: 1.5rem;
}

.garden-card-body p {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.training-info {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray-700);
}

.training-info svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--blue);
}

.age-badge {
  display: inline-block;
  background: var(--gray-100);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  margin-top: 0.75rem;
}

/* ──────────── PRINZENPAARE ──────────── */
.prinzen {
  background: var(--blue-dark);
  color: white;
}

.prinzen .section-label {
  color: var(--gold);
}

.prinzen .section-label::before {
  background: var(--gold);
}

.prinzen .section-title {
  color: var(--white);
}

.prinzen .section-subtitle {
  color: rgba(255,255,255,0.65);
}

.prinzen-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 0.4rem;
  width: fit-content;
}

.tab-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn.active {
  background: var(--gold);
  color: var(--blue-dark);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.prinzen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.prinzen-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.2s;
}

.prinzen-item:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(240,180,41,0.3);
}

.prinzen-year {
  background: var(--gold);
  color: var(--blue-dark);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

.prinzen-names {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
}

.prinzen-names strong {
  display: block;
  color: white;
  font-size: 0.95rem;
}

/* ──────────── CHRONIK ──────────── */
.chronik-timeline {
  position: relative;
  padding-left: 2rem;
}

.chronik-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), var(--gold));
}

.chronik-entry {
  position: relative;
  margin-bottom: 2.5rem;
}

.chronik-entry::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid var(--gold);
}

.chronik-year {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.chronik-entry h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.chronik-entry p {
  color: var(--gray-500);
  font-size: 0.92rem;
  line-height: 1.7;
}

.chronik-figure {
  margin-top: 1rem;
  border-radius: 12px;
  overflow: hidden;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  box-shadow: 0 8px 24px rgba(26, 58, 140, 0.1);
}

.chronik-figure img {
  display: block;
  width: 100%;
  height: auto;
  cursor: zoom-in;
}

.chronik-figure figcaption {
  padding: 0.6rem 0.85rem;
  font-size: 0.78rem;
  color: var(--gray-500);
  border-top: 1px solid var(--gray-200);
}

/* ──────────── VERANSTALTUNGEN ──────────── */
.events {
  background: var(--gray-50);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.event-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
}

.event-card:hover {
  box-shadow: 0 8px 32px rgba(26,58,140,0.12);
  transform: translateY(-3px);
}

.event-date-box {
  background: var(--blue);
  color: white;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  text-align: center;
}

.event-date-box .day {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.event-date-box .month {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.25rem;
  opacity: 0.85;
}

.event-date-box .year {
  font-size: 0.7rem;
  opacity: 0.65;
  margin-top: 0.1rem;
}

.event-body {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--gray-900);
}

.event-body p {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.event-tag {
  display: inline-block;
  background: rgba(26,58,140,0.08);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-top: 0.5rem;
}

.events-placeholder {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--gray-500);
  background: var(--white);
  border-radius: 16px;
  border: 2px dashed var(--gray-200);
}

.events-placeholder .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.events-placeholder h3 {
  font-size: 1.1rem;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

/* ──────────── KONTAKT ──────────── */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.kontakt-info h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.kontakt-info p {
  color: var(--gray-500);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.contact-item-text {
  line-height: 1.4;
}

.contact-item-text strong {
  display: block;
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.1rem;
}

.contact-item-text a,
.contact-item-text span {
  color: var(--gray-900);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
}

.contact-item-text a:hover {
  color: var(--blue);
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gray-100);
  color: var(--gray-700);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  transition: all 0.2s;
}

.social-link:hover {
  background: var(--blue);
  color: var(--white);
}

.kontakt-form {
  background: var(--gray-50);
  border-radius: 20px;
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn-submit {
  width: 100%;
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.btn-submit:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,58,140,0.3);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: #1a7a4a;
  background: #d4edda;
  border-radius: 12px;
  font-weight: 600;
}

/* ──────────── FOOTER ──────────── */
footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.7);
  padding: 3rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-brand .logo-img {
  height: 42px;
  background: var(--white);
  padding: 5px 9px;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--gold);
}

/* ──────────── HERO SLIDER ──────────── */
.hero-slider {
  position: relative;
  background: none;
}

.slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.slide.active {
  opacity: 1;
}

.slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,24,64,0.75) 0%, rgba(26,58,140,0.55) 100%);
  z-index: 1;
}

.hero-slider .hero-content {
  position: relative;
  z-index: 2;
}

.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}

.slider-prev { left: 1.5rem; }
.slider-next { right: 1.5rem; }

.slider-prev:hover,
.slider-next:hover {
  background: rgba(255,255,255,0.28);
}

.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s;
}

.slider-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ──────────── PAGE HERO WITH IMAGE ──────────── */
.page-hero {
  position: relative;
  padding: 8rem 2rem 4rem;
  text-align: center;
  color: white;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,24,64,0.72) 0%, rgba(26,58,140,0.55) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ──────────── ABOUT IMAGE STACK ──────────── */
.about-img-stack {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.about-img-main {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  max-height: 420px;
  box-shadow: 0 20px 60px rgba(26,58,140,0.2);
  display: block;
}

.about-img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--white);
  border-radius: 16px;
  padding: 0.75rem;
  box-shadow: 0 8px 32px rgba(26,58,140,0.18);
}

.about-img-badge img {
  width: 100px;
  height: auto;
  display: block;
}

/* ──────────── GALLERY GRID ──────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px;
  gap: 0.75rem;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  cursor: zoom-in;
  transition: all 0.3s;
  display: block;
}

.gallery-img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(26,58,140,0.2);
}

.gallery-main {
  grid-row: span 1;
}

/* ──────────── VORSTAND GALLERY ──────────── */
.vorstand-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  height: 220px;
}

.vorstand-gallery .gallery-img {
  height: 100%;
}

/* ──────────── JUBILÄUM BANNER ──────────── */
.jubilaeum-banner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
}

.jubilaeum-banner img {
  width: 160px;
  height: auto;
  filter: brightness(0) invert(1);
}

.jubilaeum-banner h2 {
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.jubilaeum-banner p {
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
}

/* ──────────── GARDEN CARD V2 (mit Foto) ──────────── */
.garden-card-v2 {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}

.garden-card-v2:hover {
  box-shadow: 0 12px 40px rgba(26,58,140,0.15);
  transform: translateY(-4px);
}

.garden-card-v2-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.garden-card-v2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.garden-card-v2:hover .garden-card-v2-img img {
  transform: scale(1.05);
}

.garden-card-v2-overlay {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
}

.garden-card-v2-body {
  padding: 1.5rem;
}

.garden-card-v2-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--gray-900);
}

.garden-card-v2-body p {
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

/* Garden-Übersicht: 2 Spalten Desktop → 1 Spalte Mobil */
.garden-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.garden-booking {
  margin-top: 3rem;
  background: var(--blue);
  border-radius: 20px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 768px) {
  .garden-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .garden-card-v2-body {
    padding: 1.25rem;
  }
  .garden-booking {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
  }
  .garden-booking .btn-primary {
    justify-self: start;
  }
  .training-info {
    flex-wrap: wrap;
  }
}

/* ──────────── GARDEN CARD (Homepage Preview) ──────────── */
.garden-card-img {
  height: 180px;
  overflow: hidden;
}

.garden-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.garden-card:hover .garden-card-img img {
  transform: scale(1.05);
}

.garden-card .garden-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

/* ──────────── LIGHTBOX ──────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 25, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(6px);
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
}

.lb-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lb-close:hover {
  background: rgba(255,255,255,0.22);
}

/* ──────────── PRINZEN (dunkel, ohne padding-top fix) ──────────── */
.prinzen {
  background: var(--blue-dark);
  color: white;
  padding: 4rem 2rem;
}

/* ──────────── FÖRDERER ──────────── */
.foerderer {
  background: var(--gray-50);
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.sponsor-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  text-decoration: none;
  color: var(--gray-900);
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

a.sponsor-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 28px rgba(26, 58, 140, 0.12);
  transform: translateY(-3px);
}

.sponsor-visual {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
}

.sponsor-logo {
  max-height: 70px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}

.sponsor-initials {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsor-name {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--gray-900);
}

.sponsor-sub {
  font-size: 0.76rem;
  color: var(--blue);
  font-weight: 500;
}

@media (max-width: 900px) {
  .sponsor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ──────────── ANIMATIONS ──────────── */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ──────────── RESPONSIVE ──────────── */
@media (max-width: 900px) {
  nav { display: none; }
  nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--blue-dark);
    padding: 1rem;
    gap: 0.25rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .hamburger { display: flex; }
  header { position: relative; }
  .about-grid,
  .kontakt-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { gap: 2rem; }
}

/* ──────────── KINDERKARNEVALSZUG ──────────── */
.kkz-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.kkz-fact {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: all 0.3s;
}

.kkz-fact:hover {
  box-shadow: 0 8px 32px rgba(26, 58, 140, 0.12);
  transform: translateY(-3px);
}


.kkz-fact strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.2;
}

.kkz-fact span {
  display: block;
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 0.35rem;
}

.kkz-highlight {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 20px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.kkz-highlight h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.6rem;
}

.kkz-highlight p {
  color: var(--gray-900);
  opacity: 0.85;
  line-height: 1.7;
}

.kkz-route {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.kkz-route-step {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 0.5rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-700);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.kkz-route-step .num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kkz-route-arrow {
  color: var(--gray-200);
  font-weight: 700;
}

.kkz-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.kkz-info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--blue);
  border-radius: 16px;
  padding: 1.75rem;
}

.kkz-info-card.warn {
  border-left-color: var(--gold);
}

.kkz-info-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.kkz-info-card ul {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.kkz-info-card li {
  color: var(--gray-500);
  font-size: 0.92rem;
  line-height: 1.6;
  padding-left: 1.35rem;
  position: relative;
}

.kkz-info-card li::before {
  content: '›';
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--blue);
  font-weight: 700;
  font-size: 1.1rem;
}

.kkz-info-card.warn li::before {
  color: var(--gold);
}

.kkz-info-card strong {
  color: var(--gray-900);
}

.kkz-ffvk {
  background: var(--blue-dark);
  border-radius: 20px;
  padding: 3rem;
  color: var(--white);
}

.kkz-ffvk h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.kkz-ffvk > p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  max-width: 65ch;
}

.kkz-ffvk-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.kkz-ffvk-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
}

.kkz-ffvk-stat span {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
}

.kkz-downloads {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.kkz-download {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}


.kkz-download strong {
  display: block;
  font-size: 0.95rem;
  color: var(--gray-900);
}

.kkz-download span {
  display: block;
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 0.15rem;
}

@media (max-width: 768px) {
  .kkz-highlight {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
  }
  .kkz-highlight .btn-primary {
    justify-self: start;
  }
  .kkz-info-grid {
    grid-template-columns: 1fr;
  }
  .kkz-ffvk {
    padding: 2rem 1.5rem;
  }
}

/* ──────────── COUNTDOWN ──────────── */
.countdown {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.countdown::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.countdown .container {
  position: relative;
  z-index: 1;
}

.countdown-kicker {
  display: inline-block;
  background: rgba(240, 180, 41, 0.15);
  border: 1px solid rgba(240, 180, 41, 0.4);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.countdown-title {
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
}

.countdown-date {
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0.6rem 0 2.5rem;
}

.countdown-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.countdown-box {
  background: rgba(255, 255, 255, 0.07);
  border: 2px solid rgba(240, 180, 41, 0.55);
  border-radius: 14px;
  padding: 1.25rem 1.75rem;
  min-width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.countdown-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.countdown-sep {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.45;
  margin-top: 1rem;
}

.countdown-live {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  padding: 1.5rem 0;
}

.countdown-next {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.countdown-next-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-right: 0.25rem;
}

.countdown-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.countdown-chip strong {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .countdown-box {
    min-width: 74px;
    padding: 1rem 1rem;
  }
  .countdown-num {
    font-size: 2.1rem;
  }
  .countdown-sep {
    font-size: 1.8rem;
    margin-top: 0.75rem;
  }
  .countdown-next {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ──────────── MITGLIED WERDEN ──────────── */
.beitrag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.beitrag-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 2.25rem 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s;
}

.beitrag-card:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 40px rgba(26, 58, 140, 0.14);
  transform: translateY(-4px);
}


.beitrag-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gray-900);
}

.beitrag-preis {
  margin: 1rem 0 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.beitrag-preis strong {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.beitrag-preis span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.beitrag-card p {
  color: var(--gray-500);
  font-size: 0.92rem;
  line-height: 1.7;
  flex: 1;
}

.beitrag-btn {
  margin-top: 1.5rem;
}

/* Formular */
.antrag-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 12px 40px rgba(26, 58, 140, 0.08);
}

.form-block-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gray-200);
}

.form-block-title:first-child {
  margin-top: 0;
}

.art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.art-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.art-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1.25rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s;
  height: 100%;
}

.art-label:hover {
  border-color: var(--blue-light);
}

.art-option input:checked + .art-label {
  border-color: var(--blue);
  background: rgba(26, 58, 140, 0.05);
  box-shadow: 0 6px 20px rgba(26, 58, 140, 0.12);
}

.art-option input:focus-visible + .art-label {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}


.art-label .art-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  text-align: center;
}

.art-label .art-preis {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--gray-900);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  transition: all 0.2s;
}

.form-group textarea {
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26, 58, 140, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
  cursor: pointer;
}

.checkbox-group input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--blue);
  flex-shrink: 0;
}

.checkbox-group a {
  color: var(--blue);
  font-weight: 600;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  margin-top: 1.75rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-error {
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: rgba(200, 30, 30, 0.08);
  border: 1px solid rgba(200, 30, 30, 0.25);
  color: #a01c1c;
  font-size: 0.9rem;
}

.form-success {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 12px 40px rgba(240, 180, 41, 0.18);
}


.form-success h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.form-success p {
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.form-success a {
  color: var(--blue);
  font-weight: 600;
}

@media (max-width: 768px) {
  .antrag-form {
    padding: 1.5rem 1.25rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Unterschriftsfeld */
.signatur-info {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
}

.signatur-wrap {
  position: relative;
  border: 2px dashed var(--gray-200);
  border-radius: 12px;
  background: var(--gray-50);
  height: 170px;
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
}

.signatur-wrap.signiert {
  border-style: solid;
  border-color: var(--blue);
  background: var(--white);
}

.signatur-wrap canvas {
  width: 100%;
  height: 100%;
  display: block;
  touch-action: none;
  cursor: crosshair;
}

.signatur-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--gray-500);
  font-size: 0.95rem;
  pointer-events: none;
  transition: opacity 0.2s;
}

.signatur-clear {
  margin-top: 0.6rem;
  background: none;
  border: none;
  color: var(--gray-500);
  font-family: inherit;
  font-size: 0.82rem;
  cursor: pointer;
  padding: 0.25rem 0;
}

.signatur-clear:hover {
  color: var(--blue);
}

/* Kontobox */
.konto-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--gold);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: left;
  margin: 1.75rem 0;
}

.konto-box h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}

.konto-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.92rem;
}

.konto-row:last-child {
  border-bottom: none;
}

.konto-row span:first-child {
  color: var(--gray-500);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.konto-row span:last-child {
  color: var(--gray-900);
  font-weight: 700;
}

@media (max-width: 600px) {
  .konto-row {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }
}

/* ──────────── RECHTSTEXTE (Impressum, Datenschutz) ──────────── */
.rechts-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
}

.rechtstext {
  max-width: 780px;
}

.rechtstext h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1.25rem;
}

.rechtstext h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue);
  margin: 2.25rem 0 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-200);
}

.rechtstext p {
  color: var(--gray-700);
  line-height: 1.85;
  margin-bottom: 1rem;
  font-size: 0.96rem;
}

.rechtstext ul {
  margin: 0 0 1.25rem 0;
  padding-left: 1.25rem;
  color: var(--gray-700);
  line-height: 1.85;
  font-size: 0.96rem;
}

.rechtstext li {
  margin-bottom: 0.4rem;
}

.rechtstext a {
  color: var(--blue);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.rechts-stand {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--gray-500);
  font-style: italic;
}

/* ──────────── DATENSCHUTZ-HINWEIS ──────────── */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2000;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--gold);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(15, 24, 41, 0.22);
  animation: cookieUp 0.35s ease both;
}

@keyframes cookieUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cookie-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.cookie-text p {
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--gray-500);
}

.cookie-text a {
  color: var(--blue);
  font-weight: 600;
}

.cookie-btn {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--blue-dark);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.75rem;
  border: 2px solid var(--gold);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.cookie-btn:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

@media (max-width: 700px) {
  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1.25rem;
  }
  .cookie-btn {
    width: 100%;
  }
}

/* ──────────── AUSZEICHNUNGEN ──────────── */
.ausz-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.ausz-nav-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gray-900);
  transition: all 0.25s;
}

.ausz-nav-item:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 28px rgba(26, 58, 140, 0.12);
  transform: translateY(-3px);
}


.ausz-nav-item strong {
  margin-left: auto;
  background: rgba(26, 58, 140, 0.08);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

.ausz-liste {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.6rem;
}

.ausz-name {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gray-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  transition: all 0.2s;
}

.ausz-name:hover {
  border-left-color: var(--blue);
  box-shadow: 0 4px 16px rgba(26, 58, 140, 0.08);
}

.ausz-name.verstorben {
  color: var(--gray-500);
  border-left-color: var(--gray-200);
  background: var(--gray-50);
}

.ausz-name .kreuz {
  color: var(--blue);
  font-size: 0.9rem;
  opacity: 0.7;
  cursor: help;
}

.ausz-legende {
  color: var(--gray-500);
  font-size: 0.88rem;
  font-style: italic;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}

/* ──────────── TICKETSHOP / CONSENT-GATE ──────────── */
.consent-gate {
  background: var(--white);
  border: 2px dashed var(--gray-200);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}


.consent-gate h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.9rem;
}

.consent-gate p {
  color: var(--gray-500);
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  text-align: left;
}

.consent-gate .consent-links {
  font-size: 0.86rem;
  text-align: center;
  margin-bottom: 1.75rem;
}

.consent-gate a {
  color: var(--blue);
  font-weight: 600;
}

.consent-merken {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--gray-500);
  cursor: pointer;
}

.consent-merken input {
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
}

.eventim-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 0.5rem;
  overflow: hidden;
}

.eventim-wrap iframe {
  display: block;
  width: 100%;
  min-height: 900px;
  border: 0;
}

.ticket-hinweis {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-500);
}

.ticket-hinweis a {
  color: var(--blue);
  font-weight: 600;
}

@media (max-width: 600px) {
  .consent-gate {
    padding: 2rem 1.25rem;
  }
}

/* ──────────── DROPDOWN-NAVIGATION ──────────── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  font-family: inherit;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active,
.nav-dropdown:hover .nav-dropdown-toggle {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.nav-chevron {
  font-size: 0.7rem;
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-chevron,
.nav-dropdown.open .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 200px;
  background: var(--blue-dark);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  box-shadow: 0 16px 40px rgba(15, 24, 41, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 1001;
}

/* unsichtbare Brücke, damit der Mauszeiger die Lücke überqueren kann */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 0.5rem;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.nav-dropdown-menu a {
  white-space: nowrap;
  font-size: 0.88rem;
}

@media (max-width: 768px) {
  .nav-dropdown {
    display: flex;
    flex-direction: column;
  }
  .nav-dropdown-toggle {
    justify-content: space-between;
    width: 100%;
    text-align: left;
  }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    min-width: 0;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    box-shadow: none;
    margin: 0.25rem 0 0.25rem 0.75rem;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    display: flex;
  }
  .nav-dropdown::after {
    display: none;
  }
}

/* ──────────── PRESSE ──────────── */
.presse-session {
  margin-bottom: 3.5rem;
}

.presse-session-titel {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  padding-bottom: 0.75rem;
  margin-bottom: 1.75rem;
  border-bottom: 2px solid var(--gold);
}

.presse-liste {
  display: grid;
  gap: 1.25rem;
}

.presse-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.25s;
}

.presse-item:hover {
  border-color: var(--blue);
  box-shadow: 0 10px 32px rgba(26, 58, 140, 0.1);
  transform: translateY(-2px);
}

.presse-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.presse-meta time {
  background: var(--blue);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
}

.presse-nummer {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.presse-item h3 {
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.45;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.presse-item p {
  color: var(--gray-500);
  font-size: 0.94rem;
  line-height: 1.8;
  margin-bottom: 1.1rem;
}

.presse-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.2s;
}

.presse-link:hover {
  gap: 0.7rem;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .presse-item {
    padding: 1.25rem;
  }
  .presse-meta {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}

/* ──────────── TANZCORPS ──────────── */
.garden-mehr-btn {
  margin-top: 1.25rem;
  align-self: flex-start;
}

.tanzcorps-text {
  max-width: 780px;
}

.tanzcorps-text p {
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1.1rem;
}

.tanzcorps-text strong {
  color: var(--gray-900);
}

.referenz-liste {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 0.75rem;
}

.referenz-liste li {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 0.9rem 1.1rem 0.9rem 1.9rem;
  position: relative;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gray-700);
  line-height: 1.5;
  transition: all 0.2s;
}

.referenz-liste li::before {
  content: '';
  position: absolute;
  left: 1.1rem;
  top: 1.25rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.referenz-liste li:hover {
  border-color: var(--blue);
  box-shadow: 0 6px 20px rgba(26, 58, 140, 0.1);
}

/* ──────────── BOOKING ──────────── */
.booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.booking-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--gold);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}

.booking-card:hover {
  box-shadow: 0 12px 40px rgba(26, 58, 140, 0.12);
  transform: translateY(-4px);
}


.booking-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.4;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.booking-card p {
  color: var(--gray-500);
  font-size: 0.92rem;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.5rem;
}

.booking-kontakt {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-200);
}

.booking-kontakt strong {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 0.15rem;
}

.booking-kontakt a {
  color: var(--gray-700);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: color 0.2s;
}

.booking-kontakt a:hover {
  color: var(--blue);
  text-decoration: underline;
}

.booking-mehr {
  margin-top: 1.25rem;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.booking-mehr:hover {
  text-decoration: underline;
}

/* ──────────── DOWNLOADBEREICH ──────────── */
.download-gruppe {
  margin-bottom: 3.5rem;
}

.download-liste {
  display: grid;
  gap: 1rem;
}

.download-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  text-decoration: none;
  transition: all 0.25s;
}

.download-card:hover {
  border-color: var(--blue);
  box-shadow: 0 10px 32px rgba(26, 58, 140, 0.1);
  transform: translateY(-2px);
}


.download-body {
  flex: 1;
}

.download-body h3 {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.download-tag {
  background: var(--gray-100);
  color: var(--gray-500);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.15rem 0.55rem;
  border-radius: 100px;
}

.download-body p {
  color: var(--gray-500);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 0.6rem;
}

.download-meta {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.download-pfeil {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  color: var(--blue);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}

.download-card:hover .download-pfeil {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(3px);
}

a.kkz-download {
  text-decoration: none;
  transition: all 0.25s;
}

a.kkz-download:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 24px rgba(26, 58, 140, 0.1);
  transform: translateY(-2px);
}

a.kkz-download span:last-child {
  color: var(--blue);
  font-weight: 600;
}

@media (max-width: 600px) {
  .download-card {
    padding: 1.25rem;
    gap: 0.9rem;
  }
  .download-pfeil {
    display: none;
  }
}

/* ──────────── MITGLIED-WERDEN-SEKTION (Startseite) ──────────── */
.mitglied-cta {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  position: relative;
  overflow: hidden;
}

.mitglied-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.mitglied-cta .container {
  position: relative;
  z-index: 1;
}

.mitglied-cta-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.mitglied-cta-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 60ch;
}

.mitglied-cta-preise {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.mitglied-cta-preis {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(240, 180, 41, 0.35);
  border-radius: 12px;
  padding: 0.9rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.mitglied-cta-preis strong {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.mitglied-cta-preis span {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.mitglied-cta-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(15, 24, 41, 0.35);
}

@media (max-width: 900px) {
  .mitglied-cta-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .mitglied-cta-visual {
    order: -1;
  }
  .mitglied-cta-visual img {
    height: 260px;
  }
}

.booking-bild {
  margin-bottom: 2rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(26, 58, 140, 0.16);
  background: var(--white);
}

.booking-bild img {
  display: block;
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  object-position: center 35%;
}

.booking-bild figcaption {
  padding: 0.9rem 1.25rem;
  font-size: 0.88rem;
  color: var(--gray-500);
  border-top: 1px solid var(--gray-200);
}

@media (max-width: 600px) {
  .booking-bild img {
    max-height: 240px;
  }
}

/* ──────────── KREFELDER PRINZENPAARE ──────────── */
.krefeld-intro {
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 60ch;
  margin-bottom: 2rem;
}

.krefeld-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.krefeld-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}

.krefeld-card:hover {
  border-color: var(--gold);
  box-shadow: 0 14px 40px rgba(26, 58, 140, 0.14);
  transform: translateY(-4px);
}

.krefeld-bild {
  position: relative;
  background: var(--gray-100);
}

.krefeld-bild img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center 30%;
  cursor: zoom-in;
}

.krefeld-jahr {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: var(--gold);
  color: var(--blue-dark);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  box-shadow: 0 6px 18px rgba(15, 24, 41, 0.25);
}

.krefeld-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.krefeld-body strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
}

.krefeld-body p {
  margin-top: 0.6rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--gray-100);
  font-size: 0.86rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ──────────── HERO IM WECHSEL (Prinzenpaare) ──────────── */
.hero-wechsel {
  position: relative;
  overflow: hidden;
}

.hero-wechsel-bild {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Zweites Bild blendet sich alle 14 Sekunden über das erste */
.hero-wechsel-bild.zweitbild {
  opacity: 0;
  animation: heroWechsel 14s ease-in-out infinite;
}

@keyframes heroWechsel {
  0%, 42% { opacity: 0; }
  50%, 92% { opacity: 1; }
  100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-wechsel-bild.zweitbild {
    animation: none;
  }
}

/* Sanftes Scrollen abschalten, wenn reduzierte Bewegung gewünscht ist */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ──────────── SPONSOR WERDEN ──────────── */
.sponsor-intro {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}

.sponsor-intro p {
  color: var(--gray-700);
  font-size: 0.98rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.sponsor-zwischentitel {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue);
  margin: 1.75rem 0 0.75rem;
}

.paket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.75rem;
  align-items: start;
}

.paket-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 5px solid var(--gray-200);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}

.paket-card:hover {
  box-shadow: 0 14px 44px rgba(26, 58, 140, 0.14);
  transform: translateY(-4px);
}

.paket-bronze { border-top-color: #b08d57; }
.paket-silber { border-top-color: #9aa7bd; }
.paket-gold { border-top-color: var(--gold); }

.paket-card.empfohlen {
  box-shadow: 0 16px 48px rgba(240, 180, 41, 0.22);
  border-color: var(--gold);
}

.paket-badge {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  white-space: nowrap;
}

.paket-kopf {
  text-align: center;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}

.paket-kopf h3 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.paket-preis strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.paket-preis span {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-top: 0.4rem;
}

.paket-liste {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  flex: 1;
}

.paket-liste li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--gray-700);
}

.paket-liste li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(26, 58, 140, 0.08);
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.paket-gold .paket-liste li::before {
  background: rgba(240, 180, 41, 0.2);
  color: #a37200;
}

.paket-btn {
  margin-top: 1.75rem;
  justify-content: center;
}

.sponsor-kontakt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 900px) {
  .sponsor-intro,
  .sponsor-kontakt {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
