/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  color: #2C2C2A;
  background: #ffffff;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* === KLEUREN === */
:root {
  --groen:       #1D9E75;
  --groen-donker:#04342C;
  --groen-mid:   #085041;
  --groen-licht: #E1F5EE;
  --groen-zacht: #9FE1CB;
  --tekst:       #2C2C2A;
  --muted:       #888780;
  --rand:        #E8E6DF;
  --bg:          #F1EFE8;
  --wit:         #ffffff;
  --card-bg:     #F9F8F5;
}

/* === LAYOUT === */
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* === HEADER === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--wit);
  border-bottom: 0.5px solid var(--rand);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 64px; gap: 24px;
}
.logo svg { display: block; }

.main-nav ul { display: flex; gap: 28px; list-style: none; }
.main-nav a {
  font-size: 14px; font-weight: 400; color: var(--muted);
  transition: color .2s;
}
.main-nav a:hover { color: var(--tekst); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch {
  font-size: 12px; font-weight: 500; color: var(--muted);
  border: 0.5px solid var(--rand); border-radius: 5px;
  padding: 4px 9px; transition: color .2s;
}
.lang-switch:hover { color: var(--tekst); }

/* === KNOPPEN === */
.btn-primary {
  display: inline-block;
  background: var(--groen); color: var(--wit);
  font-size: 13px; font-weight: 400;
  padding: 9px 20px; border-radius: 6px;
  border: none; cursor: pointer; transition: background .2s;
  font-family: 'Roboto', sans-serif;
}
.btn-primary:hover { background: #189065; }
.btn-secondary {
  display: inline-block;
  background: transparent; color: var(--tekst);
  font-size: 13px; font-weight: 400;
  padding: 8px 20px; border-radius: 6px;
  border: 0.5px solid #B4B2A9; cursor: pointer;
  transition: border-color .2s;
  font-family: 'Roboto', sans-serif;
}
.btn-secondary:hover { border-color: var(--tekst); }

/* === HAMBURGER === */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--tekst); border-radius: 2px; transition: .2s;
}
.mobile-nav {
  background: var(--wit); border-bottom: 0.5px solid var(--rand);
  padding: 16px 24px;
}
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.mobile-nav a { font-size: 15px; color: var(--tekst); font-weight: 400; }

/* === HERO === */
.hero {
  background: var(--bg);
  padding: 72px 24px 60px;
  text-align: center;
}
.hero-tag {
  display: inline-block;
  font-size: 11px; font-weight: 400; letter-spacing: .04em;
  color: #0F6E56; background: var(--groen-licht);
  padding: 5px 16px; border-radius: 20px; margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 300; color: var(--tekst);
  line-height: 1.25; letter-spacing: -.4px;
  margin-bottom: 16px;
}
.hero h1 strong { font-weight: 500; color: var(--groen); }
.hero p {
  font-size: 15px; color: var(--muted);
  max-width: 480px; margin: 0 auto 30px;
  line-height: 1.7; font-weight: 300;
}
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* === SECTION ALGEMEEN === */
.section { padding: 60px 0; }
.section-label {
  font-size: 10px; font-weight: 500; color: var(--muted);
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px;
}
.section-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 300; color: var(--tekst);
  letter-spacing: -.2px; margin-bottom: 32px;
}

/* === ITEMS GRID === */
.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.item-card {
  background: var(--card-bg);
  border: 0.5px solid var(--rand);
  border-radius: 12px; padding: 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color .2s;
}
.item-card:hover { border-color: var(--groen-zacht); }
.item-card-img {
  width: 100%; height: 180px; object-fit: cover;
  border-radius: 8px; margin-bottom: 4px;
}
.item-type-badge {
  display: inline-block; font-size: 10px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 10px;
}
.item-type-badge.product { background: var(--groen-licht); color: #0F6E56; }
.item-type-badge.dienst  { background: #E6F1FB; color: #185FA5; }
.item-card h3 { font-size: 17px; font-weight: 500; color: var(--tekst); }
.item-card .subtitel { font-size: 13px; color: var(--muted); font-weight: 300; }
.item-card .tekst { font-size: 14px; color: #5F5E5A; line-height: 1.6; font-weight: 300; }
.item-card .item-badge {
  font-size: 10px; font-weight: 400;
  color: #0F6E56; background: var(--groen-licht);
  padding: 3px 10px; border-radius: 10px;
  display: inline-block; width: fit-content;
}
.item-card .item-link {
  font-size: 13px; color: var(--groen); font-weight: 400;
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: auto;
}
.item-card .item-link:hover { text-decoration: underline; }

/* === DONKER BLOK (uitgelicht) === */
.dark-section {
  background: var(--groen-donker);
  padding: 60px 0;
}
.dark-section .section-label { color: var(--groen-zacht); }
.dark-section .section-title { color: #E1F5EE; }

/* === OVER ONS STRIP === */
.over-strip {
  background: var(--bg); padding: 60px 0;
}
.over-strip-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.over-tekst h2 { font-size: 26px; font-weight: 300; margin-bottom: 16px; letter-spacing: -.2px; }
.over-tekst p { font-size: 14px; color: #5F5E5A; line-height: 1.7; margin-bottom: 14px; }
.over-tekst strong { font-weight: 500; }
.over-tekst em { font-style: italic; color: var(--groen); }

/* === NIEUWSBRIEF === */
.nieuwsbrief-section { background: var(--wit); padding: 60px 0; border-top: 0.5px solid var(--rand); }
.nieuwsbrief-box {
  max-width: 520px; margin: 0 auto; text-align: center;
}
.nieuwsbrief-box h2 { font-size: 22px; font-weight: 300; margin-bottom: 10px; }
.nieuwsbrief-box p { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.nieuwsbrief-form { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.nieuwsbrief-form input[type="email"],
.nieuwsbrief-form input[type="text"] {
  flex: 1; min-width: 200px;
  padding: 10px 14px; border: 0.5px solid #B4B2A9;
  border-radius: 6px; font-size: 14px; font-family: 'Roboto', sans-serif;
  font-weight: 300; color: var(--tekst); background: var(--wit);
  outline: none;
}
.nieuwsbrief-form input:focus { border-color: var(--groen); }
.melding-ok  { color: var(--groen); font-size: 14px; margin-top: 10px; }
.melding-err { color: #A32D2D;    font-size: 14px; margin-top: 10px; }

/* === CONTACTPAGINA === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-form label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 5px; font-weight: 400; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%; padding: 10px 14px;
  border: 0.5px solid #B4B2A9; border-radius: 6px;
  font-size: 14px; font-family: 'Roboto', sans-serif;
  font-weight: 300; color: var(--tekst); background: var(--wit);
  margin-bottom: 16px; outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--groen); }
.contact-form textarea { height: 140px; resize: vertical; }
.contact-info h3 { font-size: 17px; font-weight: 500; margin-bottom: 12px; }
.contact-info p  { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 8px; }
.contact-info a  { color: var(--groen); }

/* === FOOTER === */
.site-footer { background: var(--groen-donker); padding: 48px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 32px; align-items: start; padding-bottom: 32px;
}
.footer-tagline { font-size: 11px; color: var(--groen-zacht); letter-spacing: .08em; margin-top: 8px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; text-align: center; }
.footer-links a { font-size: 12px; color: #5DCAA5; }
.footer-links a:hover { color: #E1F5EE; }
.footer-bedrijf p { font-size: 12px; color: #5DCAA5; line-height: 1.7; text-align: right; }
.footer-bedrijf strong { color: #E1F5EE; font-weight: 400; }
.footer-copy {
  border-top: 0.5px solid var(--groen-mid); padding: 14px 0;
}
.footer-copy span { font-size: 11px; color: #5F5E5A; }

/* === ADMIN FLASH MELDINGEN === */
.flash-ok  { background: #E1F5EE; color: #085041; padding: 10px 16px; border-radius: 6px; font-size: 14px; margin-bottom: 16px; }
.flash-err { background: #FCEBEB; color: #791F1F; padding: 10px 16px; border-radius: 6px; font-size: 14px; margin-bottom: 16px; }

/* === RICH TEXT WEERGAVE === */
.rich-content p  { margin-bottom: 14px; font-size: 14px; line-height: 1.7; color: #5F5E5A; }
.rich-content strong { font-weight: 500; color: var(--tekst); }
.rich-content em     { font-style: italic; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-actions .btn-primary { display: none; }
  .over-strip-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-bedrijf p { text-align: center; }
  .footer-links { flex-direction: row; flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 520px) {
  .hero { padding: 48px 16px 40px; }
  .section { padding: 40px 0; }
}
