/* ============================================
   SHANTY CHOR GIMBTE – Kirby Theme
   Version 1.0
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --color-navy: #1e3a5f;
  --color-navy-dark: #152a45;
  --color-red: #c41e3a;
  --color-red-dark: #a01830;
  --color-cream: #faf8f5;
  --color-sand: #f0ebe3;
  --color-white: #ffffff;
  --color-text: #2c3e50;
  --color-text-light: #5a6c7d;
  
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  --max-width: 1140px;
  --header-height: 90px;
  
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 50px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

ul, ol {
  list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: var(--space-md); }
h3 { font-size: 1.2rem; margin-bottom: var(--space-sm); }
h4 { font-size: 1rem; margin-bottom: var(--space-xs); }

p { margin-bottom: var(--space-sm); }
p:last-child { margin-bottom: 0; }

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

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
}

.section--white { background: var(--color-white); }
.section--cream { background: var(--color-cream); }
.section--navy { background: var(--color-navy); color: var(--color-white); }
.section--navy h2, .section--navy h3 { color: var(--color-white); }
.section--red { background: var(--color-red); color: var(--color-white); }
.section--red h2 { color: var(--color-white); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--color-white);
  z-index: 100;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.site-logo img {
  height: 65px;
  width: auto;
}

.site-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.site-logo-text .name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy);
}

.site-logo-text .tagline {
  font-size: 0.75rem;
  color: var(--color-text-light);
  letter-spacing: 0.03em;
}

/* ---------- Navigation ---------- */
.main-nav ul {
  display: flex;
  gap: var(--space-xs);
}

.main-nav a {
  color: var(--color-navy);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.main-nav a:hover {
  background: var(--color-sand);
  color: var(--color-navy-dark);
}

.main-nav a[aria-current="page"],
.main-nav a.active {
  background: var(--color-navy);
  color: var(--color-white);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-navy);
  font-size: 1.5rem;
  cursor: pointer;
  padding: var(--space-xs);
}

/* ---------- Page Header ---------- */
.page-header {
  padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-lg);
  background: var(--color-navy);
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

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

.page-header h1 {
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}

.page-header .subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn--primary {
  background: var(--color-red);
  color: var(--color-white);
}
.btn--primary:hover {
  background: var(--color-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
}

.btn--navy {
  background: var(--color-navy);
  color: var(--color-white);
}
.btn--navy:hover {
  background: var(--color-navy-dark);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.8);
}
.btn--outline:hover {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
}

.btn--white {
  background: var(--color-white);
  color: var(--color-red);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--header-height);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(21, 42, 69, 0.4) 0%, rgba(21, 42, 69, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-white);
  padding: var(--space-lg) var(--space-md);
  max-width: 800px;
}

.hero-logo {
  width: 140px;
  height: 140px;
  margin: 0 auto var(--space-md);
  animation: fadeIn 0.8s ease-out;
}

.hero-logo img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-xs);
  animation: fadeInUp 0.8s ease-out 0.2s both;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-tagline {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta {
  display: inline-flex;
  gap: var(--space-sm);
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* ---------- Jubilee Banner ---------- */
.jubilee-banner {
  background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
  color: var(--color-white);
  padding: var(--space-lg) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.jubilee-banner::before {
  content: '25';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12rem;
  font-weight: 700;
  font-family: var(--font-display);
  opacity: 0.1;
  line-height: 1;
}

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

.jubilee-badge {
  display: inline-block;
  background: var(--color-white);
  color: var(--color-red);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}

.jubilee-banner h2 {
  color: var(--color-white);
  margin-bottom: var(--space-xs);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.jubilee-banner p {
  margin: 0;
  font-size: 1.15rem;
  opacity: 0.95;
}

.jubilee-date {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: var(--space-sm);
}

/* ---------- Event List ---------- */
.event-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 700px;
}

.event-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-md);
  align-items: center;
  padding: var(--space-md);
  background: var(--color-cream);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-red);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.event-item.highlight {
  background: linear-gradient(90deg, rgba(196,30,58,0.08) 0%, var(--color-cream) 100%);
}

.event-date {
  text-align: center;
}

.event-date .day {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1;
}

.event-date .month {
  font-size: 0.9rem;
  color: var(--color-red);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.event-details h3 {
  margin-bottom: 0.2rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.event-location {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.event-badge {
  display: inline-block;
  background: var(--color-red);
  color: white;
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  margin-left: 0.5rem;
  vertical-align: middle;
  text-transform: uppercase;
  font-weight: 600;
}

/* ---------- Cards ---------- */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  aspect-ratio: 16/10;
  background: var(--color-navy);
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.card-content {
  padding: var(--space-md);
}

.card-meta {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- News Grid ---------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

/* ---------- Crew Styles ---------- */
.stats-row {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-red);
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-top: 0.3rem;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-header h2 {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.section-header h2::before,
.section-header h2::after {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--color-red);
}

.section--navy .section-header h2::before,
.section--navy .section-header h2::after {
  background: rgba(255,255,255,0.3);
}

.section-intro {
  max-width: 700px;
  margin: calc(-1 * var(--space-sm)) auto var(--space-lg);
  text-align: center;
  color: var(--color-text-light);
}

/* Leitung Grid */
.leitung-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  max-width: 900px;
  margin: 0 auto;
}

.leitung-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform 0.2s ease;
}

.leitung-card:hover {
  transform: translateY(-4px);
}

.leitung-card.highlight {
  border: 2px solid var(--color-red);
}

.leitung-photo {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.leitung-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leitung-badge {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: var(--color-red);
  color: white;
  font-size: 0.7rem;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-transform: uppercase;
}

.leitung-info {
  padding: var(--space-md);
}

.leitung-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.leitung-role {
  color: var(--color-red);
  font-weight: 600;
  font-size: 0.9rem;
}

.leitung-detail {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: 0.3rem;
}

/* Crew Grid */
.crew-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: var(--space-md);
}

.crew-member {
  text-align: center;
}

.crew-photo {
  width: 110px;
  height: 110px;
  margin: 0 auto var(--space-sm);
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-navy);
  border: 4px solid var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}

.crew-member:hover .crew-photo {
  transform: scale(1.05);
}

.crew-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.crew-member h3 {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.crew-rolle {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.crew-rolle.special {
  color: var(--color-red);
  font-weight: 500;
}

/* Abschied vom Meer */
.abschied-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  color: rgba(255,255,255,0.8);
  font-style: italic;
}

.abschied-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--space-md);
  max-width: 800px;
  margin: 0 auto;
}

.abschied-member {
  text-align: center;
  padding: var(--space-md);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
}

.abschied-kreuz {
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
  opacity: 0.5;
}

.abschied-photo {
  width: 90px;
  height: 90px;
  margin: 0 auto var(--space-sm);
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 3px solid rgba(255,255,255,0.2);
  filter: grayscale(100%);
  overflow: hidden;
}

.abschied-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.abschied-member h3 {
  font-size: 1rem;
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.abschied-info {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* Mitsingen CTA */
.mitsingen-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.mitsingen-content p {
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: var(--color-sand);
}

.timeline-item {
  position: relative;
  padding: var(--space-md) 0;
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: var(--space-md);
  align-items: center;
}

.timeline-year {
  background: var(--color-red);
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  text-align: center;
  position: relative;
  z-index: 1;
}

.timeline-content {
  background: var(--color-cream);
  padding: var(--space-md);
  border-radius: var(--radius-md);
}

.timeline-content h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin: 0;
}

.timeline-item:nth-child(odd) .timeline-content {
  grid-column: 1;
  text-align: right;
}
.timeline-item:nth-child(odd) .timeline-year { grid-column: 2; }
.timeline-item:nth-child(odd)::after { content: ''; grid-column: 3; }

.timeline-item:nth-child(even)::before { content: ''; grid-column: 1; }
.timeline-item:nth-child(even) .timeline-year { grid-column: 2; }
.timeline-item:nth-child(even) .timeline-content { grid-column: 3; text-align: left; }

/* ---------- Galerie ---------- */
.galerie-epoch {
  margin-bottom: var(--space-xl);
}

.galerie-epoch:last-child {
  margin-bottom: 0;
}

.epoch-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.epoch-years {
  background: var(--color-navy);
  color: white;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.epoch-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-navy);
  margin: 0;
}

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-sm);
}

.galerie-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-navy-dark);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.galerie-item:hover {
  transform: scale(1.02);
}

.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s ease;
}

.galerie-item:hover img {
  opacity: 0.9;
}

.galerie-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-sm);
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.galerie-item:hover .galerie-caption {
  opacity: 1;
}

/* ---------- Partner Cards ---------- */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-lg);
}

.partner-card {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.partner-image {
  height: 200px;
  background: var(--color-navy);
  overflow: hidden;
}

.partner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-content {
  padding: var(--space-md);
}

.partner-content h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
}

.partner-badge {
  display: inline-block;
  background: var(--color-red);
  color: white;
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.partner-content p {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--color-navy);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: var(--space-sm);
}

.partner-link:hover {
  color: var(--color-red);
}

/* ---------- Video Section ---------- */
.video-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  color: rgba(255,255,255,0.8);
}

.video-intro .platt {
  font-style: italic;
  color: rgba(255,255,255,0.6);
  margin-top: var(--space-sm);
}

.video-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: var(--color-navy-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------- Contact Form ---------- */
.contact-form {
  max-width: 600px;
}

.form-group {
  margin-bottom: var(--space-sm);
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-navy);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--color-sand);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-navy);
}

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

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-navy-dark);
  color: rgba(255,255,255,0.8);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.5fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.footer-brand img {
  width: 55px;
  height: 55px;
}

.footer-brand-text {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-white);
  line-height: 1.3;
}

.footer-section h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.footer-section li {
  margin-bottom: 0.4rem;
}

.footer-section a {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: var(--color-white);
}

.footer-contact p {
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.sponsor-logos {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  flex-wrap: wrap;
}

.sponsor-logos img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.sponsor-logos img:hover {
  opacity: 1;
}

.footer-bottom {
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer-legal a {
  color: rgba(255,255,255,0.5);
  margin-left: var(--space-md);
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.8);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-sm);
}

.lightbox-caption {
  color: rgba(255,255,255,0.8);
  margin-top: var(--space-sm);
  font-size: 0.95rem;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
  padding: var(--space-md);
}

.lightbox-nav:hover {
  opacity: 1;
}

.lightbox-prev { left: 0; }
.lightbox-next { right: 0; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.text-muted { color: var(--color-text-light); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

/* ---------- Animations ---------- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: span 2;
    margin-bottom: var(--space-sm);
  }
  .footer-sponsors {
    grid-column: span 2;
  }
  
  .leitung-grid {
    grid-template-columns: 1fr 1fr;
  }
  .leitung-card:nth-child(3) {
    grid-column: span 2;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .timeline::before { left: 20px; }
  .timeline-item {
    grid-template-columns: 60px 1fr;
    gap: var(--space-sm);
  }
  .timeline-item .timeline-year {
    grid-column: 1;
    grid-row: 1;
    font-size: 0.9rem;
    padding: 0.4rem 0.6rem;
  }
  .timeline-item .timeline-content {
    grid-column: 2;
    grid-row: 1;
    text-align: left !important;
  }
  .timeline-item::before, .timeline-item::after { display: none; }
  
  .partner-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  html { font-size: 16px; }
  
  .site-logo-text { display: none; }
  
  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: var(--space-md);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
  }
  
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }
  
  .main-nav a {
    display: block;
    padding: var(--space-sm);
    border-radius: 0;
  }
  
  .menu-toggle { display: block; }
  
  .hero { min-height: 80vh; }
  .hero-logo { width: 110px; height: 110px; }
  .hero-cta {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }
  .hero-cta .btn { width: 100%; }
  
  .jubilee-banner::before { display: none; }
  
  .stats-row { gap: var(--space-md); }
  .stat-number { font-size: 2.5rem; }
  
  .leitung-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
  }
  .leitung-card:nth-child(3) { grid-column: auto; }
  
  .crew-grid { grid-template-columns: repeat(2, 1fr); }
  
  .event-item { grid-template-columns: 70px 1fr; }
  
  .news-grid { grid-template-columns: 1fr; }
  
  .galerie-grid { grid-template-columns: repeat(2, 1fr); }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand {
    justify-content: center;
    grid-column: auto;
  }
  .footer-sponsors {
    grid-column: auto;
  }
  .sponsor-logos { justify-content: center; }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
  .footer-legal a {
    margin: 0 var(--space-sm);
  }
}

/* ============================================
   SHANTY CHOR - CSS ERGÄNZUNGEN
   ============================================ */

/* ---------- Page Header Höhen-Varianten ---------- */
.page-header {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header--small {
  min-height: 250px;
}

.page-header--medium {
  min-height: 350px;
}

.page-header--large {
  min-height: 450px;
}

.page-header--xlarge {
  min-height: 550px;
}

.page-header::before {
  opacity: 0.3;
}

/* ---------- Hero Höhen-Varianten ---------- */
.hero--medium {
  min-height: 350px;
}

.hero--large {
  min-height: 500px;
}

.hero--xlarge {
  min-height: 650px;
}

.hero--fullscreen {
  min-height: 100vh;
}

/* ---------- Page-Nav (Unterseiten-Navigation) ---------- */
.page-nav {
  background: var(--color-white);
  border-bottom: 2px solid var(--color-sand);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: var(--header-height);
  z-index: 50;
}

.page-nav-inner {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  flex-wrap: wrap;
}

.page-nav a {
  color: var(--color-navy);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  border-radius: 25px;
  border: 2px solid var(--color-navy);
  background: transparent;
  transition: all 0.2s ease;
  text-decoration: none;
}

.page-nav a:hover,
.page-nav a.active {
  background: var(--color-navy);
  color: var(--color-white);
}

@media (max-width: 600px) {
  .page-nav-inner {
    gap: var(--space-xs);
  }
  .page-nav a {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
}

/* ---------- Crew Grid Fix (4 Spalten) ---------- */
.crew-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: var(--space-lg);
}

@media (max-width: 900px) {
  .crew-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .crew-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ---------- Leitung-Fotos Fix ---------- */
.leitung-photo {
  height: 300px !important;
}

.leitung-photo img {
  object-position: top !important;
}

/* ---------- Abschied-Grid Fix ---------- */
.abschied-grid {
  grid-template-columns: repeat(2, 1fr) !important;
  max-width: 600px;
  justify-content: center !important;
  justify-items: center !important;
}

.abschied-photo {
  width: 180px !important;
  height: 180px !important;
}

.abschied-member {
  width: 100%;
  max-width: 280px;
}

/* ---------- Sponsoren-Logos Fix ---------- */
.sponsor-logos img {
  height: 60px !important;
  width: auto;
  filter: none !important;
  opacity: 1 !important;
  transition: transform 0.2s ease;
}

.sponsor-logos img:hover {
  transform: scale(1.05);
}

/* Crew-Fotos größer */
.crew-photo {
  width: 140px !important;
  height: 140px !important;
}

/* Crew-Fotos größer */
.crew-photo {
  width: 140px !important;
  height: 140px !important;
}

/* Crew-Fotos größer (wie Abschied) */
.crew-photo {
  width: 180px !important;
  height: 180px !important;
}
