/* ═══════════════════════════════════════════════════════
   MK Fulda – Haupt-Stylesheet
   Maritimes Design: Navy / Weiß / Gold
   Mobile-First
═══════════════════════════════════════════════════════ */

/* ─── CSS VARIABLEN ─── */
:root {
  --navy:   #0d2340;
  --navy2:  #163358;
  --gold:   #c9a84c;
  --gold2:  #e8c97a;
  --white:  #f5f7fa;
  --gray:   #8a9ab0;
  --light:  #dce6f0;
  --text:   #4a5a70;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 12px rgba(13,35,64,0.08);
  --shadow-md: 0 6px 24px rgba(13,35,64,0.13);
  --shadow-lg: 0 16px 50px rgba(13,35,64,0.18);

  --transition: 0.25s ease;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--navy); }

/* ─── TYPOGRAFIE ─── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
}

/* ─── BUTTONS ─── */
.btn-primary,
.btn-outline {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 30px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.4px;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-primary:hover {
  background: var(--gold2);
  box-shadow: 0 6px 28px rgba(201,168,76,0.5);
  transform: translateY(-2px);
  color: var(--navy);
}

.btn-outline {
  border: 1.5px solid rgba(245,247,250,0.5);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold2);
  background: rgba(201,168,76,0.08);
}

.btn-outline--dark {
  border-color: rgba(13,35,64,0.35);
  color: var(--navy);
}
.btn-outline--dark:hover {
  border-color: var(--navy);
  background: rgba(13,35,64,0.05);
  color: var(--navy);
}

/* ─── HEADER ─── */
.mk-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,35,64,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.25);
  transition: background var(--transition);
}

.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 1.5rem;
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: 0.7rem;
  text-decoration: none;
}
.logo-emblem {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 900;
  color: var(--navy);
  flex-shrink: 0;
}
.logo-text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; color: var(--white);
  letter-spacing: 0.4px;
}
.logo-text span {
  font-size: 0.68rem; color: var(--gold);
  letter-spacing: 1.5px; text-transform: uppercase;
}

/* Desktop Nav */
nav { display: flex; gap: 0.1rem; align-items: center; }
nav a {
  color: var(--light); text-decoration: none;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem; border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
nav a:hover,
nav a.active { color: var(--gold2); background: rgba(201,168,76,0.1); }
nav a[aria-current="page"] { color: var(--gold2); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.4rem 1.1rem !important;
  border-radius: 20px !important;
  margin-left: 0.4rem;
}
.nav-cta:hover { background: var(--gold2) !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
  background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.3s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav – standardmäßig IMMER versteckt */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--navy2);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 1rem 1.5rem;
  gap: 0.3rem;
}
[hidden] { display: none !important; }
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  color: var(--light); text-decoration: none;
  font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.8px; text-transform: uppercase;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold2); }

/* ─── HERO ─── */
.mk-hero {
  min-height: 100svh;
  background-color: var(--navy);
  background-image:
    linear-gradient(160deg, rgba(13,35,64,0.9) 0%, rgba(13,35,64,0.6) 60%, rgba(13,35,64,0.35) 100%),
    var(--hero-bg, none);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 5rem;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.mk-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 60px,
    rgba(255,255,255,0.012) 60px, rgba(255,255,255,0.012) 61px
  );
  pointer-events: none;
}

.hero-content {
  max-width: 1100px; margin: 0 auto;
  padding: 0 1.5rem;
  position: relative; z-index: 1;
  animation: fadeUp 0.9s ease both;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 20px;
  padding: 0.3rem 1rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
  color: var(--gold2); text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  font-weight: 900; line-height: 1.05;
  color: var(--white);
  max-width: 700px; margin-bottom: 1.2rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.hero-content h1 em {
  color: var(--gold2); font-style: normal;
  display: block;
}
.hero-content > p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 300; color: rgba(245,247,250,0.85);
  max-width: 520px; line-height: 1.7;
  margin-bottom: 2.2rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 3rem;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 900;
  color: var(--gold2); line-height: 1;
}
.stat-label {
  font-size: 0.72rem; letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245,247,250,0.6);
  margin-top: 0.2rem;
}

/* ─── STAMMTISCH BANNER ─── */
.stammtisch-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  position: relative; overflow: hidden;
}
.stammtisch-banner::before {
  content: '⚓';
  position: absolute; right: -1.5rem; top: 50%; transform: translateY(-50%);
  font-size: 14rem; opacity: 0.035; line-height: 1;
  pointer-events: none;
}
.stammtisch-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 3rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.stammtisch-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: var(--white); margin-bottom: 0.4rem;
}
.stammtisch-text strong { color: var(--gold2); }
.stammtisch-text p {
  color: rgba(245,247,250,0.7);
  font-size: 0.95rem; font-weight: 300;
}

/* ─── SEKTIONEN ─── */
.mk-section { padding: 5rem 0; }
.mk-section--light { background: #eef2f7; }

.section-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 1.5rem;
}

.section-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.5rem; display: block;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900; color: var(--navy);
  line-height: 1.15; margin-bottom: 2.5rem;
}

.mk-section-cta { margin-top: 2rem; }
.mk-notice { color: var(--gray); font-style: italic; }

/* ─── NEWS GRID ─── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
}
.news-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(13,35,64,0.07);
  display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.news-card-badge { padding: 1.3rem 1.5rem 0; }
.news-type {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  color: #7a6018;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem; border-radius: 12px;
}
.news-card-body { padding: 0.8rem 1.5rem 1.5rem; flex: 1; }
.news-card-body h3 {
  font-size: 1.15rem; font-weight: 700;
  color: var(--navy); margin-bottom: 0.5rem;
  line-height: 1.3;
}
.news-card-body p { font-size: 0.9rem; color: var(--text); line-height: 1.65; }
.news-card-footer {
  padding: 0.9rem 1.5rem;
  border-top: 1px solid rgba(13,35,64,0.07);
  display: flex; align-items: center; justify-content: space-between;
}
.news-date {
  font-size: 0.78rem; color: var(--gray); font-weight: 600;
}
.news-date::before { content: '📅 '; font-size: 0.73rem; }
.news-link {
  font-size: 0.78rem; font-weight: 700; color: var(--gold);
  text-decoration: none; letter-spacing: 0.3px;
  display: flex; align-items: center; gap: 0.3rem;
  transition: gap var(--transition);
}
.news-link:hover { gap: 0.6rem; color: var(--gold); }
.news-link::after { content: '→'; }

/* ─── TERMINE ─── */
.termine-list { display: flex; flex-direction: column; gap: 1rem; }

.termin-item {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.3rem 1.5rem;
  display: flex; align-items: center; gap: 1.5rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}
.termin-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}
.termin-date {
  min-width: 58px; text-align: center;
  background: var(--navy); color: #fff;
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.3rem; flex-shrink: 0;
}
.termin-date .day {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 900; line-height: 1;
  color: var(--gold2);
}
.termin-date .month {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.termin-info h4 {
  font-size: 1rem; font-weight: 700; color: var(--navy);
  margin-bottom: 0.2rem;
}
.termin-info p { font-size: 0.85rem; color: var(--gray); }
.termin-ort { font-style: normal; }

/* ─── FOOTER ─── */
.mk-footer {
  background: var(--navy);
  color: rgba(245,247,250,0.6);
  font-size: 0.85rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 4rem 1.5rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand .logo-text strong { color: var(--white); }
.footer-brand p {
  font-size: 0.87rem; line-height: 1.7;
  margin-top: 1rem; max-width: 280px;
  color: rgba(245,247,250,0.5);
}
.footer-col h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  color: rgba(245,247,250,0.55);
  text-decoration: none; font-size: 0.87rem;
  padding: 0.28rem 0; transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold2); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.78rem; color: rgba(245,247,250,0.35);
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  color: rgba(245,247,250,0.35); text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold2); }

/* ─── ANIMATIONEN ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stats { gap: 1.5rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; }
  .stammtisch-inner { flex-direction: column; text-align: center; }
  .termin-item { gap: 1rem; }
}
/* ─── MOBILE NAV FIX ─── */
/* Diese Regeln ans Ende deiner main.css auf dem Server anfügen
   ODER die komplette main.css durch die aus dem ZIP ersetzen   */

.mobile-nav {
  display: none !important;
  flex-direction: column;
  background: #163358;
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 1rem 1.5rem;
  gap: 0.3rem;
}
.mobile-nav.is-open {
  display: flex !important;
}
.mobile-nav a {
  color: #dce6f0;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.25s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: #e8c97a; }

/* ─── FREITEXT-MODUL ─── */
.mk-freitext {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  color: var(--text, #4a5a70);
  font-size: 1rem;
  line-height: 1.8;
}
.mk-freitext h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--navy, #0d2340);
  margin: 2rem 0 0.8rem;
}
.mk-freitext h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--navy, #0d2340);
  margin: 1.5rem 0 0.6rem;
}
.mk-freitext p { margin-bottom: 1rem; }
.mk-freitext a {
  color: var(--gold, #c9a84c);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.mk-freitext a:hover { border-color: var(--gold, #c9a84c); }
.mk-freitext ul,
.mk-freitext ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.mk-freitext li { margin-bottom: 0.4rem; }
.mk-freitext img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1rem 0;
}
.mk-freitext blockquote {
  border-left: 4px solid var(--gold, #c9a84c);
  margin: 1.5rem 0;
  padding: 0.8rem 1.2rem;
  background: var(--light, #eef2f7);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--navy, #0d2340);
}
.mk-freitext table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}
.mk-freitext table th {
  background: var(--navy, #0d2340);
  color: #fff;
  padding: 0.6rem 0.9rem;
  text-align: left;
  font-weight: 700;
}
.mk-freitext table td {
  padding: 0.55rem 0.9rem;
  border-bottom: 1px solid var(--light, #eef2f7);
}
.mk-freitext table tr:nth-child(even) td {
  background: var(--light, #eef2f7);
}

/* ==========================================================================
   KONTAKT & INFO SEITE (Zweispaltiges Grid-Layout)
   ========================================================================== */

.contact-page-wrapper {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 20px;
}

/* Erstellt das 2-spaltige Layout auf Desktop-Monitoren */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr; /* Mobil: 1 Spalte untereinander */
  gap: 3rem;
  align-items: start;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 4fr 6fr; /* Desktop: Links schmaler (Info), rechts breiter (Formular) */
  }
}

/* Linke Spalte: Infobox */
.contact-info-block {
  background-color: #f4f7f9; /* Dezentes Marine-Hellblau/Grau */
  border-left: 4px solid #002d5a; /* Dunkelblaue MK-Fulda Erkennungsfarbe */
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-info-block h3 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: #002d5a;
  font-size: 1.5rem;
}

.contact-address {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.contact-sep {
  border: 0;
  border-top: 1px solid #dbe3e9;
  margin: 1.5rem 0;
}

.contact-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-details-list li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #444;
}

/* Rechte Spalte: Formular-Styling */
.contact-form-block h3 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: #002d5a;
  font-size: 1.5rem;
}

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

.mk-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.mk-form .form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mk-form .form-control:focus {
  border-color: #002d5a;
  box-shadow: 0 0 0 3px rgba(0, 45, 90, 0.15);
  outline: none;
}

/* Der Absendebutton (Klasse angelehnt an eure Buttons) */
.mk-form .btn-primary {
  display: inline-block;
  background-color: #002d5a;
  color: #fff;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.mk-form .btn-primary:hover {
  background-color: #001f3f;
}

/* Erfolgs- und Fehlerboxen */
.alert {
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* ==========================================================================
   ABOUT SECTION (Über uns Mockup Design)
   ========================================================================== */

.about-section {
  padding: 5rem 0;
  background-color: #f8fafc; /* Heller Hintergrund laut Screenshot */
}

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

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Bild-Container wie im Screenshot */
.about-img-wrap {
  position: relative;
  border-radius: 24px; /* Schön abgerundete Ecken */
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.about-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* Dunkelblaues, abgerundetes Badge im Bild links unten */
.about-badge-card {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background-color: #0b1e36; /* Sehr dunkles Marineblau */
  color: #fff;
  padding: 15px 25px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.about-badge-card .badge-year {
  font-size: 1.8rem;
  font-weight: 800;
  display: block;
  color: #d1a84c; /* Goldton */
  line-height: 1.1;
  font-family: 'Georgia', serif; /* Für den edlen Look der Zahlen */
}

.about-badge-card .badge-lbl {
  font-size: 0.85rem;
  color: #e2e8f0;
  display: block;
  margin-top: 2px;
}

/* Text & Überschriften */
.about-text .section-label {
  display: block;
  color: #64748b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.about-text .section-title {
  color: #0b1e36;
  font-size: 3rem;
  line-height: 1.15;
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-weight: 800;
  font-family: 'Georgia', serif; /* Edle Serifenschrift wie im Screenshot */
}

.about-p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 1.25rem;
}

/* Das 2-spaltige Aufzählungs-Grid */
.about-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 576px) {
  .about-features-grid {
    grid-template-columns: 1fr 1fr; /* 2 Spalten für die Punkte */
  }
}

/* Einzelner Feature Punkt - Ausrichtung oben statt mittig */
.feature-item {
  font-size: 1rem;
  font-weight: 700;
  color: #0b1e36;
  display: flex;
  align-items: flex-start; /* KORREKTUR: Richtet das Icon oben aus */
  position: relative;
  padding-left: 25px;
  line-height: 1.4; /* Sorgt für eine saubere Zeilenhöhe */
}

/* Die goldene Raute - Exakt auf Höhe der ersten Zeile positioniert */
.feature-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px; /* KORREKTUR: Schiebt die Raute präzise auf die Höhe der ersten Textzeile */
  width: 10px;
  height: 10px;
  background-color: #d1a84c; /* Goldraute */
  transform: rotate(45deg);
  flex-shrink: 0; /* Verhindert, dass das Icon bei Platzmangel gestaucht wird */
}

/* Der goldene Button unten */
.btn-primary-gold {
  display: inline-block;
  background-color: #d1a84c;
  color: #0b1e36 !important;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 30px; /* Komplett rund laut Screenshot */
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(209, 168, 76, 0.3);
  transition: transform 0.2s, background-color 0.2s;
}

.btn-primary-gold:hover {
  background-color: #be9539;
  transform: translateY(-2px);
}

/* ==========================================================================
   AUTOMATISCHES GALERIE & ALBEN SYSTEM
   ========================================================================== */

.gallery-years-wrapper {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 20px;
}

.gallery-year-section {
  margin-bottom: 4rem;
}

.gallery-year-section .year-title {
  font-family: 'Georgia', serif;
  color: #0b1e36;
  font-size: 2rem;
  border-bottom: 2px solid #d1a84c; /* Goldener MK-Fulda Strich */
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

/* Flexibles Raster für die Alben-Vorschau */
.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

/* Die Album-Kachel */
.album-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.album-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 45, 90, 0.15);
}

.album-img-container {
  width: 100%;
  height: 200px;
  background-color: #e2e8f0;
  overflow: hidden;
}

.album-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.album-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.album-info h4 {
  color: #0b1e36;
  margin: 0 0 1rem 0;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
}

.album-link-btn {
  font-size: 0.9rem;
  color: #d1a84c;
  font-weight: 700;
  margin-top: auto; /* Schiebt den Button immer brav nach unten */
}

/* Korrektur für euer eigentliches Galerie-Modul (Die Detail-Bilder) */
.gallery-pic-box {
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  cursor: pointer;
}

.gallery-pic-box:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 45, 90, 0.15);
}
/* Styling für die Ereignis-Details auf den Unterseiten */
.event-gallery-wrapper {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 20px;
}

.event-main-title {
  font-family: 'Georgia', serif;
  color: #0b1e36;
  font-size: 2.2rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-weight: 800;
}

.event-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #475569;
  max-width: 800px;
  margin-bottom: 2.5rem;
}
/* Styling für die neuen interaktiven Jahres-Buttons */
.year-toggle-btn {
  width: 100%;
  background-color: #0b1e36; /* Marineblau */
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: 'Georgia', serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: left;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.year-toggle-btn:hover {
  background-color: #122d4f;
  box-shadow: 0 4px 12px rgba(11, 30, 54, 0.15);
}

.year-toggle-btn .icon {
  margin-right: 10px;
  color: #d1a84c; /* Goldener Akzent fürs Anker-Icon */
}

.year-toggle-btn .arrow {
  font-size: 1rem;
  color: #d1a84c;
  transition: transform 0.3s ease;
}

/* Wenn das Jahr geöffnet ist, verändert sich der Button leicht */
.year-toggle-btn.active {
  background-color: #0b1e36;
  border-bottom: 3px solid #d1a84c; /* Goldene Kante unten bei Aktivität */
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 0; /* Schließt direkt an das Grid an */
}

.year-toggle-btn.active .arrow {
  transform: rotate(180deg); /* Pfeil dreht sich nach oben */
}

/* Das Grid bekommt einen kleinen Innenabstand, wenn es unter dem aktiven Button aufklappt */
.year-toggle-btn.active + .albums-grid {
  background: #ffffff;
  padding: 2rem 1.5rem;
  border: 1px solid #e2e8f0;
  border-top: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  margin-bottom: 2.5rem;
}