/* ===== Variables – Nettorama/Boni: geel, rood, wit ===== */
:root {
  --color-bg: #fffbf5;
  --color-surface: #ffffff;
  --color-primary: #e30613;
  --color-primary-dark: #c00510;
  --color-accent: #ffc107;
  --color-yellow: #ffc107;
  --color-red: #e30613;
  --color-text: #1e293b;
  --color-text-muted: #64748b;
  --color-border: #f0e6dc;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --font-heading: 'Outfit', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 3rem 0;
}
.section--alt {
  background: var(--color-surface);
  box-shadow: 0 1px 0 var(--color-border);
}
.section-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
  color: var(--color-text);
}

/* ===== Header ===== */
.site-header {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-primary);
  text-decoration: none;
}
.logo-img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-text { display: inline-block; }
.hero-logo {
  max-width: 280px;
  width: 100%;
  height: auto;
  margin: 0 auto 1.25rem;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}
.page-header .page-logo {
  height: 56px;
  width: auto;
  margin-bottom: 0.75rem;
  display: block;
}
.footer-logo {
  height: 44px;
  width: auto;
  margin: 0 auto 0.5rem;
  display: block;
  opacity: 0.9;
}
.card-logo {
  width: 100%;
  max-width: 120px;
  height: auto;
  margin-bottom: 0.5rem;
  object-fit: contain;
}
.section-logo {
  max-width: 200px;
  width: 100%;
  height: auto;
  margin: 0 auto 1rem;
  display: block;
}
.main-nav {
  display: flex;
  gap: 0.5rem;
}
.nav-link {
  padding: 0.5rem 0.85rem;
  color: var(--color-text-muted);
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
  background: rgba(227, 6, 19, 0.08);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}

@media (max-width: 700px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-surface);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--color-border);
  }
  .main-nav.is-open { display: flex; }
  .nav-toggle { display: block; }
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, #e30613 0%, #c00510 50%, #ffc107 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}
.hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: #fff;
  color: var(--color-red);
  box-shadow: var(--shadow);
}
.btn-primary:hover { box-shadow: var(--shadow-hover); }
.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.8);
}
.btn-secondary:hover {
  background: var(--color-accent);
  color: #1e293b;
  border-color: var(--color-accent);
}

/* ===== Cards (intro grid) ===== */
.intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--color-text);
}
.card p {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}
.card-link {
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  font-size: 0.95rem;
}
.card-link:hover { text-decoration: underline; }

/* ===== Summary ===== */
.summary-text {
  max-width: 720px;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===== Page title (inner pages) ===== */
.page-header {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 2rem 0;
}
.page-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  margin: 0;
  color: var(--color-text);
}

/* ===== Charts section ===== */
.chart-block {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
}
.chart-block h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--color-text);
}
.chart-wrap {
  position: relative;
  height: 280px;
  max-width: 400px;
  margin: 0 auto;
}
.chart-wrap--wide { max-width: 520px; }
.charts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

/* Uitkomst page: charts next to each other in sections */
.uitkomst-charts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}
.uitkomst-charts .chart-block--wide { grid-column: 1 / -1; }
.uitkomst-charts .chart-wrap--bar { max-width: 100%; height: 300px; }

/* Trends moodboard (Assortiment & Uitkomst – wat rommeliger/creatief) */
.moodboard {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1rem;
  justify-content: center;
}
.mood-item {
  width: 160px;
  background: #fffef5;
  border-radius: var(--radius);
  padding: 0.6rem 0.7rem 0.7rem;
  border: 1px solid var(--color-border);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  transform-origin: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mood-item:nth-child(1) { transform: rotate(-3deg); }
.mood-item:nth-child(2) { transform: rotate(2deg); }
.mood-item:nth-child(3) { transform: rotate(-1.5deg); }
.mood-item:nth-child(4) { transform: rotate(3deg); }
.mood-item:hover {
  transform: rotate(0deg) translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.mood-item img {
  width: 100%;
  max-height: 120px;
  border-radius: var(--radius);
  object-fit: cover;
  margin-bottom: 0.4rem;
}
.mood-item span {
  display: block;
  font-size: 0.75rem;
  line-height: 1.4;
  margin-top: 0.15rem;
}
.mood-item strong {
  display: block;
  margin-bottom: 0.1rem;
  font-size: 0.85rem;
  color: var(--color-text);
}

/* ===== Foto-strip (winkel & acties) ===== */
.photo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.75rem;
}
.photo-strip img {
  max-width: 220px;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
}
.photo-strip--small img {
  max-width: 180px;
}

/* ===== Stats bar ===== */
.stats-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem 0;
}
.stat-item {
  background: var(--color-surface);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  font-weight: 600;
  color: var(--color-red);
}

/* ===== Content page (over-onderzoek, opmerkingen) ===== */
.content-page .section-title { margin-bottom: 1rem; }
.content-page .prose {
  max-width: 720px;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}
.content-page .prose p { margin: 0 0 1rem; }
.content-page .prose ul {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}
.content-page .prose li { margin-bottom: 0.35rem; }

/* ===== Assortiment (winkel & assortiment) ===== */
.assortiment-lijst { display: flex; flex-direction: column; gap: 1.25rem; }
.assortiment-vraag {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-red);
}
.assortiment-vraag-titel {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--color-text);
}
.assortiment-antwoorden {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.assortiment-antwoorden li { margin-bottom: 0.35rem; }
.assortiment-antwoorden li:last-child { margin-bottom: 0; }

/* ===== Opmerkingen list ===== */
.opmerkingen-list { list-style: none; padding: 0; margin: 0; }
.opmerking-item {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-red);
}
.opmerking-item blockquote {
  margin: 0 0 0.5rem;
  font-style: italic;
  color: var(--color-text);
}
.opmerking-item .meta {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 1.5rem;
  text-align: center;
  margin-top: 3rem;
}
.site-footer p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
