/* ════════════════════════════════════════════
   DITIB Orhan Gazi Camii Datteln – Stylesheet v2
   Thema: Grün & Gold – Modern & Hell
   ════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── FARBEN ── */
:root {
  --green:        #1B4332;
  --green-mid:    #2D6A4F;
  --green-light:  #40916C;
  --green-pale:   #D8F3DC;
  --gold:         #C9A84C;
  --gold-light:   #E9C46A;
  --gold-dark:    #9A7B3A;
  --white:        #FFFFFF;
  --off-white:    #F8FAF9;
  --cream:        #F4F1EA;
  --text:         #1A2E22;
  --text-mid:     #3D5A47;
  --text-light:   #6B8C75;
  --border:       rgba(27,67,50,0.12);
  --shadow:       0 4px 24px rgba(27,67,50,0.10);
  --shadow-lg:    0 12px 48px rgba(27,67,50,0.15);
}

/* ── RESET & BASIS ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── SPRACHLEISTE ── */
.lang-bar {
  background: var(--green);
  padding: 8px 48px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
}
.lang-btn {
  background: none;
  border: 1px solid rgba(201,168,76,0.35);
  color: rgba(255,255,255,0.7);
  padding: 3px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.25s;
  text-transform: uppercase;
  border-radius: 2px;
}
.lang-btn.active, .lang-btn:hover {
  background: var(--gold);
  color: var(--green);
  border-color: var(--gold);
  font-weight: 600;
}

/* ── NAVIGATION ── */
nav {
  background: var(--white);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 var(--border), var(--shadow);
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-logo img {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}
.nav-logo-text span:first-child {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--green);
  line-height: 1.1;
}
.nav-logo-text span:last-child {
  display: block;
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2px;
}
.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.3px;
  transition: color 0.2s;
  border-radius: 6px;
}
.nav-links a:hover { color: var(--green); background: var(--green-pale); }
.nav-links a.active { color: var(--green); font-weight: 600; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-social { display: flex; gap: 8px; }
.nav-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-light);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.nav-social a:hover { border-color: var(--green); color: var(--green); background: var(--green-pale); }

.btn-login {
  background: var(--green);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: flex; align-items: center; gap: 6px;
}
.btn-login:hover { background: var(--green-mid); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 60%, var(--green-light) 100%);
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 380px;
  align-items: center;
  gap: 0;
  position: relative;
  overflow: hidden;
  padding: 80px 48px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(201,168,76,0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(201,168,76,0.06) 0%, transparent 40%);
}
.hero-geo {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%),
    repeating-linear-gradient(-45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 48px 48px;
}
.hero-top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeUp 0.9s ease forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  padding: 6px 16px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
  border-radius: 2px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 12px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
}
.hero-divider {
  width: 48px; height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}
.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 44px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold);
  color: var(--green);
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.25s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
.btn-secondary {
  background: transparent;
  color: rgba(255,255,255,0.85);
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.25s;
  display: inline-block;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.6); color: white; }

/* Gebetszeiten rechts im Hero */
.hero-prayer {
  position: relative;
  z-index: 2;
  animation: fadeUp 0.9s 0.2s ease both;
}
.prayer-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 12px;
  overflow: hidden;
}
.prayer-card-header {
  background: rgba(201,168,76,0.15);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.prayer-card-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--gold-light);
  font-weight: 600;
}
.prayer-card-header span {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
}
.prayer-iframe-wrap {
  width: 100%;
  height: 460px;
  overflow: hidden;
  position: relative;
}
.prayer-iframe-wrap iframe {
  width: 100%; height: 100%;
  border: none;
  display: block;
}
.prayer-source-link {
  padding: 10px 20px;
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  text-align: right;
  letter-spacing: 1px;
}
.prayer-source-link a { color: var(--gold); }

/* ── SECTIONS ALLGEMEIN ── */
section { padding: 88px 48px; }
.section-inner { max-width: 1160px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--green-light);
  font-weight: 600;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-title em { font-style: italic; color: var(--green-mid); }
.section-rule {
  width: 44px; height: 2px;
  background: var(--gold);
  margin-bottom: 48px;
}

/* ── AKTUELLES ── */
#aktuelles { background: var(--off-white); }

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.news-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--border);
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.news-card-top {
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  padding: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.news-date-box {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  padding: 10px 14px;
  text-align: center;
  color: white;
  min-width: 56px;
}
.news-date-box .day {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}
.news-date-box .month {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 2px;
}
.news-badge {
  background: var(--gold);
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}
.news-card-body { padding: 24px; }
.news-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.news-desc { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ── ÜBER UNS ── */
#ueber-uns { background: var(--cream); }

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-text p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 20px;
}
.stats-row {
  display: flex;
  gap: 0;
  margin-top: 36px;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
}
.stat {
  flex: 1;
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 6px;
}

/* Vorstand */
.vorstand-wrap { margin-top: 0; }
.vorstand-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.vorstand-rule { width: 36px; height: 2px; background: var(--gold); margin-bottom: 28px; }
.vorstand-list { display: flex; flex-direction: column; gap: 12px; }
.vorstand-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  transition: box-shadow 0.2s;
}
.vorstand-item:hover { box-shadow: var(--shadow); }
.vorstand-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--gold-light);
  font-weight: 700;
  flex-shrink: 0;
}
.vorstand-info { flex: 1; }
.vorstand-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}
.vorstand-role {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}
.vorstand-role-badge {
  background: var(--green-pale);
  color: var(--green-mid);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  white-space: nowrap;
}

/* ── SPENDEN ── */
#spenden { background: var(--off-white); }

.spenden-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.spenden-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.spenden-icon {
  width: 52px; height: 52px;
  border-radius: 10px;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.spenden-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.spenden-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}
.iban-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px;
  margin-bottom: 14px;
}
.iban-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 5px;
}
.iban-value {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 1px;
}
.iban-name { font-size: 12px; color: var(--text-light); margin-top: 4px; }
.copy-btn {
  width: 100%;
  background: var(--green);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 6px;
}
.copy-btn:hover { background: var(--green-mid); }
.paypal-btn {
  display: block;
  background: #003087;
  color: white;
  text-align: center;
  padding: 14px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.25s;
  margin-top: 14px;
}
.paypal-btn:hover { background: #002070; }

/* ── MITGLIED WERDEN ── */
#mitglied {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  position: relative;
  overflow: hidden;
}
#mitglied::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    45deg, rgba(201,168,76,0.03) 0, rgba(201,168,76,0.03) 1px,
    transparent 0, transparent 50%
  );
  background-size: 40px 40px;
}
#mitglied .section-label { color: var(--gold-light); }
#mitglied .section-title { color: var(--white); }
#mitglied .section-title em { color: var(--gold-light); }

.mitglied-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.mitglied-info { color: rgba(255,255,255,0.75); }
.mitglied-info p { font-size: 15px; line-height: 1.8; margin-bottom: 28px; }
.mitglied-benefits { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.mitglied-benefits li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,0.8);
}
.mitglied-benefits li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--gold);
  color: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  flex-shrink: 0;
}

.mitglied-form {
  background: var(--white);
  border-radius: 14px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.mitglied-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-mid);
}
.form-group input, .form-group select {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 7px;
  color: var(--text);
  padding: 11px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus { border-color: var(--green-light); }
.form-group select option { background: white; }
.submit-btn {
  width: 100%;
  background: var(--green);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 6px;
  letter-spacing: 0.5px;
}
.submit-btn:hover { background: var(--green-mid); transform: translateY(-1px); }

/* ── MITGLIEDER LOGIN ── */
#mitglieder-login { background: var(--off-white); }

.login-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.login-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.login-info p { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 20px; }
.login-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.login-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-mid);
}
.login-features li span { font-size: 18px; }

.login-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 44px;
  box-shadow: var(--shadow-lg);
}
.login-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--text);
  margin-bottom: 8px;
}
.login-card p {
  font-size: 14px; color: var(--text-light); margin-bottom: 28px;
}
.login-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 20px 0;
  color: var(--text-light); font-size: 13px;
}
.login-divider::before, .login-divider::after {
  content: ''; flex: 1;
  height: 1px; background: var(--border);
}
.forgot-link {
  text-align: right; margin-top: -8px; margin-bottom: 14px;
}
.forgot-link a { font-size: 13px; color: var(--green-light); }
.forgot-link a:hover { text-decoration: underline; }
.register-link {
  text-align: center; margin-top: 20px;
  font-size: 13px; color: var(--text-light);
}
.register-link a { color: var(--green); font-weight: 600; }

/* ── GALERIE ── */
#galerie { background: var(--cream); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--green-pale), var(--cream));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform 0.3s;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item:first-child { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-placeholder {
  text-align: center;
  color: var(--text-light);
}
.gallery-placeholder span { font-size: 36px; display: block; margin-bottom: 8px; }
.gallery-placeholder p { font-size: 13px; }
.gallery-upload-hint {
  margin-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  padding: 16px;
  border: 2px dashed var(--border);
  border-radius: 8px;
}

/* ── KONTAKT ── */
#kontakt { background: var(--off-white); }

.kontakt-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
}
.kontakt-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; color: var(--text); margin-bottom: 24px;
}
.kontakt-item {
  display: flex; gap: 14px;
  margin-bottom: 18px; align-items: flex-start;
}
.kontakt-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--green-pale);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.kontakt-item-text {
  font-size: 14px; color: var(--text-mid); line-height: 1.6;
  padding-top: 8px;
}
.kontakt-item-text a { color: var(--green-light); }
.kontakt-item-text a:hover { text-decoration: underline; }

.kontakt-right { display: flex; flex-direction: column; gap: 24px; }
.kontakt-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.kontakt-form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; color: var(--text); margin-bottom: 20px;
}
.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 240px;
  box-shadow: var(--shadow);
}
.map-wrapper iframe { width: 100%; height: 100%; border: none; }

/* ── IMPRESSUM & DATENSCHUTZ ── */
#impressum, #datenschutz {
  background: var(--white);
  padding: 64px 48px;
}
.legal-container { max-width: 800px; margin: 0 auto; }
.legal-container h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px; color: var(--text); margin-bottom: 8px;
}
.legal-container h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px; color: var(--text); margin: 28px 0 8px;
}
.legal-container p, .legal-container ul {
  font-size: 14px; color: var(--text-light);
  line-height: 1.8; margin-bottom: 12px;
}
.legal-container ul { padding-left: 20px; }
.legal-container a { color: var(--green-light); }

/* ── FOOTER ── */
footer {
  background: var(--green);
  padding: 64px 48px 28px;
}
.footer-grid {
  max-width: 1160px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  margin-bottom: 16px;
  object-fit: cover;
}
.footer-brand p {
  font-size: 13px; color: rgba(255,255,255,0.5);
  line-height: 1.8; margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: all 0.25s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 {
  font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px; font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.45); font-size: 13px;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  max-width: 1160px; margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: rgba(255,255,255,0.3); font-size: 12px; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); }
.footer-links { display: flex; gap: 20px; }

/* ── LOGIN MODAL ── */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: 16px;
  padding: 44px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
  position: relative;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none;
  font-size: 20px; cursor: pointer;
  color: var(--text-light); transition: color 0.2s;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.modal-close:hover { color: var(--text); background: var(--off-white); }
.modal h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px; color: var(--text); margin-bottom: 6px;
}
.modal p { font-size: 14px; color: var(--text-light); margin-bottom: 24px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 60px 32px; }
  .hero-prayer { display: none; }
  .about-layout, .mitglied-layout, .login-layout { grid-template-columns: 1fr; gap: 40px; }
  .spenden-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; }
}
@media (max-width: 768px) {
  nav { padding: 0 20px; height: 60px; }
  .nav-links { display: none; }
  section { padding: 56px 20px; }
  .hero { padding: 56px 20px; min-height: auto; }
  .kontakt-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .lang-bar { padding: 8px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
}

/* ════════════════════════════════════════════
   ERWEITERUNGEN v3: Animationen, Mobile Menü,
   Cookie Banner
   ════════════════════════════════════════════ */

/* ── SCROLL-ANIMATIONEN ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
/* Verzögerungen für gestaffeltes Einblenden */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── HAMBURGER MENÜ BUTTON ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: background 0.2s;
}
.nav-toggle:hover { background: var(--green-pale); }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENÜ ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 104px; /* lang-bar + nav */
  left: 0; right: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  border-top: 2px solid var(--green-pale);
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.mobile-menu ul { list-style: none; padding: 12px 0; }
.mobile-menu ul li a {
  display: block;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  transition: all 0.2s;
}
.mobile-menu ul li:last-child a { border-bottom: none; }
.mobile-menu ul li a:hover {
  background: var(--green-pale);
  color: var(--green);
  padding-left: 32px;
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 3px solid var(--green);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
  z-index: 9998;
  padding: 20px 48px;
  transform: translateY(0);
  transition: transform 0.4s ease;
}
.cookie-banner.hidden {
  transform: translateY(110%);
}
.cookie-content {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text strong {
  display: block;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px;
}
.cookie-text p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}
.cookie-text a { color: var(--green-light); text-decoration: underline; }
.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn-reject {
  background: none;
  border: 1.5px solid var(--border);
  color: var(--text-mid);
  padding: 10px 20px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.cookie-btn-reject:hover { border-color: var(--green); color: var(--green); }
.cookie-btn-accept {
  background: var(--green);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.cookie-btn-accept:hover { background: var(--green-mid); }

/* ── RESPONSIVE UPDATES ── */
@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .mobile-menu { display: block; }
  .nav-links { display: none; }
  .cookie-banner { padding: 16px 20px; }
}
@media (max-width: 768px) {
  .mobile-menu { top: 96px; }
  .cookie-content { flex-direction: column; align-items: flex-start; }
  .cookie-buttons { width: 100%; }
  .cookie-btn-reject, .cookie-btn-accept { flex: 1; text-align: center; }
}

/* ── MOBILE NAVIGATION: Nur Logo, kein Text ── */
@media (max-width: 768px) {
  .nav-logo-text { display: none; }
  .nav-logo img { width: 44px; height: 44px; }
  .nav-right .btn-login span { display: none; }
  .btn-login { padding: 8px 12px; }
  .mobile-menu { top: 96px; }
  .cookie-content { flex-direction: column; align-items: flex-start; }
  .cookie-buttons { width: 100%; }
  .cookie-btn-reject, .cookie-btn-accept { flex: 1; text-align: center; }
}

/* ── GEBETSZEITEN MOBIL ── */
.mobile-prayer-section {
  display: none; /* Auf Desktop versteckt */
  background: var(--green);
}
.mobile-prayer-section .section-label { color: var(--gold-light); }
.mobile-prayer-section .section-title { color: var(--white); }
.mobile-prayer-section .section-title em { color: var(--gold-light); }

.mobile-prayer-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 12px;
  overflow: hidden;
}
.mobile-prayer-iframe {
  width: 100%;
  height: 420px;
  overflow: hidden;
}
.mobile-prayer-iframe iframe {
  width: 100%; height: 100%;
  border: none; display: block;
}

/* Auf Mobil anzeigen, Hero-Gebetszeiten weiterhin versteckt */
@media (max-width: 1024px) {
  .mobile-prayer-section { display: block; }
  .hero-prayer { display: none !important; }
}
