/* ==========================================================================
   MEVLANA CAMII ETTLINGEN — Hauptstylesheet
   DITIB Türkisch-Islamische Gemeinde zu Ettlingen e.V.
   Komplett überarbeitet — Clean, Modern, Professionell
   ========================================================================== */


/* --------------------------------------------------------------------------
   1. RESET & VARIABLEN
   -------------------------------------------------------------------------- */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --red:        #C0272D;
  --red-dark:   #9B1B20;
  --red-light:  #D93040;
  --dark:       #18181b;
  --dark-soft:  #27272a;
  --text:       #1a1a1f;
  --text-light: #52525b;
  --text-muted: #71717a;
  --bg:         #ffffff;
  --bg-alt:     #f4f4f5;
  --bg-section: #fafafa;
  --border:     #e4e4e7;
  --border-light:#f0f0f2;
  --surface:    #ffffff;
  --radius:     8px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.12);
  --shadow-xl:  0 24px 60px rgba(0,0,0,.16);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.1;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }


/* --------------------------------------------------------------------------
   2. HINTERGRUND-MUSTER
   -------------------------------------------------------------------------- */

.geo-bg {
  background-color: var(--red);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='0.5'%3E%3Crect x='10' y='10' width='40' height='40' rx='1' transform='rotate(45 30 30)'/%3E%3Crect x='18' y='18' width='24' height='24' rx='1' transform='rotate(45 30 30)'/%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px;
}


/* --------------------------------------------------------------------------
   3. SCROLL-ANIMATIONEN (IntersectionObserver)
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}

.reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(.92);
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delays für Kinder-Elemente */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: .1s; }
.stagger > *:nth-child(3) { transition-delay: .2s; }
.stagger > *:nth-child(4) { transition-delay: .3s; }
.stagger > *:nth-child(5) { transition-delay: .4s; }
.stagger > *:nth-child(6) { transition-delay: .5s; }


/* --------------------------------------------------------------------------
   4. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */

header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  border-bottom: 2px solid var(--red);
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
  transition: box-shadow .3s;
}

.hi {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px 0 8px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}

.logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
}

.lm { display: none; }

.logo:hover .logo-img { opacity: .85; }

.lm svg { width: 13px; height: 13px; fill: white; }

.ln {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.1;
}

.ls {
  font-size: 9px;
  color: var(--text-light);
  margin-top: 1px;
  letter-spacing: .04em;
}

/* Navigation */
nav { flex: 1; align-self: stretch; display: flex; justify-content: flex-end; margin-right: 8px; }
nav ul { list-style: none; display: flex; gap: 0; height: 100%; align-items: stretch; }
nav ul li { position: relative; }

nav ul li > a,
nav ul li > button {
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text);
  padding: 0 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 5px;
  border-radius: 0;
  transition: color .2s;
  white-space: nowrap;
  letter-spacing: .01em;
  font-weight: 600;
  position: relative;
}

nav ul li > a:hover,
nav ul li > button:hover {
  color: var(--red);
  background: none;
}



.chv {
  width: 9px;
  height: 9px;
  opacity: .5;
  transition: transform .25s cubic-bezier(.22,1,.36,1);
}

nav ul li:hover .chv { transform: rotate(180deg); }

/* Dropdown-Menü */
.dd {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 200px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transition: all .2s cubic-bezier(.22,1,.36,1);
  box-shadow: var(--shadow-lg);
  z-index: 200;
}

nav ul li:hover .dd {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dd a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text-light);
  border-radius: 6px;
  transition: all .15s;
  cursor: pointer;
  font-weight: 400;
}

.dd a:hover {
  color: var(--red);
  background: rgba(192,39,45,.05);
}


/* --------------------------------------------------------------------------
   5. SPRACH-DROPDOWN (Header)
   -------------------------------------------------------------------------- */

.hr {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-dd {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid var(--border);
  padding: 4px 10px 4px 6px;
  border-radius: 999px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  transition: all .2s;
  letter-spacing: .03em;
}

.lang-btn:hover {
  border-color: var(--red);
  color: var(--red);
}

.lang-flag {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
  flex-shrink: 0;
}

.lang-chv {
  width: 9px;
  height: 9px;
  opacity: .45;
  transition: transform .25s;
  flex-shrink: 0;
  margin-left: 2px;
}

.lang-dd.open .lang-chv { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 150px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transition: all .2s cubic-bezier(.22,1,.36,1);
  box-shadow: var(--shadow-lg);
  z-index: 300;
}

.lang-dd.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.lang-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: none;
  border: none;
  padding: 8px 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text-light);
  cursor: pointer;
  border-radius: 6px;
  transition: all .15s;
  font-weight: 400;
}

.lang-opt:hover {
  color: var(--red);
  background: rgba(192,39,45,.05);
}

.lang-opt.active {
  color: var(--red);
  font-weight: 600;
}


/* --------------------------------------------------------------------------
   6. SEITEN-SYSTEM
   -------------------------------------------------------------------------- */

.page {
  display: none;
  padding-top: 72px;
  min-height: 100vh;
  background: var(--bg);
}

.page.active { display: block; }


/* --------------------------------------------------------------------------
   7. HERO-BEREICH
   -------------------------------------------------------------------------- */

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(300px, 1fr) 380px minmax(280px, 360px);
  align-items: stretch;
}

.hero-left {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border-right: 1px solid var(--border-light);
}

/* Pattern-Layer in Rot */
.hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/pattern-red.png') repeat;
  background-size: 280px;
  opacity: .12;
  pointer-events: none;
  z-index: 0;
}

/* Subtiler Gradient unten */
.hero-left::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to top, rgba(192,39,45,.03), transparent);
  pointer-events: none;
  z-index: 0;
}

.hero-left-content {
  position: relative;
  z-index: 1;
  padding: 48px 24px 0 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0;
  min-height: calc(100vh - 72px - 72px);
}

/* Linke Spalte: Text */
.hero-left-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-right: 0;
}

/* Rechte Spalte: Logo + Partner */
.hero-left-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding-top: 60px;
  position: relative;
  left: -180px;
}

/* Eyebrow-Label */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-ey-line {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
}

.hero-ey-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  opacity: .8;
}

/* Logo — groß und sauber */
.hero-logo {
  width: 260px;
  height: 260px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,.06));
  animation: logoFloat 6s ease-in-out infinite, logoSlide 0s forwards;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Hero Einblende-Animation */
.hero-anim {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeIn .7s cubic-bezier(.22,1,.36,1) forwards;
}

.hero-anim:nth-child(1) { animation-delay: .1s; }
.hero-anim:nth-child(2) { animation-delay: .2s; }
.hero-anim:nth-child(3) { animation-delay: .35s; }
.hero-anim:nth-child(4) { animation-delay: .5s; }
.hero-left-logo.hero-anim { animation-delay: .4s; }
.hero-partners.hero-anim { animation-delay: .6s; }

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero-Überschrift */
.hero h1 {
  font-size: clamp(48px, 5.5vw, 78px);
  font-weight: 300;
  color: var(--dark);
  line-height: .95;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--red);
  font-weight: 300;
}

.hero h1 strong {
  font-weight: 600;
  display: block;
  font-size: .50em;
  color: var(--text-light);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  margin-top: 14px;
}

/* Beschreibungstext */
.hero-sub {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.85;
  max-width: 420px;
  margin-bottom: 36px;
  padding-left: 18px;
  border-left: 3px solid var(--red);
  position: relative;
  z-index: 1;
}

/* Partner-Sektion unter Logo */
.hero-partners {
  position: relative;
  z-index: 1;
  padding: 0;
  border-top: none;
  background: transparent;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero-partners-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  opacity: 1;
  white-space: nowrap;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--red);
}

.hero-partners-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  max-width: 440px;
}

.hero-partner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  background: var(--bg-alt);
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid var(--border-light);
  white-space: nowrap;
  transition: all .3s cubic-bezier(.22,1,.36,1);
  letter-spacing: .01em;
  line-height: 1;
  cursor: default;
}

.hero-partner i {
  font-size: 9px;
  color: var(--red);
  opacity: .5;
  transition: all .3s;
}

.hero-partner:hover {
  border-color: var(--red);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(192,39,45,.1);
}

.hero-partner:hover i {
  opacity: 1;
  transform: scale(1.15);
}
.hero-center {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  border-left: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
  background: var(--bg-section);
  overflow: hidden;
}

.hero-center::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='rgba(192,39,45,0.15)' stroke-width='1'%3E%3Cpolygon points='50,10 58,30 78,22 70,42 90,50 70,58 78,78 58,70 50,90 42,70 22,78 30,58 10,50 30,42 22,22 42,30'/%3E%3Cpolygon points='58,30 70,42 70,58 58,70 42,70 30,58 30,42 42,30'/%3E%3Ccircle cx='50' cy='50' r='8'/%3E%3Cline x1='22' y1='22' x2='0' y2='0'/%3E%3Cline x1='78' y1='22' x2='100' y2='0'/%3E%3Cline x1='22' y1='78' x2='0' y2='100'/%3E%3Cline x1='78' y1='78' x2='100' y2='100'/%3E%3Cpath d='M50,0 Q44,5 50,10 Q56,5 50,0'/%3E%3Cpath d='M100,50 Q95,44 90,50 Q95,56 100,50'/%3E%3Cpath d='M50,100 Q44,95 50,90 Q56,95 50,100'/%3E%3Cpath d='M0,50 Q5,44 10,50 Q5,56 0,50'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100px 100px;
  pointer-events: none;
}

.hero-center-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}

.hero-center-inner::before,
.hero-center-inner::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192,39,45,.3), transparent);
  margin: 0 auto;
}

.hero-center-inner::before { margin-bottom: 20px; }
.hero-center-inner::after  { margin-top: 20px; }

.hero-center-arabic {
  font-family: 'Amiri', serif;
  font-size: 52px;
  color: var(--red);
  opacity: .55;
  line-height: 1.35;
  direction: rtl;
  letter-spacing: 0;
  font-feature-settings: 'liga' 1, 'calt' 1;
  text-rendering: optimizeLegibility;
  margin-bottom: 20px;
  text-shadow: 0 1px 12px rgba(192,39,45,.12);
  filter: drop-shadow(0 0 8px rgba(192,39,45,.06));
  flex-shrink: 0;
}

.hero-center-ornament {
  display: none;
}

.hero-center-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  opacity: .6;
  margin-bottom: 10px;
}

.hero-center-verse {
  font-family: 'Amiri', serif;
  font-size: 28px;
  color: var(--text);
  opacity: .55;
  line-height: 1.7;
  direction: rtl;
  letter-spacing: 0;
  font-feature-settings: 'liga' 1, 'calt' 1;
  text-rendering: optimizeLegibility;
  max-width: 240px;
  margin: 0 auto;
  flex-shrink: 0;
}

.hero-center-meaning {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  font-style: normal;
  color: var(--dark);
  opacity: .85;
  margin-top: 14px;
  line-height: 1.7;
  letter-spacing: .02em;
}

/* Einheitliche Basis für alle arabischen Texte */
.arabic-text,
.hero-arabic,
.rb-arabic,
.gs-title,
.kinfo-arabic,
.fb-arabic {
  font-family: 'Amiri', serif;
  direction: rtl;
  letter-spacing: 0;
  word-spacing: 0.05em;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'liga' 1, 'calt' 1;
  -webkit-font-smoothing: antialiased;
  line-height: 1.8;
}

.hero-arabic {
  font-size: 22px;
  color: var(--text);
  margin-bottom: 22px;
  opacity: .55;
  border-bottom: 1px solid var(--border);
  padding-bottom: 18px;
  display: inline-block;
}

.hero-deco-top {
  display: none;
}

.hero-deco-bottom {
  display: none;
}

.ha {
  display: flex;
  justify-content: flex-start;
  gap: 14px;
  align-items: center;
}

/* Buttons (globale Stile) */
.btn-primary {
  background: var(--red);
  color: white;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 28px;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all .25s cubic-bezier(.22,1,.36,1);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,39,45,.3);
}

.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 13px 28px;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all .25s cubic-bezier(.22,1,.36,1);
}

.btn-secondary:hover {
  border-color: var(--text);
  background: var(--text);
  color: white;
  transform: translateY(-2px);
}

.btn-secondary:active { transform: translateY(0); }


/* --------------------------------------------------------------------------
   8. GEBETSZEITEN-PANEL (Hero rechts)
   -------------------------------------------------------------------------- */

.hero-right {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
}

.prayer-top {
  flex: 1;
  padding: 24px 24px 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.pp-header {
  margin-bottom: 16px;
}

.pp-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pp-title i {
  font-size: 13px;
  opacity: .7;
}

.pp-date-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.pp-date-btn {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6);
  width: 28px;
  height: 28px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  transition: all .15s;
  flex-shrink: 0;
}

.pp-date-btn:hover {
  background: rgba(255,255,255,.15);
  color: white;
}

.pp-date {
  flex: 1;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  transition: all .15s;
  color-scheme: dark;
}

.pp-date:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.2);
}

.pp-date:focus {
  outline: none;
  border-color: rgba(255,255,255,.3);
}

.pp-times {
  flex: 1;
}

.pr-icon {
  width: 16px;
  text-align: center;
  font-size: 12px;
  flex-shrink: 0;
}

.pp-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: 14px;
}

.pp-icon {
  width: 56px;
  height: 56px;
  filter: invert(1);
  opacity: .45;
  flex-shrink: 0;
}

.pp-source, .pp-info {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 10px;
  color: rgba(255,255,255,.5);
  line-height: 1.4;
  border-top: 1px solid rgba(255,255,255,.08);
}

.pp-info i {
  font-size: 10px;
  flex-shrink: 0;
  opacity: .7;
}

.pp-settings {
  padding: 10px 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pp-setting-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pp-setting-label {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .08em;
  min-width: 52px;
  flex-shrink: 0;
}

.pp-setting-inputs {
  display: flex;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.pp-input,
.pp-select {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 5px;
  transition: all .15s;
}

.pp-input {
  flex: 1;
  min-width: 0;
}

.pp-select {
  flex: 0 0 auto;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  padding-right: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='rgba(255,255,255,.5)' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 6px center;
}

.pp-select-full {
  flex: 1;
}

.pp-input:hover, .pp-select:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.2);
}

.pp-input:focus, .pp-select:focus {
  outline: none;
  border-color: rgba(255,255,255,.3);
}

.pp-select option {
  background: #27272a;
  color: #fff;
}

.pr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.pr:last-child { border-bottom: none; }

.pn {
  font-size: 13.5px;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: white;
  letter-spacing: .03em;
}

.pr.now .pn { color: rgba(255,255,255,.95); font-weight: 500; }
.pr.now .pt { color: #ffd580; }

.pd {
  width: 7px;
  height: 7px;
  background: #ffd580;
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .3; transform: scale(.7); }
}


/* --------------------------------------------------------------------------
   9. INFO-STREIFEN
   -------------------------------------------------------------------------- */

.info-strip {
  background: var(--bg-alt);
  border-top: 3px solid var(--red);
  border-bottom: 1px solid var(--border);
}

.info-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.ist {
  padding: 24px 0;
  padding-right: 40px;
  border-right: 1px solid var(--border);
  display: flex;
  gap: 14px;
  align-items: center;
  transition: background .2s;
}

.ist:first-child  { padding-left: 0;  }
.ist:nth-child(2) { padding-left: 40px; }
.ist:last-child   { border-right: none; padding-right: 0; padding-left: 40px; }

.ist-icon {
  width: 40px;
  height: 40px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: var(--radius);
}

.ist-icon svg {
  width: 16px;
  height: 16px;
  stroke: white;
  fill: none;
  stroke-width: 1.8;
}

.ist-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.ist-value {
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
  font-weight: 500;
}


/* --------------------------------------------------------------------------
   10. ANGEBOTE-STREIFEN (4 Werte)
   -------------------------------------------------------------------------- */

.values-strip {
  background: var(--dark);
  padding: 0;
}

.values-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.val-item {
  padding: 48px 32px;
  border-right: 1px solid rgba(255,255,255,.06);
  text-align: center;
  transition: all .3s cubic-bezier(.22,1,.36,1);
}

.val-item:last-child { border-right: none; }

.val-item:hover {
  background: rgba(255,255,255,.05);
  transform: translateY(-4px);
}

.val-icon {
  width: 52px;
  height: 52px;
  background: rgba(192,39,45,.12);
  border: 1px solid rgba(192,39,45,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border-radius: 12px;
  transition: all .3s;
}

.val-item:hover .val-icon {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.1);
}

.val-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--red-light);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .3s;
}

.val-item:hover .val-icon svg { stroke: white; }

.val-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: #e4e4e7;
  margin-bottom: 8px;
}

.val-item p {
  font-size: 12.5px;
  color: rgba(255,255,255,.35);
  line-height: 1.6;
}


/* --------------------------------------------------------------------------
   11. NEUIGKEITEN / AKTUELLES
   -------------------------------------------------------------------------- */

.aktuelles {
  background: var(--bg-section);
}

.sec {
  max-width: 1280px;
  margin: 0 auto;
  padding: 88px 40px 96px;
}

.sec-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 52px;
}

.sec-head-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sec-ey {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: var(--red);
  color: white;
  padding: 5px 12px;
  border-radius: 999px;
}

.sec-h {
  font-size: 40px;
  font-weight: 300;
  color: var(--text);
}

.sec-link {
  font-size: 12px;
  color: var(--red);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
  transition: color .15s;
}

.sec-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s;
}

.sec-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* News-Karten */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .35s cubic-bezier(.22,1,.36,1);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
  border-radius: var(--radius) var(--radius) 0 0;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.nc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px 14px;
  border-bottom: 1px solid var(--border-light);
}

.nc-top::before, .nc-top::after { display: none; }

.nc-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(192,39,45,.07);
  padding: 4px 10px;
  border-radius: 999px;
}

.nc-date {
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  color: var(--text-muted);
}

.nc-body {
  padding: 22px 22px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.nc-title {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.28;
  color: var(--text);
  flex: 1;
  transition: color .2s;
}

.news-card:hover .nc-title { color: var(--red); }

.nc-text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.72;
  margin-bottom: 16px;
}

.nc-more {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
  transition: gap .2s;
}

.nc-more::after {
  content: '→';
  font-size: 14px;
  font-weight: 400;
  transition: transform .25s cubic-bezier(.22,1,.36,1);
}

.news-card:hover .nc-more { gap: 10px; }
.news-card:hover .nc-more::after { transform: translateX(4px); }


/* --------------------------------------------------------------------------
   12. GALERIE-SEKTION
   -------------------------------------------------------------------------- */

.gallery-section {
  background: var(--bg);
  padding: 88px 0 96px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--bg-alt);
}

.gal-item.gal-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gal-item.gal-wide {
  grid-column: span 2;
}

.gal-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}

.gal-item:hover .gal-placeholder {
  transform: scale(1.08);
}

.gal-placeholder svg {
  width: 48px;
  height: 48px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 1;
  opacity: .3;
}

.gal-item.gal-large .gal-placeholder svg {
  width: 80px;
  height: 80px;
}

.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24,24,27,.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .35s;
}

.gal-item:hover .gal-overlay { opacity: 1; }

.gal-overlay span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: white;
  font-weight: 400;
  transform: translateY(8px);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}

.gal-item:hover .gal-overlay span { transform: translateY(0); }

/* Verschiedene Hintergrundfarben als Bild-Platzhalter */
.gal-item:nth-child(1) .gal-placeholder { background: linear-gradient(135deg, var(--red) 0%, #e84c5e 100%); }
.gal-item:nth-child(1) .gal-placeholder svg { stroke: rgba(255,255,255,.4); opacity: 1; }
.gal-item:nth-child(2) .gal-placeholder { background: linear-gradient(135deg, #f4f4f5 0%, #e4e4e7 100%); }
.gal-item:nth-child(3) .gal-placeholder { background: linear-gradient(135deg, #e4e4e7 0%, #d4d4d8 100%); }
.gal-item:nth-child(4) .gal-placeholder { background: linear-gradient(135deg, var(--dark) 0%, #3f3f46 100%); }
.gal-item:nth-child(4) .gal-placeholder svg { stroke: rgba(255,255,255,.3); opacity: 1; }
.gal-item:nth-child(5) .gal-placeholder { background: linear-gradient(135deg, #f4f4f5 0%, #d4d4d8 100%); }


/* --------------------------------------------------------------------------
   12b. KERMES-GALERIE
   -------------------------------------------------------------------------- */

.kermes-section {
  background: var(--bg-alt);
  padding: 88px 0 96px;
}

.kermes-desc {
  max-width: 720px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin: -12px auto 40px;
  padding: 0 40px;
}

.kermes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.kermes-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  background: var(--bg);
}

.kermes-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}

.kermes-item:hover img {
  transform: scale(1.06);
}

/* Erste zwei Bilder breiter */
.kermes-item:nth-child(1) {
  grid-column: span 2;
}

.kermes-item:nth-child(6) {
  grid-column: span 2;
}

@media (max-width: 900px) {
  .kermes-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }
  .kermes-item:nth-child(1),
  .kermes-item:nth-child(6) {
    grid-column: span 2;
  }
  .kermes-desc { padding: 0 20px; }
}

@media (max-width: 560px) {
  .kermes-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .kermes-item:nth-child(1),
  .kermes-item:nth-child(6) {
    grid-column: span 1;
  }
  .kermes-section { padding: 56px 0 64px; }
}


/* --------------------------------------------------------------------------
   12c. VEREINSINFO & SOCIAL LINKS
   -------------------------------------------------------------------------- */

.vereins-info {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
}

.vi-row {
  display: flex;
  padding: 14px 22px;
  border-bottom: 1px solid var(--border-light);
  gap: 16px;
  align-items: baseline;
}

.vi-row:last-child { border-bottom: none; }

.vi-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  min-width: 160px;
  flex-shrink: 0;
}

.vi-value {
  font-size: 14px;
  color: var(--text);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
  transition: color .2s;
}

.social-links a:hover {
  color: var(--red);
}

.social-links a i {
  font-size: 16px;
  width: 20px;
  text-align: center;
  color: var(--red);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 16px;
  transition: all .2s;
}

.footer-social a:hover {
  background: var(--red);
  color: white;
}

@media (max-width: 600px) {
  .vi-row { flex-direction: column; gap: 4px; }
  .vi-label { min-width: auto; }
}


/* --------------------------------------------------------------------------
   13. STATISTIK / ZAHLEN
   -------------------------------------------------------------------------- */

.stats-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--border);
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: .03em;
}


/* --------------------------------------------------------------------------
   14. ROTER QUERSTREIFEN (CTA)
   -------------------------------------------------------------------------- */

.red-band {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 64px 40px;
  position: relative;
  overflow: hidden;
}

.red-band-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.rb-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  color: white;
  line-height: 1.15;
  margin-bottom: 8px;
}

.rb-text p {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  max-width: 560px;
}

.rb-btn {
  background: white;
  color: var(--red);
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 28px;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: var(--radius);
  transition: all .25s cubic-bezier(.22,1,.36,1);
}

.rb-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

.rb-arabic {
  font-size: 36px;
  color: rgba(255,255,255,.3);
  flex-shrink: 0;
  line-height: 1.6;
}


/* --------------------------------------------------------------------------
   15. NEWSLETTER-SEKTION
   -------------------------------------------------------------------------- */

.newsletter-section {
  background: var(--dark);
  padding: 72px 40px;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(192,39,45,.15) 0%, transparent 70%);
  pointer-events: none;
}

.nl-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.nl-inner h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  color: white;
  margin-bottom: 12px;
}

.nl-inner > p {
  font-size: 15px;
  color: rgba(255,255,255,.5);
  margin-bottom: 36px;
  line-height: 1.6;
}

.nl-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}

.nl-input {
  flex: 1;
  padding: 14px 18px;
  border: 1.5px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: white;
  outline: none;
  border-radius: var(--radius);
  transition: border-color .2s;
}

.nl-input::placeholder { color: rgba(255,255,255,.3); }
.nl-input:focus { border-color: var(--red); }

.nl-btn {
  background: var(--red);
  color: white;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 24px;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all .25s;
  white-space: nowrap;
}

.nl-btn:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,39,45,.35);
}


/* --------------------------------------------------------------------------
   16. SEITENKOPF (Unterseiten)
   -------------------------------------------------------------------------- */

.ph {
  padding: 56px 40px 48px;
  position: relative;
  overflow: hidden;
}

.ph-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pe {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pe::before {
  content: '';
  width: 24px;
  height: 1px;
  background: rgba(255,255,255,.3);
}

.ph h2 {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: white;
  line-height: 1.05;
}

.ph-sub {
  font-size: 15px;
  color: rgba(255,255,255,.5);
  margin-top: 14px;
  max-width: 600px;
  line-height: 1.65;
}


/* --------------------------------------------------------------------------
   17. ÜBER UNS
   -------------------------------------------------------------------------- */

.about-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}

.about-block {
  background: var(--bg);
  padding: 56px 48px;
}

.about-block:nth-child(2) { background: var(--bg-alt); }

.about-block h3 {
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--text);
}

.about-block p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.85;
}

.about-block .ab-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 300;
  color: var(--red);
  opacity: .1;
  line-height: 1;
  margin-bottom: -20px;
}

/* Team */
.team-wrap {
  background: var(--bg-alt);
  padding: 72px 40px;
}

.team-wrap-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.tg-head {
  display: flex;
  align-items: center;
  gap: 0;
}

.tg-label {
  background: var(--red);
  color: white;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius) 0 0 var(--radius);
}

.tg-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.tgr {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border);
  margin-bottom: 40px;
}

.mem {
  background: var(--surface);
  padding: 28px 22px;
  transition: all .25s;
}

.mem:hover {
  background: var(--bg-alt);
  transform: translateY(-2px);
}

.mi {
  width: 44px;
  height: 44px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.mi span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: white;
}

.mem h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--text);
}

.mr {
  font-size: 12px;
  color: var(--text-light);
}


/* --------------------------------------------------------------------------
   18. GEBETSZEITEN-SEITE
   -------------------------------------------------------------------------- */

.gebets-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 40px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

.pnote {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  padding: 18px 22px;
  background: var(--bg-alt);
  border-left: 4px solid var(--red);
  margin-bottom: 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.wt {
  width: 100%;
  border-collapse: collapse;
}

.wt thead tr { border-bottom: 2px solid var(--red); }

.wt th {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 14px 16px;
  text-align: left;
  background: var(--bg-alt);
  border-bottom: 2px solid var(--red);
}

.wt td {
  padding: 14px 16px;
  font-size: 13.5px;
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
}

.wt td:first-child {
  color: var(--text-light);
  font-weight: 600;
  font-size: 12.5px;
}

.wt tr.today { border-left: 4px solid var(--red); }
.wt tr.today td { background: rgba(192,39,45,.04); }
.wt tr.today td:first-child { color: var(--red); font-weight: 700; }

.gebets-sidebar {
  background: var(--dark);
  color: white;
  padding: 32px 28px;
  position: sticky;
  top: 88px;
  border-radius: var(--radius);
}

.gs-title {
  font-size: 26px;
  color: #e4e4e7;
  margin-bottom: 8px;
  text-align: right;
}

.gs-sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 24px;
}

.gs-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.gs-item:last-child { border-bottom: none; }

.gs-name {
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

.gs-time {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: white;
}


/* --------------------------------------------------------------------------
   19. VERANSTALTUNGEN
   -------------------------------------------------------------------------- */

.events-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 40px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
}

.ei {
  display: grid;
  grid-template-columns: 88px 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  align-items: start;
  cursor: pointer;
  transition: all .3s cubic-bezier(.22,1,.36,1);
  background: var(--surface);
  overflow: hidden;
  margin-bottom: 12px;
}

.ei:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.ei:hover .ed-num { background: var(--red-dark); }

.ed-num {
  background: var(--red);
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  transition: background .2s;
  min-width: 88px;
}

.edd {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  color: white;
  line-height: 1;
}

.edm {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: 2px;
}

.eb { padding: 20px 22px; }

.eb h4 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--text);
  transition: color .2s;
}

.ei:hover .eb h4 { color: var(--red); }

.eb p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.65;
}

.em {
  display: flex;
  gap: 18px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.em span {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.em span::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.ev-sidebar {
  background: var(--bg-alt);
  padding: 28px;
  height: fit-content;
  border-top: 4px solid var(--red);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-sm);
}

.evs-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.ri {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.ri:last-child { border-bottom: none; }

.ri h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--text);
}

.ri p {
  font-size: 12px;
  color: var(--text-light);
}


/* --------------------------------------------------------------------------
   20. FREITAGSPREDIGT
   -------------------------------------------------------------------------- */

.predigt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.predigt-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all .3s cubic-bezier(.22,1,.36,1);
  position: relative;
}

.predigt-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  border-radius: var(--radius) var(--radius) 0 0;
}

.predigt-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}


/* --------------------------------------------------------------------------
   21. FORMULARE
   -------------------------------------------------------------------------- */

.fg {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 40px 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ft {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all .3s cubic-bezier(.22,1,.36,1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.ft::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
  border-radius: var(--radius) 0 0 var(--radius);
}

.ft:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(192,39,45,.2);
}

.fti {
  width: 44px;
  height: 44px;
  background: rgba(192,39,45,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 10px;
  transition: all .3s;
}

.ft:hover .fti {
  background: var(--red);
}

.fti svg {
  width: 20px;
  height: 20px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.5;
  transition: stroke .3s;
}

.ft:hover .fti svg { stroke: white; }

.ft h4 {
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--text);
}

.ft p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.65;
}

.fdl {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  font-family: 'DM Sans', sans-serif;
  transition: gap .2s;
}

.fdl:hover { gap: 14px; }

.fdl svg {
  width: 14px;
  height: 14px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2.5;
}


/* --------------------------------------------------------------------------
   22. KONTAKTSEITE
   -------------------------------------------------------------------------- */

.kontakt-split {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 40px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
}

.kinfo {
  background: var(--dark);
  padding: 40px 32px;
  color: white;
  align-self: start;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.kinfo-arabic {
  font-size: 24px;
  color: rgba(255,255,255,.35);
  text-align: right;
  margin-bottom: 28px;
}

.kdi {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.kdi:first-of-type { padding-top: 0; }

.kdl {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 6px;
}

.kdv {
  font-size: 14px;
  color: rgba(255,255,255,.8);
  line-height: 1.55;
}

.kform {
  background: var(--bg-alt);
  padding: 40px;
  border-radius: var(--radius);
}

.kform h3 {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 32px;
  color: var(--text);
}

.fg2 { margin-bottom: 18px; }

.fl {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 7px;
}

.fc {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  border-radius: var(--radius);
  -webkit-appearance: none;
  appearance: none;
}

.fc:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,39,45,.1);
}

.fc::placeholder { color: var(--text-muted); }

select.fc {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

textarea.fc { min-height: 120px; resize: vertical; }

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.bsub {
  background: var(--red);
  color: white;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 15px 32px;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all .25s;
}

.bsub:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,39,45,.3);
}


/* --------------------------------------------------------------------------
   23. FOOTER
   -------------------------------------------------------------------------- */

footer {
  background: var(--dark);
  border-top: 3px solid var(--red);
}

.fm {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 40px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.fb p {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  max-width: 280px;
  margin-top: 14px;
}

.footer-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  margin-bottom: 8px;
  border-radius: 8px;
  background: white;
  padding: 4px;
}

.fb-arabic {
  font-size: 20px;
  color: rgba(255,255,255,.4);
  margin-top: 14px;
}

.fcol h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.fcol ul { list-style: none; }
.fcol ul li { margin-bottom: 10px; }

.fcol ul li a {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  transition: all .2s;
  display: inline-block;
}

.fcol ul li a:hover {
  color: white;
  transform: translateX(3px);
}

.fbot {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 18px 40px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fbot p {
  font-size: 12px;
  color: rgba(255,255,255,.4);
}

.dtag {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(192,39,45,.3);
  padding: 5px 12px;
  border-radius: 999px;
}


/* --------------------------------------------------------------------------
   24. DEKORATIVE ELEMENTE
   -------------------------------------------------------------------------- */

.ornament { display: none; }
.section-divider { display: none; }


/* --------------------------------------------------------------------------
   25. HAMBURGER-MENÜ
   -------------------------------------------------------------------------- */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 310;
  order: 10;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s cubic-bezier(.22,1,.36,1);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 199;
  opacity: 0;
  transition: opacity .3s;
}

.mobile-nav-overlay.active {
  opacity: 1;
}

nav.mobile-open {
  display: flex !important;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: var(--bg);
  flex-direction: column;
  z-index: 200;
  padding: 80px 24px 32px;
  box-shadow: -4px 0 24px rgba(0,0,0,.15);
  overflow-y: auto;
  animation: slideInRight .3s cubic-bezier(.22,1,.36,1);
}

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

nav.mobile-open ul {
  flex-direction: column;
  height: auto;
  gap: 0;
}

nav.mobile-open ul li {
  border-bottom: 1px solid var(--border-light);
}

nav.mobile-open ul li > a,
nav.mobile-open ul li > button {
  padding: 14px 0;
  font-size: 15px;
  height: auto;
  width: 100%;
  justify-content: space-between;
}

nav.mobile-open .dd {
  position: static;
  transform: none;
  box-shadow: none;
  border: none;
  padding: 0 0 8px 16px;
  opacity: 1;
  visibility: visible;
  min-width: 0;
  display: none;
}

nav.mobile-open ul li:hover .dd,
nav.mobile-open ul li.dd-open .dd {
  display: block;
}

nav.mobile-open .dd a {
  padding: 10px 0;
  font-size: 14px;
}


/* --------------------------------------------------------------------------
   26. RESPONSIVE
   -------------------------------------------------------------------------- */

/* --- Tablet Landscape ≤1200px --- */
@media (max-width: 1200px) {
  .hero {
    grid-template-columns: 1fr 320px minmax(240px, 300px);
  }

  .hero-left-content {
    padding: 40px 28px 0 44px;
    gap: 24px;
  }

  .hero h1 { font-size: clamp(38px, 4.5vw, 60px); }

  .hero-center-arabic { font-size: 42px; }

  .hero-center-inner { min-height: 280px; padding: 28px 16px; }

  .hero-logo { width: 220px; height: 220px; }
  .hero-left-content { grid-template-columns: 1fr 240px; }
  .hero-partners { padding: 16px 44px 18px; }
}

/* --- Tablet Portrait ≤1024px --- */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left-content {
    padding: 40px 32px 0 44px;
    gap: 28px;
  }

  .hero-logo { width: 200px; height: 200px; }
  .hero-left-content { grid-template-columns: 1fr 220px; }

  .hero-center { display: none; }

  .hero-right {
    border-left: none;
    border-top: 1px solid var(--border);
  }

  .hero-left::after { display: none; }

  .hero-partners { max-width: 100%; }

  /* Grids vereinfachen */
  .fm                { grid-template-columns: 1fr 1fr; }
  .events-wrap       { grid-template-columns: 1fr; }
  .kontakt-split     { grid-template-columns: 1fr; }
  .gebets-wrap       { grid-template-columns: 1fr; }
  .fg                { grid-template-columns: repeat(2, 1fr); }
  .about-grid        { grid-template-columns: 1fr; }
  .news-grid         { grid-template-columns: 1fr 1fr; }
  .values-inner      { grid-template-columns: 1fr 1fr; }
  .gallery-grid      { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gal-item.gal-large { grid-column: span 2; grid-row: span 1; min-height: 200px; }
  .gal-item.gal-wide  { grid-column: span 2; }
  .stats-inner       { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }

  .gebets-sidebar { position: static; }

  /* Tabelle scrollbar */
  .wt { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* --- Tablet & Mobile ≤768px --- */
@media (max-width: 768px) {
  /* Hamburger anzeigen, Nav verstecken */
  .hamburger { display: flex; }
  nav:not(.mobile-open) { display: none; }

  .hi { padding: 0 16px; gap: 12px; }

  .logo-img { height: 38px; }

  /* Hero */
  .hero-left-content {
    grid-template-columns: 1fr;
    padding: 32px 20px 0 32px;
    gap: 0;
  }

  .hero-left-logo {
    display: none;
  }

  .hero h1 { font-size: clamp(36px, 8vw, 52px); margin-bottom: 20px; }

  .hero-sub {
    font-size: 14px;
    max-width: 100%;
    margin-bottom: 24px;
  }

  .ha { flex-direction: column; width: 100%; gap: 10px; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }

  .hero-eyebrow { margin-bottom: 20px; }
  .hero-partners { padding: 16px 20px 18px; }
  .hero-partner { font-size: 10px; }

  /* Prayer Panel */
  .prayer-top { padding: 20px 16px 12px; }
  .pp-settings { padding: 8px 10px; }
  .pp-setting-row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .pp-setting-inputs { width: 100%; }
  .pp-input, .pp-select { font-size: 12px; }
  .pp-select-full { width: 100%; }

  /* Sektionen padding */
  .sec { padding: 48px 20px 56px; }

  .info-strip-inner {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .ist {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 16px 0 !important;
  }

  .ist:last-child { border-bottom: none; }

  .values-inner { grid-template-columns: 1fr; }

  .val-item {
    padding: 28px 20px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }

  .val-item:last-child { border-bottom: none; }

  .sec-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 32px;
  }

  .news-grid { grid-template-columns: 1fr; }

  .gallery-section { padding: 48px 0 56px; }
  .gallery-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .gal-item.gal-large { grid-column: span 1; min-height: 200px; }
  .gal-item.gal-wide  { grid-column: span 1; }
  .gal-item { min-height: 160px; }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 40px 20px;
  }
  .stat-item::after { display: none !important; }
  .stat-num { font-size: 42px; }

  .red-band { padding: 40px 20px; }
  .red-band-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .rb-text h3 { font-size: 26px; }
  .rb-text p { max-width: 100%; }
  .rb-arabic { display: none; }
  .rb-btn { width: 100%; }

  .newsletter-section { padding: 40px 20px; }
  .nl-form { flex-direction: column; }
  .nl-inner h3 { font-size: 28px; }

  /* Unterseiten */
  .ph { padding: 40px 20px 36px; }
  .ph h2 { font-size: clamp(28px, 6vw, 42px); }

  .about-block { padding: 36px 20px; }
  .about-block .ab-num { font-size: 56px; }

  .team-wrap { padding: 48px 20px; }
  .tgr { grid-template-columns: 1fr 1fr; }

  .gebets-wrap { padding: 32px 20px; }

  .events-wrap { padding: 32px 20px; }
  .ei { grid-template-columns: 72px 1fr; }
  .ed-num { min-width: 72px; }
  .edd { font-size: 28px; }

  .fg { grid-template-columns: 1fr; padding: 32px 20px; }

  .kontakt-split { padding: 32px 20px; gap: 24px; }
  .kform { padding: 24px 16px; }
  .kinfo { padding: 24px 16px; }
  .frow { grid-template-columns: 1fr; }

  /* Footer */
  .fm { grid-template-columns: 1fr; gap: 28px; padding: 40px 20px 28px; }
  .fbot { padding: 14px 20px; flex-direction: column; gap: 10px; text-align: center; }
}

/* --- Kleine Handys ≤480px --- */
@media (max-width: 480px) {
  .hi { height: 60px; }
  .page { padding-top: 60px; }
  .logo-img { height: 32px; }

  .hero-left-content { padding: 24px 16px 0 24px; }

  .hero h1 { font-size: clamp(30px, 9vw, 42px); }

  .hero-sub { font-size: 13px; line-height: 1.7; }

  .btn-primary, .btn-secondary {
    font-size: 11px;
    padding: 12px 20px;
  }

  .hero-eyebrow { margin-bottom: 14px; }
  .hero-ey-line { width: 20px; }
  .hero-partners { padding: 14px 16px 16px; }
  .hero-partner { font-size: 9.5px; }

  .prayer-top { padding: 16px 12px 10px; }
  .pn { font-size: 12px; }
  .pt { font-size: 17px; }

  .stats-inner { grid-template-columns: 1fr 1fr; gap: 16px; padding: 32px 16px; }
  .stat-num { font-size: 36px; }
  .stat-label { font-size: 11px; }

  .tgr { grid-template-columns: 1fr; }

  .nc-title { font-size: 17px; }
  .nc-text { font-size: 12px; }

  .sec-h { font-size: 28px; }

  .nl-inner h3 { font-size: 24px; }

  .kontakt-split { grid-template-columns: 1fr; }
  .kform h3 { font-size: 22px; }

  .about-block h3 { font-size: 24px; }

  .ev-sidebar { margin-top: 24px; }
}
