/* ============================================================
   Even Luchten — style.css
   Warm, minimal, therapeutic aesthetic
   ============================================================ */

/* --- Design Tokens --- */
:root {
  --color-bg:        #f8f3ec;
  --color-bg-alt:    #ede5d8;
  --color-text:      #3d2c20;
  --color-accent:    #8b6f5e;
  --color-accent-lt: #c4a896;
  --color-accent-dk: #6a5245;
  --color-white:     #ffffff;
  --color-footer-bg: #3d2c20;
  --color-footer-tx: #f8f3ec;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', 'Inter', system-ui, sans-serif;

  --radius:      12px;
  --radius-sm:   8px;
  --shadow:      0 4px 24px rgba(61, 44, 32, 0.09);
  --shadow-sm:   0 2px 10px rgba(61, 44, 32, 0.07);

  --section-pad: clamp(3.5rem, 8vw, 6rem);
  --max-width:   960px;
  --nav-height:  64px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--color-accent-dk);
}

/* --- Typography --- */
h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--color-text);
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5.5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); font-weight: 700; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  color: var(--color-accent);
}

.section-intro {
  font-size: 1.05rem;
  color: var(--color-accent);
  margin-bottom: 2rem;
  max-width: 600px;
}

/* --- Layout Helpers --- */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2rem);
}

section {
  padding-block: var(--section-pad);
}

section:nth-child(even) {
  background-color: var(--color-bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

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

.section-header p {
  color: var(--color-accent);
  font-size: 1.05rem;
  max-width: 540px;
  margin-inline: auto;
}

/* --- Divider --- */
.divider {
  width: 48px;
  height: 2px;
  background: var(--color-accent-lt);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
}

.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}
.btn-primary:hover {
  background: var(--color-accent-dk);
  border-color: var(--color-accent-dk);
  color: var(--color-white);
}

.btn-ghost {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent-lt);
}
.btn-ghost:hover {
  background: var(--color-accent-lt);
  color: var(--color-accent-dk);
  border-color: var(--color-accent-lt);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 243, 236, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-accent-lt);
  height: var(--nav-height);
}

.nav-inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 1.75rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.02em;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent-lt);
}

.nav-cta { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav menu */
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-accent-lt);
  padding: 1.25rem clamp(1.25rem, 5vw, 2rem);
  gap: 0;
}

.nav-mobile-menu.is-open {
  display: flex;
}

.nav-mobile-menu a {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--color-bg-alt);
  letter-spacing: 0.02em;
}

.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu a:hover { color: var(--color-accent); }

/* Desktop nav */
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: clamp(4rem, 10vw, 7rem);
  background-color: var(--color-bg);
}

.hero-leaf {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.hero-leaf--left {
  left: -30px;
  bottom: -20px;
  width: clamp(100px, 18vw, 180px);
  opacity: 0.7;
}

.hero-leaf--right {
  right: -20px;
  top: -10px;
  width: clamp(100px, 18vw, 180px);
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-content h1 {
  margin-bottom: 1.25rem;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--color-accent);
}

.hero-subkop {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--color-accent);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2.25rem;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--color-accent);
  margin-top: 0.5rem;
}

/* ============================================================
   OVER MIJ
   ============================================================ */
#over .over-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.over-text p {
  font-size: 1.05rem;
}

.pullquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--color-accent);
  border-left: 3px solid var(--color-accent-lt);
  padding-left: 1.25rem;
  margin-block: 1.5rem;
  line-height: 1.4;
}

.over-visual {
  display: flex;
  justify-content: center;
}

.avatar-placeholder {
  width: clamp(160px, 30vw, 220px);
  height: clamp(160px, 30vw, 220px);
  border-radius: 50%;
  background: var(--color-bg-alt);
  border: 3px solid var(--color-accent-lt);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--color-accent-lt);
  font-size: 0.8rem;
  text-align: center;
  padding: 1rem;
}

.avatar-placeholder svg {
  margin-inline: auto;
}

@media (min-width: 768px) {
  #over .over-grid {
    grid-template-columns: 1fr 280px;
  }
}

/* ============================================================
   HOE HET WERKT
   ============================================================ */
.stappen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.stap-card {
  background: var(--color-bg);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-accent-lt);
  position: relative;
}

.stap-nummer {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent-lt);
  line-height: 1;
  margin-bottom: 1rem;
}

.stap-card h3 {
  margin-bottom: 0.5rem;
  color: var(--color-accent-dk);
}

.stap-card p {
  font-size: 0.95rem;
  color: var(--color-text);
  opacity: 0.85;
}

@media (min-width: 640px) {
  .stappen-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   TARIEVEN
   ============================================================ */
#tarieven {
  text-align: center;
}

.prijs-badge {
  display: inline-block;
  background: var(--color-bg);
  border: 2px solid var(--color-accent-lt);
  border-radius: 50px;
  padding: 0.6rem 2rem;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--color-accent-dk);
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.benefits-list {
  list-style: none;
  display: inline-flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
  margin-bottom: 2rem;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.05rem;
}

.benefits-list li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M10 2 Q9 6 6 9 Q8 8 10 10 Q12 8 14 9 Q11 6 10 2Z' fill='%238b6f5e' opacity='0.5'/%3E%3Cpath d='M10 10 Q8 14 8 18 Q10 15 10 10Z' fill='%238b6f5e' opacity='0.4'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.anoniem-note {
  font-size: 0.95rem;
  color: var(--color-accent);
  font-style: italic;
  margin-bottom: 2rem;
}

/* ============================================================
   BOEKEN
   ============================================================ */
#boeken .booking-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-accent-lt);
  background: var(--color-white);
  min-height: 600px;
  -webkit-overflow-scrolling: touch;
}

#boeken .booking-frame iframe {
  display: block;
  width: 100%;
  min-height: 600px;
  border: 0;
}

.booking-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--color-accent);
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
}


.booking-note strong {
  color: var(--color-accent-dk);
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact .contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  #contact .contact-grid {
    grid-template-columns: 1fr 300px;
    align-items: start;
  }
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-accent-lt);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.975rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(139, 111, 94, 0.12);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-accent-lt);
}

/* Turnstile widget alignment */
.cf-turnstile {
  margin-top: 0.25rem;
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

/* Contact aside */
.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-aside h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--color-accent-dk);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.contact-detail-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.65;
}

.contact-aside p {
  font-size: 0.9rem;
  color: var(--color-accent);
  font-style: italic;
  padding: 1rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-accent-lt);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-tx);
  padding-block: 3rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

.footer-logo {
  display: flex;
  justify-content: center;
}

.footer-logo img {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1) opacity(0.7);
}

.footer-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: rgba(248, 243, 236, 0.65);
  margin-top: 0.4rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.footer-links a {
  color: rgba(248, 243, 236, 0.75);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--color-footer-tx);
}

.footer-bottom {
  border-top: 1px solid rgba(248, 243, 236, 0.15);
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(248, 243, 236, 0.4);
}

.footer-vertrouwelijk {
  font-size: 0.85rem;
  color: rgba(248, 243, 236, 0.5);
  font-style: italic;
}

@media (min-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
  .footer-logo { justify-content: flex-start; }
  .footer-links { align-items: flex-start; }
  .footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

/* ============================================================
   UTILITY
   ============================================================ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }

/* Smooth scroll already set on html */
