/* =============================================
   DODO CLUB – Modern Website Styles
   ============================================= */

/* ── Variables ── */
:root {
  --green: #5b8c74;
  --green-light: #7aad94;
  --green-dark: #3d6b56;
  --orange: #e07c54;
  --orange-light: #f0a07a;
  --warm-white: #faf9f6;
  --off-white: #f2f0eb;
  --text-dark: #1e2d24;
  --text-mid: #4a5c52;
  --text-light: #7a8c82;
  --overlay-dark: rgba(15, 30, 20, 0.62);
  --overlay-warm: rgba(30, 20, 10, 0.55);
  --card-bg: rgba(255, 255, 255, 0.94);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: 'Nunito', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--warm-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-dark); }

/* ── Typography ── */
h1, h2, h3 { font-family: var(--font-serif); line-height: 1.2; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

ul { padding-left: 1.4rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; color: var(--text-mid); }

/* =============================================
   NAVIGATION
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.0);
  backdrop-filter: blur(0px);
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}



.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transition: color var(--transition), text-shadow var(--transition);
  white-space: nowrap;
}

#navbar.scrolled .nav-brand { color: var(--text-dark); text-shadow: none; }

.brand-icon { font-size: 1.5rem; line-height: 1; }

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  height: 70px;
}

.nav-links li {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-link {
  display: flex;
  align-items: center;
  line-height: 1;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-link:hover { color: white; background: rgba(255,255,255,0.15); }

#navbar.scrolled .nav-link {
  color: var(--text-mid);
  text-shadow: none;
}

#navbar.scrolled .nav-link:hover { color: var(--green); background: rgba(91,140,116,0.08); }

.nav-cta {
  background: var(--orange) !important;
  color: white !important;
  text-shadow: none !important;
  padding: 0.45rem 1rem !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
}

.nav-cta:hover { background: var(--orange-light) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--transition);
}

#navbar.scrolled .nav-toggle span { background: var(--text-dark); }

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 0.2rem 0.35rem;
  transition: all var(--transition);
  flex-shrink: 0;
}

#navbar.scrolled .lang-switcher {
  background: rgba(91, 140, 116, 0.08);
  border-color: rgba(91, 140, 116, 0.25);
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.65);
  padding: 0.25rem 0.38rem;
  border-radius: 50px;
  transition: all var(--transition);
  line-height: 1;
}

.lang-btn:hover { color: white; background: rgba(255,255,255,0.1); }
.lang-btn.active {
  background: white;
  color: var(--green-dark);
}

#navbar.scrolled .lang-btn { color: var(--text-light); }
#navbar.scrolled .lang-btn:hover { color: var(--green); background: rgba(91,140,116,0.08); }
#navbar.scrolled .lang-btn.active {
  background: var(--green);
  color: white;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero-section.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 40, 25, 0.72) 0%,
    rgba(30, 20, 10, 0.55) 60%,
    rgba(60, 30, 10, 0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: 5rem 2rem 4rem;
}

.hero-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
  animation: floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  color: white;
  text-shadow: 0 4px 24px rgba(0,0,0,0.4);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.hero-tagline {
  font-size: clamp(1rem, 3vw, 1.4rem);
  color: rgba(255,255,255,0.85);
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
}

.hero-box {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  text-align: left;
  margin-bottom: 2.5rem;
}

.hero-box h2 {
  color: white;
  margin-bottom: 1rem;
}

.hero-box p {
  color: rgba(255,255,255,0.88);
  font-size: 0.97rem;
}

.scroll-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  color: white;
  transition: all var(--transition);
  animation: bounce 2s ease-in-out infinite;
}

.scroll-btn svg { width: 22px; height: 22px; }

.scroll-btn:hover {
  background: rgba(255,255,255,0.25);
  border-color: white;
  color: white;
  transform: translateY(4px);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* =============================================
   CONTENT SECTIONS (fullscreen with bg image)
   ============================================= */
.content-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.section-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.section-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-dark);
}

.section-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: flex;
}

.section-right .section-inner { justify-content: flex-end; }
.section-left .section-inner { justify-content: flex-start; }

.content-box {
  background: var(--card-bg);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 2.5rem 3rem;
  max-width: 560px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.content-box.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(224, 124, 84, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.content-box h2 {
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.section-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green);
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}

.section-btn::after { content: '→'; }
.section-btn:hover { color: var(--green-dark); border-bottom-color: var(--green-dark); }

/* Fear cards inside angst section */
.fear-cards {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.fear-card {
  background: rgba(91, 140, 116, 0.08);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 0.85rem 1rem;
}

.fear-card strong { display: block; color: var(--green-dark); margin-bottom: 0.25rem; font-size: 0.9rem; }
.fear-card p { font-size: 0.88rem; margin: 0; }

/* Blockquote in ziele */
blockquote {
  border-left: 4px solid var(--orange);
  margin: 1.25rem 0 0;
  padding: 1rem 1.25rem;
  background: rgba(224, 124, 84, 0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.5;
}

/* =============================================
   KARTE SECTION
   ============================================= */
.karte-section {
  background: white;
  padding: 6rem 0;
}

.karte-note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: rgba(91, 140, 116, 0.08);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 0.85rem 1.1rem;
  font-size: 0.92rem;
  color: var(--text-mid);
  margin-top: 0.75rem;
  text-align: left;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.karte-note svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--green);
  margin-top: 2px;
}

.karte-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 960px;
  margin: 0 auto;
  background: #d6e8f0;
}

.karte-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.karte-wrap:hover .karte-img {
  transform: scale(1.015);
}

.karte-legend {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  box-shadow: var(--shadow-sm);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-mid);
  font-weight: 600;
}

.legend-dot {
  border-radius: 50%;
  background: rgba(50, 60, 140, 0.75);
  flex-shrink: 0;
}

.legend-dot.large { width: 18px; height: 18px; }
.legend-dot.small { width: 10px; height: 10px; }

@media (max-width: 768px) {
  .karte-section { padding: 4rem 0; }
  .karte-legend { bottom: 0.75rem; right: 0.75rem; }
}

/* =============================================
   TERMINE SECTION
   ============================================= */
.termine-section {
  background: var(--off-white);
  padding: 6rem 0;
}

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

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-header .section-label { margin-bottom: 0.5rem; }

.section-header h2 { margin-bottom: 1rem; }

.section-header p { font-size: 1.05rem; }

.termine-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 2rem;
  align-items: start;
}

.termine-col h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.termine-col h3 svg { width: 18px; height: 18px; color: var(--green); }

.termin-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
}

.upcoming-event { border-top: 4px solid var(--orange); }

.termin-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--green);
  color: white;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  min-width: 68px;
  text-align: center;
}

.termin-month { font-size: 0.95rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }
.termin-year { font-size: 0.8rem; font-weight: 600; opacity: 0.8; }

.termin-info { flex: 1; }
.termin-info strong { display: block; font-size: 1.05rem; color: var(--text-dark); margin-bottom: 0.2rem; }
.termin-info span { font-size: 0.85rem; color: var(--text-light); }

.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(224, 124, 84, 0.35);
}

.btn-primary:hover {
  background: var(--orange-light);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 124, 84, 0.4);
}

.termine-list {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  max-height: 480px;
  overflow-y: auto;
}

.termine-list::-webkit-scrollbar { width: 4px; }
.termine-list::-webkit-scrollbar-track { background: transparent; }
.termine-list::-webkit-scrollbar-thumb { background: var(--green-light); border-radius: 4px; }

.termin-past {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: background var(--transition);
}

.termin-past:last-child { border-bottom: none; }
.termin-past:hover { background: rgba(91, 140, 116, 0.05); }

.termin-past-date {
  font-size: 0.8rem;
  color: var(--text-light);
  min-width: 110px;
  font-weight: 600;
}

.termin-past span:last-child { color: var(--text-mid); font-size: 0.9rem; }

/* =============================================
   KONTAKT SECTION
   ============================================= */
.kontakt-section {
  background: white;
  padding: 6rem 0;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.info-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.info-card:last-child { margin-bottom: 0; }

.info-icon { font-size: 2rem; margin-bottom: 0.75rem; }

.info-card h3 { color: var(--text-dark); font-family: var(--font-sans); font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }

.crisis {
  border-left: 4px solid #e04444;
  text-align: center;
}

.crisis .info-icon { display: block; }
.crisis p { text-align: center; }
.crisis a { color: #c03030; font-weight: 700; }
.crisis a:hover { text-decoration: underline; }

.phone-numbers {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin: 0.75rem 0 0.5rem;
}

.phone-number {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  background: #e04444;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  text-align: center;
  transition: all var(--transition);
}

.phone-number:hover { background: #c03030; color: white; transform: translateY(-1px); }

.free-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #888;
  margin-top: 0.25rem;
}

.whatsapp-card { border-left: 4px solid #25d366; }

.whatsapp-img {
  display: block;
  max-width: 220px;
  width: 100%;
  margin: 0.75rem auto 0;
  border-radius: var(--radius-sm);
}

/* No-religion notice */
.no-religion-note {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  background: rgba(91, 140, 116, 0.08);
  border: 1px solid rgba(91, 140, 116, 0.25);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  font-style: italic;
}

.no-religion-note svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--green);
  margin-top: 1px;
}

/* Contact Form */
.kontakt-form-wrap {
  background: var(--warm-white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  font-family: var(--font-serif);
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.75rem;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid #e8e4dc;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: white;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(91, 140, 116, 0.12);
}

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

.checkbox-group label { display: flex; align-items: flex-start; gap: 0.6rem; font-weight: 400; color: var(--text-mid); font-size: 0.85rem; cursor: pointer; }
.checkbox-group input[type="checkbox"] { flex-shrink: 0; width: 18px; height: 18px; margin-top: 1px; accent-color: var(--green); cursor: pointer; }
.checkbox-group a { color: var(--green); font-weight: 700; }

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--green);
  color: white;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(91, 140, 116, 0.35);
  margin-top: 0.5rem;
}

.btn-submit svg { width: 18px; height: 18px; }

.btn-submit:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91, 140, 116, 0.4);
}

.btn-submit:active { transform: translateY(0); }

.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(91, 140, 116, 0.1);
  border: 2px solid var(--green-light);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  color: var(--green-dark);
  font-weight: 600;
}

.form-success svg { width: 22px; height: 22px; flex-shrink: 0; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.65);
  text-align: center;
  padding: 3rem 2rem;
}

.footer-container { max-width: 600px; margin: 0 auto; }

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: white;
  margin-bottom: 0.5rem;
}

.footer-tagline { font-size: 0.95rem; margin-bottom: 1rem; }
.footer-credit { font-size: 0.8rem; margin-bottom: 0.5rem; }
.footer-credit a { color: rgba(255,255,255,0.5); }
.footer-credit a:hover { color: rgba(255,255,255,0.8); }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-legal { margin-top: 0.75rem; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.4); border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 1px; transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.75); }

/* =============================================
   RESPONSIVE – TABLET
   ============================================= */
@media (max-width: 1024px) {
  .section-bg { background-attachment: scroll; }

  .termine-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .kontakt-info { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .info-card { margin-bottom: 0; }
}

/* =============================================
   RESPONSIVE – MOBILE
   ============================================= */
@media (max-width: 768px) {
  /* Nav */
  .nav-toggle { display: flex; }

  .lang-switcher { order: -1; }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0; right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow-md);
    gap: 0.25rem;
    height: auto;
  }

  .nav-links.open { display: flex; }

  /* Navbar gets solid background when mobile menu is open */
  #navbar:has(.nav-links.open) {
    background: #ffffff !important;
    backdrop-filter: none;
    box-shadow: var(--shadow-sm);
  }

  #navbar:has(.nav-links.open) .nav-brand { color: var(--text-dark); text-shadow: none; }
  #navbar:has(.nav-links.open) .nav-toggle span { background: var(--text-dark); }

  .nav-link {
    width: 100%;
    padding: 0.75rem 1rem;
    color: var(--text-mid) !important;
    text-shadow: none !important;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
  }

  .nav-link:hover { background: rgba(91, 140, 116, 0.08) !important; }
  .nav-cta { text-align: center; }

  /* Hero */
  .hero-content { padding: 5rem 1.5rem 3rem; }
  .hero-box { padding: 1.5rem; }

  /* Content sections */
  .section-inner { justify-content: center !important; padding: 4rem 1.25rem; }

  .content-box {
    max-width: 100%;
    padding: 1.75rem 1.5rem;
  }

  .fear-cards { grid-template-columns: 1fr; }

  /* Termine */
  .termine-section { padding: 4rem 0; }
  .kontakt-section { padding: 4rem 0; }

  .termine-grid { grid-template-columns: 1fr; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .kontakt-info { grid-template-columns: 1fr; }
  .kontakt-form-wrap { padding: 1.75rem 1.5rem; }

  /* Footer */
  .site-footer { padding: 2.5rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-logo { width: 80px; height: 80px; }
  h2 { font-size: 1.5rem; }

  .termin-item { flex-direction: column; text-align: center; gap: 1rem; }
  .termin-date { min-width: unset; width: 80px; }
}
