/* ============================================================
   MINDSET WALKING — Shared Stylesheet
   Brand Guide compliant: Montserrat, Forest Green, Light Beige
   ============================================================ */

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

:root {
  /* ===== BRAND GUIDE KLEUREN ===== */
  --forest-green:      #4F6F5D;
  --meadow-green:      #7F9E78;
  --deep-nature:       #3E5C4C;
  --soft-sky:          #AFC6CF;
  --warm-sand:         #E8D7B3;
  --light-beige:       #F5F2EA;
  --gradient-warm:     #F3D9B1;
  --gradient-cool:     #AFC6CF;
  --tagline-color:     #8FA39A;
  --text-primary:      #2D2D2D;
  --text-muted:        #6B7770;
  --white:             #FFFFFF;

  /* Font */
  --font-primary:      'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max-width:         780px;
  --max-width-wide:    1100px;
  --section-padding:   6rem 1.5rem;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--text-primary);
  background: var(--light-beige);
  line-height: 1.75;
  font-size: 1.0625rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.25;
  color: var(--forest-green);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 4.5vw, 2.875rem); }
h2 { font-size: clamp(1.625rem, 3vw, 2rem); margin-bottom: 1.5rem; }
h3 { font-size: 1.25rem; margin-bottom: 1rem; }

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

a {
  color: var(--forest-green);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--deep-nature);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.container-wide {
  max-width: var(--max-width-wide);
  margin: 0 auto;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: rgba(245, 242, 234, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.875rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(79, 111, 93, 0.08);
}

.header-inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  text-decoration: none;
}
.logo-lockup:hover {
  text-decoration: none;
}

.logo-icon {
  height: 60px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--forest-green);
  letter-spacing: -0.01em;
}

.logo-tagline {
  font-size: 0.8rem;
  color: var(--tagline-color);
  letter-spacing: 0.02em;
  margin-top: 1px;
  font-weight: 400;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--forest-green);
  position: relative;
  padding-bottom: 2px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--deep-nature);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a:hover {
  color: var(--deep-nature);
  text-decoration: none;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest-green);
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 4rem 1.5rem 5rem;
  background:
    radial-gradient(ellipse at top right, rgba(175, 198, 207, 0.15) 0%, transparent 60%),
    linear-gradient(180deg, var(--light-beige) 0%, #FAF7EF 100%);
}

.hero-inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 2rem;
}

.hero-text p {
  color: var(--text-primary);
  font-size: 1.0625rem;
}

.hero-belofte {
  font-size: 1.25rem !important;
  color: var(--forest-green) !important;
  font-weight: 500;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(79, 111, 93, 0.15);
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(62, 92, 76, 0.12);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: var(--section-padding);
}

.section--white {
  background: var(--white);
}

.section--beige {
  background: var(--light-beige);
}

.section--green {
  background: var(--forest-green);
  color: var(--white);
}

.section--green h2 {
  color: var(--white);
}

.section--green p {
  color: rgba(255, 255, 255, 0.92);
}

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

/* ============================================================
   BRIDGE (introductory quote)
   ============================================================ */
.bridge {
  font-size: 1.0625rem;
  color: var(--forest-green);
  font-weight: 500;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(79, 111, 93, 0.1);
  line-height: 1.6;
}

/* ============================================================
   RESULT CARD
   ============================================================ */
.result-card {
  background: var(--white);
  padding: 2rem 2.25rem;
  border-left: 4px solid var(--meadow-green);
  margin: 2.5rem 0;
  border-radius: 2px;
}

.result-card p {
  margin-bottom: 0;
  font-style: italic;
  color: var(--text-primary);
}

/* ============================================================
   PORTRET
   ============================================================ */
.portret-wrapper {
  text-align: center;
  margin-bottom: 2rem;
}

.portret {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--light-beige);
  box-shadow: 0 4px 16px rgba(79, 111, 93, 0.12);
}

.groet {
  font-size: 1.5rem;
  color: var(--forest-green);
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.75rem;
}

/* ============================================================
   FASE CARDS (aanbod)
   ============================================================ */
.fase {
  margin-bottom: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(79, 111, 93, 0.08);
}

.fase:last-child {
  border-bottom: none;
}

.fase-label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--meadow-green);
  margin-bottom: 0.5rem;
}

.fase h3 {
  font-size: 1.125rem;
  color: var(--forest-green);
  margin-bottom: 0.5rem;
}

.fase p {
  margin-bottom: 0;
  color: var(--text-muted);
}

/* ============================================================
   INVESTERING
   ============================================================ */
.investering {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 4px;
  margin: 2rem 0;
}

.investering .prijs {
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest-green);
}

.investering .prijs-label {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ============================================================
   FORMULIER
   ============================================================ */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--forest-green);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-primary);
  font-size: 1rem;
  border: 1.5px solid rgba(79, 111, 93, 0.2);
  border-radius: 3px;
  background: var(--white);
  color: var(--text-primary);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--forest-green);
  box-shadow: 0 0 0 3px rgba(79, 111, 93, 0.08);
}

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

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.form-consent input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  accent-color: var(--forest-green);
  flex-shrink: 0;
}

.form-consent label {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-consent a {
  color: var(--forest-green);
  text-decoration: underline;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 1rem 2.25rem;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 3px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--forest-green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--deep-nature);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(62, 92, 76, 0.2);
}

.btn-on-dark {
  background: var(--white);
  color: var(--forest-green);
}

.btn-on-dark:hover {
  background: var(--light-beige);
  color: var(--deep-nature);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--forest-green);
  border: 1.5px solid var(--forest-green);
}

.btn-secondary:hover {
  background: var(--forest-green);
  color: var(--white);
}

/* ============================================================
   LINK STYLES
   ============================================================ */
.link-meer {
  font-weight: 500;
  color: var(--forest-green);
  border-bottom: 1px solid var(--forest-green);
  padding-bottom: 2px;
}

.link-meer:hover {
  text-decoration: none;
  color: var(--deep-nature);
  border-color: var(--deep-nature);
}

.link-secundair {
  display: block;
  margin-top: 1.25rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.link-secundair:hover {
  color: var(--forest-green);
}

/* ============================================================
   CTA ROW
   ============================================================ */
.cta-row {
  text-align: center;
  margin-top: 2.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--deep-nature);
  color: rgba(255, 255, 255, 0.7);
  padding: 2.5rem 1.5rem;
  text-align: center;
  font-size: 0.875rem;
}

.site-footer p {
  margin-bottom: 0.5rem;
}

.site-footer .tagline-footer {
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
}

.footer-links {
  margin-top: 1rem;
  font-size: 0.8125rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0.75rem;
}

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

/* ============================================================
   JURIDISCH (privacy/AV pagina's)
   ============================================================ */
.juridisch h1 {
  margin-bottom: 0.5rem;
}

.juridisch .laatst-bijgewerkt {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 3rem;
}

.juridisch h2 {
  margin-top: 3rem;
}

.juridisch ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.juridisch li {
  margin-bottom: 0.5rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(79, 111, 93, 0.08);
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-item h3 {
  font-size: 1.125rem;
  color: var(--forest-green);
  margin-bottom: 0.75rem;
}

.faq-item p {
  margin-bottom: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-padding: 4rem 1.25rem;
  }

  .hero {
    padding: 2.5rem 1.25rem 3rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-image {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .site-header {
    padding: 0.75rem 1.25rem;
  }

  .logo-icon {
    height: 40px;
  }

  .logo-name {
    font-size: 1rem;
  }

  .logo-tagline {
    font-size: 0.6rem;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(245, 242, 234, 0.98);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(79, 111, 93, 0.1);
  }

  .main-nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  h1 {
    font-size: 1.875rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .result-card {
    padding: 1.5rem;
  }
}
