: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: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}

.logo-text {
  display: flex;
  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-logo {
  width: 120px;
  height: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease both;
}

.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;
}

/* ──────────── 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: 40px;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
  opacity: 0.7;
}

.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);
}

.foerderer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.foerderer-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 1.75rem 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.5rem;
}

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

.foerderer-main {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: white;
  border-color: transparent;
}

.foerderer-main:hover {
  border-color: transparent;
  box-shadow: 0 8px 28px rgba(26,58,140,0.3);
}

.foerderer-main .foerderer-name {
  color: white;
}

.foerderer-main .foerderer-sub {
  color: var(--gold);
}

.foerderer-icon {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

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

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

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

@media (max-width: 500px) {
  .foerderer-grid {
    grid-template-columns: 1fr;
  }
  .foerderer-main {
    grid-column: span 1;
  }
}

/* ──────────── 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; }
}
