/* ===================================================
   Hypnosepraktijk De Droomreis — Plain CSS
   =================================================== */

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

/* === Variables === */
:root {
  --bg:           hsl(40, 33%, 97%);
  --fg:           hsl(180, 30%, 15%);
  --primary:      hsl(184, 45%, 25%);
  --primary-fg:   hsl(40, 33%, 98%);
  --secondary:    hsl(35, 40%, 85%);
  --secondary-fg: hsl(184, 45%, 20%);
  --muted:        hsl(180, 15%, 92%);
  --muted-fg:     hsl(180, 15%, 45%);
  --card:         hsl(40, 33%, 99%);
  --border:       hsl(180, 15%, 85%);
  --font-sans:    'Plus Jakarta Sans', sans-serif;
  --font-serif:   'Playfair Display', serif;
  --radius:       0.25rem;
  --container:    1200px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* === Layout === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* === Navbar === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--fg);
  letter-spacing: 0.01em;
  z-index: 110;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.navbar-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--muted-fg);
  transition: color 0.2s;
}
.navbar-links a:hover,
.navbar-links a.active { color: var(--primary); }
.btn-nav {
  padding: 0.6rem 1.5rem;
  background: var(--primary);
  color: var(--primary-fg) !important;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s;
}
.btn-nav:hover { background: hsl(184, 45%, 20%) !important; }

/* Mobile menu button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--fg);
  z-index: 110;
  padding: 0.25rem;
}
.menu-toggle svg { width: 24px; height: 24px; }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 105;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--fg);
  transition: color 0.2s;
}
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--primary); }
.mobile-nav .btn-primary { font-family: var(--font-sans); font-size: 1.1rem; margin-top: 1rem; }

@media (max-width: 768px) {
  .navbar-links { display: none; }
  .menu-toggle { display: block; }
}

/* === Buttons === */
.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--primary);
  color: var(--primary-fg);
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(36, 89, 107, 0.25);
}
.btn-primary:hover {
  background: hsl(184, 45%, 20%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(36, 89, 107, 0.3);
}
.btn-outline {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--primary-fg);
}
.btn-small {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background: var(--primary);
  color: var(--primary-fg);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s;
}
.btn-small:hover { background: hsl(184, 45%, 20%); }

/* === Scroll animations === */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-right.visible { opacity: 1; transform: translateX(0); }
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay: 0.15s; }
.stagger.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay: 0.3s; }
.stagger.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay: 0.45s; }
.stagger.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay: 0.6s; }
.stagger.visible > *:nth-child(6) { opacity:1; transform:none; transition-delay: 0.75s; }
.stagger.visible > *:nth-child(7) { opacity:1; transform:none; transition-delay: 0.9s; }
.stagger.visible > *:nth-child(8) { opacity:1; transform:none; transition-delay: 1.05s; }

/* === Hero section (home) === */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
}
.hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(250,247,242,0.75) 0%, rgba(250,247,242,0.1) 40%, rgba(250,247,242,0.9) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 780px;
  padding: 2rem 1.5rem;
  margin-top: 5rem;
}
.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--fg);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.hero-content h1 .italic { font-style: italic; font-weight: 400; color: var(--primary); }
.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: hsl(180, 30%, 20%);
  font-weight: 300;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* === Page hero (inner pages) === */
.page-hero {
  background: var(--muted);
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero.tinted { background: hsl(184, 45%, 25%, 0.05); }
.page-hero .ripple-bg {
  position: absolute;
  top: 0; right: 0;
  opacity: 0.1;
  transform: translate(33%, -33%);
  pointer-events: none;
}
.page-hero .ripple-bg img { width: 600px; height: 600px; object-fit: cover; border-radius: 50%; }
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--fg);
  margin-bottom: 1.25rem;
}
.page-hero p {
  font-size: 1.2rem;
  color: var(--muted-fg);
  font-weight: 300;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === Section spacing === */
.section { padding: 5rem 0; }
.section-lg { padding: 7rem 0; }
.section-card { padding: 5rem 0; background: var(--card); }
.section-muted { padding: 5rem 0; background: var(--muted); }
.section-primary { padding: 7rem 0; background: var(--primary); color: var(--primary-fg); position: relative; overflow: hidden; }
.section-muted-light { padding: 5rem 0; background: hsl(180, 15%, 92%, 0.4); }
.section-primary-tint { padding: 5rem 0; background: hsl(184, 45%, 25%, 0.08); }

/* === Text === */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted-fg); }
.lead { font-size: 1.1rem; line-height: 1.8; color: var(--muted-fg); }
.max-w-3xl { max-width: 800px; margin: 0 auto; }
.max-w-2xl { max-width: 640px; margin: 0 auto; }
.prose p { font-size: 1.05rem; line-height: 1.85; color: var(--muted-fg); margin-bottom: 1.25rem; }
.prose p:last-child { margin-bottom: 0; }

/* Section headings */
.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--fg);
  margin-bottom: 2rem;
}
.section-subtitle {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  margin-bottom: 1.5rem;
  color: var(--fg);
}

/* === Grid layouts === */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-3 { gap: 2rem; }
}

/* === Intro section === */
.intro-section { padding: 7rem 0; background: var(--bg); }

/* === Split image section === */
.split-img {
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  width: 100%;
  height: 500px;
  object-fit: cover;
}
@media (max-width: 768px) { .split-img { height: 300px; } }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 500;
  border-bottom: 1px solid var(--primary);
  padding-bottom: 2px;
  transition: color 0.2s, opacity 0.2s;
}
.arrow-link:hover { opacity: 0.75; }
.arrow-link svg { width: 20px; height: 20px; }

/* === Quote section === */
.quote-section { padding: 7rem 0; background: var(--primary); color: var(--primary-fg); position: relative; overflow: hidden; }
.quote-bg {
  position: absolute;
  inset: 0;
  opacity: 0.08;
}
.quote-bg img { width: 100%; height: 100%; object-fit: cover; }
.quote-icon { width: 48px; height: 48px; margin: 0 auto 2rem; opacity: 0.6; }
.quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  line-height: 1.5;
  margin-bottom: 2rem;
}
.quote-attr {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* === Step cards (process teaser) === */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
@media (max-width: 768px) { .steps { grid-template-columns: 1fr; gap: 2rem; } }
.step { text-align: center; }
.step-number {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--primary);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.step h3 { font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--fg); }
.step p { font-size: 0.95rem; color: var(--muted-fg); }

/* === Timeline (werkwijze) === */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0.9rem;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
}
.timeline-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.timeline-num {
  width: 40px; height: 40px; min-width: 40px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--primary);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--bg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-left: -2.9rem;
  z-index: 1;
  position: relative;
  flex-shrink: 0;
}
.timeline-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  flex: 1;
}
.timeline-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--fg); }
.timeline-card p { font-size: 0.9rem; color: var(--muted-fg); line-height: 1.7; }

/* === Rates card === */
.rates-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  overflow: hidden;
  margin-top: 3rem;
}
.rates-card-img { height: 180px; overflow: hidden; }
.rates-card-img img { width: 100%; height: 100%; object-fit: cover; }
.rates-card-body { padding: 2.5rem; }
.rates-card-body h2 { font-size: 2rem; color: var(--primary); text-align: center; margin-bottom: 2rem; }
.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  gap: 1rem;
}
.rate-row:last-of-type { margin-bottom: 0; }
.rate-label h4 { font-size: 1rem; font-weight: 600; font-family: var(--font-sans); color: var(--fg); margin-bottom: 0.2rem; }
.rate-label p { font-size: 0.85rem; color: var(--muted-fg); }
.rate-price { font-family: var(--font-serif); font-size: 1.3rem; color: var(--primary); white-space: nowrap; }
.rates-note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--muted);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.7;
}
.rates-note strong { color: var(--fg); }
.rates-note p + p { margin-top: 0.5rem; }

/* === FAQ Accordion === */
.accordion { border-top: 1px solid var(--border); }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg);
  gap: 1rem;
  transition: color 0.2s;
}
.accordion-trigger:hover { color: var(--primary); }
.accordion-trigger svg {
  width: 20px; height: 20px; min-width: 20px;
  color: var(--primary);
  transition: transform 0.3s;
}
.accordion-item.open .accordion-trigger svg { transform: rotate(45deg); }
.accordion-content {
  display: none;
  padding: 0 0 1.25rem;
  font-size: 0.97rem;
  color: var(--muted-fg);
  line-height: 1.8;
}
.accordion-item.open .accordion-content { display: block; }

/* === Voor Wie page === */
.card-list { display: flex; flex-direction: column; gap: 0.75rem; }
.card-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
  background: hsl(184, 45%, 25%, 0.08);
  border: 1px solid hsl(184, 45%, 25%, 0.18);
  border-radius: var(--radius);
}
.card-dot {
  width: 8px; height: 8px; min-width: 8px;
  border-radius: 50%;
  background: var(--primary);
  margin-top: 0.4rem;
}
.card-item span { font-size: 0.97rem; color: var(--fg); }
.section-divider { width: 100%; height: 1px; background: var(--border); }
.label-tag {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

/* === Footer === */
footer {
  background: var(--primary);
  color: var(--primary-fg);
  padding: 5rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }
footer h3 { font-size: 1.5rem; margin-bottom: 1.25rem; }
footer h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: var(--secondary);
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.875rem; font-size: 0.97rem; opacity: 0.9; }
footer ul li strong { opacity: 1; }
footer ul li a { opacity: 0.9; transition: opacity 0.2s, color 0.2s; }
footer ul li a:hover { opacity: 1; color: var(--secondary); }
.footer-desc { opacity: 0.8; line-height: 1.7; font-size: 0.97rem; max-width: 280px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.55;
}

/* === Main content offset for fixed navbar === */
main { padding-top: 5rem; }
