*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* 1. The Regular/Roman Variable Font */
@font-face {
  font-family: 'DM Sans';
  src: url('fonts/DMSans-VariableFont_opsz,wght.ttf') format('truetype-variations');
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}

/* 2. The Italic Variable Font */
@font-face {
  font-family: 'DM Sans';
  src: url('fonts/DMSans-Italic-VariableFont_opsz,wght.ttf') format('truetype-variations');
  font-weight: 100 1000;
  font-style: italic;
  font-display: swap;
}
:root {
  --geel: #F5C000;
  --geel-dark: #D4A000;
  --zwart: #111111;
  --wit: #F8F8F8;
  --grijs: #EEEEEE;
  --tekst: #1A1A1A;
  --gaten-licht: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Ccircle cx='22' cy='28' r='9' fill='%239A7000' opacity='0.3'/%3E%3Ccircle cx='22' cy='28' r='9' fill='none' stroke='%23FFE580' stroke-width='1' opacity='0.2'/%3E%3Ccircle cx='80' cy='18' r='5' fill='%239A7000' opacity='0.25'/%3E%3Ccircle cx='112' cy='60' r='12' fill='%239A7000' opacity='0.22'/%3E%3Ccircle cx='48' cy='82' r='7' fill='%239A7000' opacity='0.24'/%3E%3Ccircle cx='98' cy='108' r='6' fill='%239A7000' opacity='0.22'/%3E%3Ccircle cx='18' cy='110' r='4' fill='%239A7000' opacity='0.2'/%3E%3Ccircle cx='60' cy='48' r='14' fill='%239A7000' opacity='0.15'/%3E%3C/svg%3E");
  --gaten-donker: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Ccircle cx='22' cy='28' r='9' fill='%23050505' opacity='0.7'/%3E%3Ccircle cx='22' cy='28' r='9' fill='none' stroke='%23F5C000' stroke-width='0.8' opacity='0.12'/%3E%3Ccircle cx='80' cy='18' r='5' fill='%23050505' opacity='0.65'/%3E%3Ccircle cx='112' cy='60' r='12' fill='%23050505' opacity='0.65'/%3E%3Ccircle cx='48' cy='82' r='7' fill='%23050505' opacity='0.6'/%3E%3Ccircle cx='98' cy='108' r='6' fill='%23050505' opacity='0.6'/%3E%3Ccircle cx='18' cy='110' r='4' fill='%23050505' opacity='0.55'/%3E%3Ccircle cx='60' cy='48' r='14' fill='%23050505' opacity='0.55'/%3E%3C/svg%3E");
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--wit);
  color: var(--tekst);
  overflow-x: hidden;
}

/* =====================
   HERO — mobile first
   ===================== */
.hero {
  display: flex;
  flex-direction: column;
  background: var(--geel);
  background-image: var(--gaten-licht);
  background-repeat: repeat;
}

.hero-foto {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}

.hero-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-foto::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--geel), transparent);
}

.hero-content {
  padding: 28px 24px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-logo {
  width: 220px;      /* breedte naar keuze */
  height: auto;      /* hoogte schaalt mee op de juiste verhouding */
  display: block;    /* voorkomt baseline-ruimte onder inline images */
  max-width: 100%;   /* nooit breder dan de container */
}

.hero-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--zwart);
  letter-spacing: -0.02em;
}

/* Delfzijl: prijs GROOT en direct zichtbaar */
.prijs-hero {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.prijs-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--zwart);
  opacity: 0.6;
}

.prijs-groot {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.4rem, 9vw, 3.6rem);
  font-weight: 700;
  color: var(--zwart);
  line-height: 1;
  letter-spacing: -0.02em;
}

.prijs-groot span {
  font-size: 60%;
  vertical-align: super;
}

.prijs-sub {
  font-size: 0.85rem;
  color: var(--zwart);
  opacity: 0.6;
  font-weight: 500;
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--zwart);
  opacity: 0.7;
  max-width: 480px;
}

.cta-groep {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--zwart);
  color: var(--geel);
  padding: 16px 28px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.cta-btn:hover { opacity: 0.85; }

.tel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid var(--zwart);
  color: var(--zwart);
  padding: 14px 28px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}

.tel-btn:hover {
  background: var(--zwart);
  color: var(--geel);
}

/* =====================
   STRIP
   ===================== */
.strip {
  background: var(--zwart);
  color: var(--geel);
  padding: 14px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.strip-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* =====================
   BELOFTE — no-nonsense, direct
   ===================== */
.belofte {
  background: var(--grijs);
  padding: 56px 24px;
}

.belofte h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.7rem, 6vw, 2.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--zwart);
  margin-bottom: 20px;
}

.belofte h2 em {
  font-style: normal;
  color: var(--geel-dark);
}

.belofte p {
  font-size: 1rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 16px;
  max-width: 640px;
}

.belofte-img-wrap { display: none; }

/* =====================
   FOTO GRID
   ===================== */
.fotos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: var(--grijs);
  padding: 20px;
}

.foto-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.foto-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.foto-item:hover img { transform: scale(1.04); }

.foto-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--geel), transparent);
  pointer-events: none;
}

.foto-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  color: var(--zwart);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 1;
}

/* =====================
   USPs — hard, direct
   ===================== */
.usps {
  padding: 56px 24px;
  background: var(--wit);
}

.usps h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--zwart);
  margin-bottom: 8px;
  text-align: center;
}

.usps-sub {
  text-align: center;
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 40px;
}

.usp-list {
  display: flex;
  flex-direction: column;
  max-width: 640px;
  margin: 0 auto;
}

.usp-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #ddd;
}

.usp-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 48px;
  text-align: center;
  margin-top: 2px;
}

.usp-item h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--zwart);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.usp-item p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555;
}

/* =====================
   ASSORTIMENT
   ===================== */
.assortiment {
  background: var(--wit);
  padding: 56px 24px;
}

.assortiment-inner {
  max-width: 960px;
  margin: 0 auto;
}

.assortiment h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--zwart);
  margin-bottom: 8px;
  text-align: center;
}

.assortiment-sub {
  text-align: center;
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 40px;
}

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

.asso-cat {
  background: var(--grijs);
  padding: 20px 22px;
  border-top: 3px solid var(--geel);
}

.asso-cat h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--zwart);
  margin-bottom: 10px;
}

.asso-cat ul {
  list-style: none;
  padding: 0;
}

.asso-cat ul li {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #444;
  padding-left: 12px;
  position: relative;
}

.asso-cat ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--geel-dark);
  font-weight: 700;
}

.asso-note {
  text-align: center;
  font-size: 0.85rem;
  color: #999;
  margin-top: 28px;
  font-style: italic;
}

/* =====================
   KAASWIJZER
   ===================== */
.kaaswijzer {
  background: var(--zwart);
  background-image: var(--gaten-donker);
  background-repeat: repeat;
  padding: 56px 24px;
}

.kaaswijzer-inner {
  max-width: 960px;
  margin: 0 auto;
}

.kaaswijzer h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--geel);
  margin-bottom: 8px;
  text-align: center;
}

.kaaswijzer-sub {
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.95rem;
  margin-bottom: 40px;
}

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

.kwz-item {
  background: rgba(255,255,255,0.04);
  border-top: 3px solid var(--geel);
  padding: 24px 20px;
}

.kwz-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.kwz-item h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--geel);
  margin-bottom: 12px;
}

.kwz-item p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}

.kwz-item ul {
  list-style: none;
  padding: 0;
  margin-bottom: 12px;
}

.kwz-item ul li {
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  padding-left: 14px;
  position: relative;
}

.kwz-item ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--geel);
  font-weight: 700;
}

.kwz-item ul li strong {
  color: rgba(255,255,255,0.9);
}

.kwz-tip {
  font-size: 0.85rem !important;
  color: rgba(255,255,255,0.4) !important;
  font-style: italic;
  border-left: 2px solid var(--geel);
  padding-left: 12px !important;
}

/* =====================
   FAQ
   ===================== */
.faq {
  background: var(--grijs);
  padding: 56px 24px;
}

.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--zwart);
  margin-bottom: 32px;
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid #d5d5d5;
}

.faq-item summary {
  font-size: 1rem;
  font-weight: 700;
  color: var(--zwart);
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--geel-dark);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #444;
  padding-bottom: 18px;
}

/* =====================
   OPENINGSTIJDEN
   ===================== */
.info {
  background: var(--zwart);
  color: white;
  padding: 56px 24px;
}

.info h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--geel);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.tijden {
  list-style: none;
  margin-bottom: 48px;
}

.tijden li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 1rem;
}

.tijden .dag { font-weight: 600; }
.tijden .open { color: var(--geel); font-weight: 700; }
.tijden .dicht { color: rgba(255,255,255,0.25); font-size: 0.9rem; }

.adres-blok { margin-bottom: 32px; }

.adres-blok p {
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  font-size: 1rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.2s;
}

.contact-link:hover { color: var(--geel); }

.route-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--geel);
  color: var(--zwart);
  padding: 16px 28px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.route-btn:hover { background: var(--geel-dark); }

/* =====================
   SOCIAL
   ===================== */
.social {
  background: var(--geel);
  padding: 40px 24px;
  text-align: center;
}

.social p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--zwart);
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  margin: 0 auto;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--zwart);
  color: var(--geel);
  padding: 14px 24px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  transition: opacity 0.2s;
}

.social-links a:hover { opacity: 0.8; }

/* =====================
   FOOTER
   ===================== */
footer {
  background: var(--zwart);
  background-image: var(--gaten-donker);
  background-repeat: repeat;
  color: rgba(255,255,255,0.3);
  text-align: center;
  padding: 20px 24px;
  font-size: 0.78rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

footer a { color: inherit; }

/* =====================
   ANIMATIE
   ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content > * {
  animation: fadeUp 0.5s ease both;
}
.hero-content > *:nth-child(1) { animation-delay: 0.05s; }
.hero-content > *:nth-child(2) { animation-delay: 0.12s; }
.hero-content > *:nth-child(3) { animation-delay: 0.2s; }
.hero-content > *:nth-child(4) { animation-delay: 0.28s; }
.hero-content > *:nth-child(5) { animation-delay: 0.36s; }

/* =====================
   SCROLL REVEAL
   ===================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 480px) {
  .asso-grid { grid-template-columns: 1fr 1fr; }
}

/* =====================
   DESKTOP (768px+)
   ===================== */
@media (min-width: 768px) {

  .hero {
    flex-direction: row;
    min-height: 100vh;
  }

  .hero-foto {
    order: 2;
    width: 50%;
    aspect-ratio: unset;
    align-self: stretch;
  }

  .hero-foto::after { display: none; }

  .hero-content {
    order: 1;
    width: 50%;
    padding: 60px 64px;
    justify-content: center;
  }

  .hero-logo { width: 220px; }

  .cta-groep {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cta-btn, .tel-btn { width: auto; }

  .strip {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
    padding: 16px 40px;
  }

  .belofte {
    padding: 100px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .belofte-img-wrap {
    display: block;
    position: relative;
  }

  .belofte-img-wrap::before {
    content: '';
    position: absolute;
    top: -14px; left: -14px;
    right: 14px; bottom: 14px;
    border: 3px solid var(--geel);
  }

  .belofte-img-wrap img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  .fotos {
    grid-template-columns: repeat(4, 1fr);
    padding: 24px;
    gap: 16px;
  }

  .usps { padding: 100px 80px; }
  .usp-list { max-width: 760px; }

  .assortiment { padding: 100px 80px; }
  .asso-grid { grid-template-columns: repeat(3, 1fr); }

  .kaaswijzer { padding: 100px 80px; }

  .kwz-grid { grid-template-columns: 1fr 1fr; gap: 20px; }

  .faq { padding: 100px 80px; }

  .info {
    padding: 100px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .social-links {
    flex-direction: row;
    max-width: none;
    justify-content: center;
  }

  .social-links a { width: 200px; }
}

@media (min-width: 1200px) {
  .hero-content { padding: 80px 80px; }
  .kwz-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =====================
   COOKIE BANNER
   ===================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--zwart);
  background-image: var(--gaten-donker);
  background-repeat: repeat;
  border-top: 2px solid var(--geel);
  padding: 20px 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
}

.cookie-banner[hidden] { display: none; }

.cookie-banner-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.cookie-tekst {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.cookie-knoppen {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px 22px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.cookie-btn:hover { opacity: 0.85; }

.cookie-btn--accepteren {
  background: var(--geel);
  color: var(--zwart);
}

.cookie-btn--weigeren {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
}

.cookie-btn--weigeren:hover {
  color: white;
  border-color: rgba(255,255,255,0.5);
  opacity: 1;
}

@media (min-width: 640px) {
  .cookie-banner-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-tekst { flex: 1; }
  .cookie-knoppen { flex-shrink: 0; }
}
