/* === Variables === */
:root {
  --color-bg: #F5F0EB;
  --color-bg-light: #FAFAF8;
  --color-green: #4A6741;
  --color-green-dark: #3D5A3D;
  --color-green-light: #5A7A52;
  --color-text: #1A1A1A;
  --color-text-muted: #6B6B6B;
  --color-white: #FFFFFF;
  --color-border: #E0D8CF;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'DM Serif Display', Georgia, serif;
  --max-width: 1080px;
  --radius: 12px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

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

section {
  padding: 80px 0;
}

h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 16px;
}

.section-intro {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 640px;
  margin-bottom: 48px;
}

.hidden {
  display: none;
}

/* === Buttons === */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

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

.btn-primary:hover {
  background-color: var(--color-green-dark);
}

.btn-outline {
  border: 1.5px solid var(--color-green);
  color: var(--color-green);
  padding: 10px 24px;
}

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

/* === Header === */
.header {
  padding: 20px 0;
  position: sticky;
  top: 0;
  background-color: var(--color-white);
  z-index: 100;
  border-bottom: 1px solid var(--color-border);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 82px;
  width: auto;
}

/* === Hero === */
.hero {
  padding: 100px 0 80px;
  text-align: center;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 400;
  max-width: 720px;
  margin: 0 auto 24px;
  line-height: 1.2;
}

.hero-sub {
  color: var(--color-text-muted);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* === Hoe het werkt === */
.how-it-works {
  background-color: var(--color-bg-light);
  border-radius: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.step {
  background: var(--color-white);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-template-rows: auto auto;
  column-gap: 20px;
  align-items: start;
}

.step-icon {
  width: 56px;
  height: 56px;
  grid-row: 1 / 3;
}

.step h3 {
  align-self: end;
}

.step p {
  align-self: start;
}

.step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* === Voordelen === */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.benefit-card {
  background: var(--color-white);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.benefit-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* === Maaltijden === */
.meals {
  background-color: var(--color-bg-light);
}

.meals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.meal-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform 0.2s ease;
}

.meal-card:hover {
  transform: translateY(-2px);
}

img.meal-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.meal-image-placeholder {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.meal-placeholder {
  color: #B8A99A;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.meal-info {
  padding: 24px;
}

.meal-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.meal-info p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Vega badge */
.badge-vega {
  font-size: 0.85em;
  vertical-align: middle;
}

.meals-more {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.meals-more h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.meals-more p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.product-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.product-list li {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  padding: 4px 12px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 20px;
}

/* === Contact === */
.contact {
  padding-bottom: 100px;
}

.contact-form {
  max-width: 640px;
  margin-top: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.form-group .optional {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-green);
}

.form-group textarea {
  resize: vertical;
}

.contact-form .btn {
  margin-top: 8px;
}

/* === FAQ === */
.faq-list {
  max-width: 720px;
  margin-top: 32px;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
}

.faq-item summary {
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-text-muted);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-top: 12px;
  line-height: 1.7;
}

/* === Regio === */
.region {
  text-align: center;
}

.region .section-intro {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}

/* === Nav links === */
.header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--color-text);
}

@media (max-width: 768px) {
  .nav-link {
    display: none;
  }
}

/* === Footer === */
.footer {
  background-color: var(--color-bg);
  padding: 40px 0;
  border-top: 1px solid var(--color-border);
}

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

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 12px;
}

.footer p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer-address {
  margin-top: 4px;
}

.footer-contact {
  margin-top: 4px;
}

.footer-contact a {
  color: var(--color-green);
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* === Responsive === */
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .meals-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
