@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Raleway:wght@400;500;600;700&display=swap');

:root {
  --brand-dark: #1A1A2E;
  --accent: #3DBD8D;
  --light-bg: #F5F5F7;
  --gray-text: #6B7280;
  --white: #ffffff;
  --shadow: 0 2px 16px rgba(26,26,46,0.07);
  --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  color: var(--brand-dark);
  background: var(--white);
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  color: var(--brand-dark);
  line-height: 1.25;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: none; }

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

/* ── HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(26,26,46,0.07);
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--brand-dark);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.logo:hover { text-decoration: none; }
.logo .ch { color: var(--gray-text); }

nav ul {
  list-style: none;
  display: flex;
  gap: 0;
  align-items: center;
}
nav ul li a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--brand-dark);
  padding: 0.45rem 0.8rem;
  border-radius: 6px;
  transition: color 0.2s;
  text-decoration: none;
}
nav ul li a:hover { color: var(--accent); text-decoration: none; }
nav ul li a.active { color: var(--accent); }
nav ul li a.btn-nav {
  background: var(--accent);
  color: var(--white);
  padding: 0.45rem 1rem;
  margin-left: 0.5rem;
  border-radius: 6px;
}
nav ul li a.btn-nav:hover { background: #2fa87a; color: var(--white); text-decoration: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand-dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.7rem 1.6rem;
  border-radius: 8px;
  transition: all 0.2s;
  text-decoration: none;
  cursor: pointer;
  border: none;
}
.btn:hover { text-decoration: none; }

.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: #2fa87a; color: var(--white); }

.btn-outline { background: transparent; color: var(--accent); border: 1.5px solid var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--white); }

.btn-dark { background: var(--brand-dark); color: var(--white); }
.btn-dark:hover { background: #2a2a4e; color: var(--white); }

/* ── LAYOUT ── */
section { padding: 5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.container-sm { max-width: 760px; margin: 0 auto; }

.section-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--gray-text);
  max-width: 620px;
  margin-bottom: 2rem;
}
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

.bg-light { background: var(--light-bg); }
.bg-dark { background: var(--brand-dark); color: var(--white); }
.bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-dark p { color: inherit; }
.bg-dark .section-sub { color: rgba(255,255,255,0.65); }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #252548 60%, #1e3a52 100%);
  color: var(--white);
  padding: 7rem 2rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(61,189,141,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(61,189,141,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
}
.hero h1 span { color: var(--accent); }
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  position: relative;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #252548 100%);
  color: var(--white);
  padding: 5rem 2rem 4rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto; font-size: 1rem; }

/* ── JOURNEY CARDS ── */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.journey-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--accent);
  transition: transform 0.22s, box-shadow 0.22s;
  display: flex;
  flex-direction: column;
}
.journey-card:hover { transform: translateY(-3px); box-shadow: 0 6px 28px rgba(26,26,46,0.11); }
.journey-card .step-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.journey-card h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.journey-card p { color: var(--gray-text); font-size: 0.94rem; flex: 1; margin-bottom: 1.5rem; }

/* ── BIBLE QUOTE ── */
.bible-quote {
  margin: 2rem 0;
  font-style: italic;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--accent);
  line-height: 1.75;
}
.bible-quote cite {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 600;
  color: var(--gray-text);
}
/* On dark backgrounds quotes and cite turn white */
.bg-dark .bible-quote,
.prayer-box .bible-quote,
.cta-banner .bible-quote { color: var(--white); }
.bg-dark .bible-quote cite,
.prayer-box .bible-quote cite,
.cta-banner .bible-quote cite { color: rgba(255,255,255,0.6); }

/* ── CARDS GRID ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(26,26,46,0.06);
}
.card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.card p { color: var(--gray-text); font-size: 0.93rem; }

/* Card icon: accent color on light bg, no background box */
.card-icon {
  margin-bottom: 1rem;
  color: var(--accent);
}
.card-icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── STEPS ── */
.steps { display: flex; flex-direction: column; gap: 1.25rem; margin: 2rem 0; }
.step { display: flex; gap: 1.1rem; align-items: flex-start; }
.step-circle {
  min-width: 40px; height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
}
.step-content h4 { font-size: 0.97rem; margin-bottom: 0.2rem; }
.step-content p { color: var(--gray-text); font-size: 0.93rem; }

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 2rem; margin: 2rem 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 0; bottom: 0;
  width: 2px;
  background: var(--accent);
  opacity: 0.25;
}
.timeline-item { position: relative; margin-bottom: 2rem; }
.timeline-dot {
  position: absolute;
  left: -2rem;
  top: 4px;
  width: 16px; height: 16px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--accent);
}
.timeline-item h4 { font-size: 0.97rem; margin-bottom: 0.2rem; }
.timeline-item p { color: var(--gray-text); font-size: 0.91rem; }
.timeline-item .bible-ref {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  margin-top: 0.3rem;
}

/* ── PRAYER BOX ── */
.prayer-box {
  background: linear-gradient(135deg, var(--brand-dark), #252548);
  color: rgba(255,255,255,0.9);
  border-radius: 14px;
  padding: 2.5rem;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.9;
  position: relative;
}
.prayer-box::before {
  content: '"';
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.25;
  position: absolute;
  top: 0.25rem; left: 1.5rem;
  font-family: Georgia, serif;
  line-height: 1;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--brand-dark), #252548);
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.5rem, 3.5vw, 2rem); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto 2rem; font-size: 0.97rem; }
.cta-banner .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FORM ── */
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  color: var(--brand-dark);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid rgba(26,26,46,0.13);
  border-radius: 8px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--brand-dark);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── HIGHLIGHT BOXES ── */
.highlight-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-top: 1.75rem; }
.highlight-box {
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.highlight-box.tip { background: rgba(61,189,141,0.07); border: 1px solid rgba(61,189,141,0.2); }
.highlight-box.community { background: rgba(26,26,46,0.04); border: 1px solid rgba(26,26,46,0.08); }
.highlight-box .hb-icon { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.highlight-box .hb-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.highlight-box h4 { font-size: 0.9rem; margin-bottom: 0.25rem; }
.highlight-box p { font-size: 0.88rem; color: var(--gray-text); }

/* ── TEAM ── */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(26,26,46,0.06);
  text-align: center;
}
.team-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}
.team-avatar {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: var(--radius) var(--radius) 0 0;
}
.team-card h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.team-card p { color: var(--gray-text); font-size: 0.93rem; }

/* ── FOOTER ── */
footer {
  background: var(--white);
  border-top: 1px solid rgba(26,26,46,0.08);
  color: var(--gray-text);
  text-align: center;
  padding: 2.25rem 2rem;
}
footer .footer-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--brand-dark);
  margin-bottom: 0.2rem;
}
footer .footer-brand .ch { color: var(--gray-text); }
footer p { font-size: 0.85rem; margin-bottom: 0.2rem; color: var(--gray-text); }
footer .footer-links { margin-top: 0.75rem; }
footer .footer-links a {
  color: var(--gray-text);
  font-size: 0.8rem;
  transition: color 0.2s;
  text-decoration: none;
}
footer .footer-links a:hover { color: var(--accent); text-decoration: none; }
footer .copyright { margin-top: 0.75rem; font-size: 0.76rem; color: rgba(26,26,46,0.35); }

/* ── RESSOURCEN PAGE ── */
.res-section {
  border: 1px solid rgba(26,26,46,0.09);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.res-header {
  background: var(--white);
  padding: 1.35rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.18s;
  border: none;
  width: 100%;
  text-align: left;
}
.res-header:hover { background: var(--light-bg); }
.res-header h2 {
  font-size: 1.05rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.res-header h2 svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.res-chevron {
  color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.res-chevron svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.res-header.open .res-chevron { transform: rotate(180deg); }
.res-body {
  display: none;
  padding: 0 1.75rem 1.75rem;
  border-top: 1px solid rgba(26,26,46,0.07);
  background: var(--white);
}
.res-body.open { display: block; }

/* Step cards (ressourcen Bibel) */
.step-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin: 1.5rem 0; }
.step-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 1.4rem;
}
.step-card .step-num-badge {
  width: 36px; height: 36px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
}
.step-card .step-icon {
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.step-card .step-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.step-card h4 { font-size: 0.92rem; margin-bottom: 0.4rem; }
.step-card p, .step-card ul { font-size: 0.88rem; color: var(--gray-text); }
.step-card ul { padding-left: 1rem; margin-top: 0.2rem; }
.step-card ul li { margin-bottom: 0.15rem; }

/* YouVersion */
.yv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; margin-top: 1.5rem; }
.yv-logos { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.qr-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  display: inline-block;
}
.qr-card img { width: 130px; height: 130px; margin: 0 auto 0.65rem; }
.qr-card p { font-size: 0.8rem; color: var(--gray-text); max-width: 160px; margin: 0 auto; }

/* Readplan cards */
.readplan-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.5rem 0; }
.readplan-card {
  background: linear-gradient(135deg, var(--brand-dark), #252548);
  color: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.readplan-card .rp-icon { color: white; margin-bottom: 0.6rem; display: flex; justify-content: center; }
.readplan-card .rp-icon svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.readplan-card strong { font-family: 'Montserrat', sans-serif; font-size: 0.95rem; }
.readplan-card p { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-top: 0.3rem; margin-bottom: 0.75rem; }
.readplan-card a { color: var(--accent); font-size: 0.83rem; font-weight: 700; font-family: 'Montserrat', sans-serif; }
.readplan-card a:hover { color: #5dd4a8; text-decoration: none; }

/* ── JOURNEY NAV ARROWS (fixed sides) ── */
.journey-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  width: 44px; height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(26,26,46,0.15);
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.journey-arrow:hover { background: #2fa87a; transform: translateY(-50%) scale(1.08); text-decoration: none; }
.journey-arrow svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.journey-arrow.prev { left: 1rem; }
.journey-arrow.next { right: 1rem; }

@media (max-width: 600px) {
  .journey-arrow { width: 38px; height: 38px; }
  .journey-arrow.prev { left: 0.5rem; }
  .journey-arrow.next { right: 0.5rem; }
}

/* ── 4-COLUMN GRID (responsive) ── */
.cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

/* ── BIBEL-APP GRID ── */
.yv-app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-top: 1rem;
}

/* ── SUB-ACCORDION (inner collapsible) ── */
.sub-accordion {
  border: 1px solid rgba(26,26,46,0.09);
  border-radius: 10px;
  margin: 0.5rem 0 1.25rem;
  overflow: hidden;
}
.sub-accordion summary {
  list-style: none;
  padding: 1rem 1.25rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--brand-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--light-bg);
  user-select: none;
}
.sub-accordion summary::-webkit-details-marker { display: none; }
.sub-accordion summary::after {
  content: '';
  display: inline-block;
  width: 10px; height: 10px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.25s;
  flex-shrink: 0;
  margin-top: -4px;
}
.sub-accordion[open] summary::after { transform: rotate(-135deg); margin-top: 4px; }
.sub-accordion summary:hover { background: rgba(61,189,141,0.06); }
.sub-accordion .sub-body { padding: 1.25rem 1.25rem 0.5rem; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav { display: none; position: absolute; top: 64px; left: 0; right: 0;
        background: var(--white); border-bottom: 1px solid rgba(26,26,46,0.07); padding: 0.75rem 1.25rem; z-index: 99; }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 0.1rem; }
  nav ul li a { display: block; font-size: 0.92rem; padding: 0.6rem 0.75rem; }
  nav ul li a.btn-nav { margin-left: 0; margin-top: 0.5rem; text-align: center; }
  .hamburger { display: flex; }
  .journey-grid { grid-template-columns: 1fr; }
  .yv-grid { grid-template-columns: 1fr; }
  .yv-app-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .highlight-boxes { grid-template-columns: 1fr; }
  .step-cards { grid-template-columns: 1fr; }
  .readplan-cards { grid-template-columns: 1fr; }
  .cards-grid-4 { grid-template-columns: 1fr; }
  .res-header { padding: 1.1rem 1.25rem; }
  .res-body { padding: 0 1.25rem 1.5rem; }
  .res-body .cards-grid { grid-template-columns: 1fr; }
  .sub-accordion summary { font-size: 0.85rem; }
}

@media (max-width: 600px) {
  section { padding: 3.5rem 1.25rem; }
  .hero { padding: 5rem 1.25rem 4rem; }
  .page-hero { padding: 3.5rem 1.25rem 2.5rem; }
  header { padding: 0 1.25rem; }
  .cta-banner { padding: 3rem 1.25rem; }
}
