/* ==========================================================================
   AD Delhaize Lebbeke, statische omzetting van addelhaizelebbeke.be
   Structuur en secties volgen de live site. Kleuren staan hieronder in :root.
   ========================================================================== */

:root {
  --rood: #C8102E;
  --rood-diep: #90071F;
  --wit: #FFFFFF;
  --room: #F7F4EF;
  --inkt: #1B1918;
  --inkt-zacht: #5E5853;
  --lijn: #E5DED4;
  --open: #2F6B3C;

  --display: 'Bricolage Grotesque', 'Trebuchet MS', sans-serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --breedte: 1200px;
  --radius: 12px;
  --schaduw: 0 1px 3px rgba(27,25,24,.05), 0 10px 26px rgba(27,25,24,.07);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }

body {
  margin: 0;
  background: var(--room);
  color: var(--inkt);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--rood); text-underline-offset: 3px; }
a:hover { color: var(--rood-diep); }
:focus-visible { outline: 3px solid var(--open); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3 { font-family: var(--display); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; margin: 0 0 .5em; }
h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; }

.wrap { width: min(100% - 2.5rem, var(--breedte)); margin-inline: auto; }
.eyebrow { font-size: .75rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--rood); margin: 0 0 .8rem; }
.lead { font-size: 1.12rem; color: var(--inkt-zacht); max-width: 62ch; }
.visueel-verborgen { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ----------------------------------------------------- Tijdelijke melding */

.melding {
  background: #2F6B3C;
  color: #fff;
  text-align: center;
  font-size: .9rem;
  padding: .6rem 1rem;
  line-height: 1.4;
}
.melding strong { font-weight: 700; }
.melding a { color: #fff; text-decoration: underline; }

/* --------------------------------------------------------------- Topbalk */

.topbalk { background: var(--inkt); color: #E7E1D9; font-size: .82rem; }
.topbalk .wrap { display: flex; flex-wrap: wrap; gap: .3rem 1.5rem; justify-content: space-between; padding: .5rem 0; }
.topbalk a { color: #E7E1D9; text-decoration: none; }
.topbalk a:hover { color: #fff; text-decoration: underline; }

/* ------------------------------------------------------------------- Kop */

.kop { position: sticky; top: 0; z-index: 60; background: rgba(247,244,239,.94); backdrop-filter: blur(8px); border-bottom: 1px solid var(--lijn); }
.kop .wrap { display: flex; align-items: center; gap: 1rem; justify-content: space-between; padding: .7rem 0; }

.logo { display: flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--inkt); flex: none; }
.logo img { height: 46px; width: auto; }
.logo-merk { font-family: var(--display); font-weight: 800; font-size: 1.05rem; line-height: 1; letter-spacing: -.02em; }
.logo-plaats { display: block; font-size: .66rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--rood); }

nav ul { display: flex; flex-wrap: wrap; gap: .1rem .95rem; list-style: none; margin: 0; padding: 0; }
nav a { color: var(--inkt); text-decoration: none; font-weight: 500; font-size: .88rem; padding: .3rem 0; border-bottom: 2px solid transparent; white-space: nowrap; }
nav a:hover { border-bottom-color: var(--lijn); }
nav a[aria-current="page"] { color: var(--rood); border-bottom-color: var(--rood); }

.taal { display: flex; gap: .3rem; align-items: center; font-size: .8rem; flex: none; }
.taal a { text-decoration: none; color: var(--inkt-zacht); padding: .15rem .4rem; border-radius: 5px; }
.taal a[aria-current="true"] { background: var(--rood); color: #fff; font-weight: 600; }

.menuknop { display: none; background: none; border: 1px solid var(--lijn); border-radius: 8px; padding: .5rem .8rem; font: inherit; font-size: .88rem; cursor: pointer; }

/* ------------------------------------------------------------------ Knop */

.knop {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--rood); color: #fff; border: 0; border-radius: 999px;
  padding: .78rem 1.5rem; font: inherit; font-weight: 600; font-size: .95rem;
  text-decoration: none; cursor: pointer; transition: background .18s, transform .18s;
}
.knop:hover { background: var(--rood-diep); color: #fff; transform: translateY(-1px); }
.knop--licht { background: transparent; color: var(--inkt); border: 1.5px solid var(--inkt); }
.knop--licht:hover { background: var(--inkt); color: var(--room); }
.knop--wit { background: #fff; color: var(--rood); }
.knop--wit:hover { background: #F2E7E9; color: var(--rood-diep); }

/* ------------------------------------------------------------------ Hero */

.hero {
  position: relative;
  color: #fff;
  padding: 5.5rem 0 4.5rem;
  background: #2A2320;
  overflow: hidden;
}
.hero-slider { position: absolute; inset: 0; }
.hero-dia { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.2s ease; }
.hero-dia.is-actief { opacity: 1; }
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,17,16,.9) 0%, rgba(20,17,16,.7) 55%, rgba(20,17,16,.4) 100%);
}
.hero > .wrap { position: relative; z-index: 2; }
.hero h1 { color: #fff; }
.hero .lead { color: #E4DDD4; }
.hero .eyebrow { color: #F5A3AE; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.hero-acties { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }

/* Openingsurenkaart met live status */
.status { background: var(--wit); color: var(--inkt); border: 1px solid var(--lijn); border-radius: var(--radius); box-shadow: var(--schaduw); padding: 1.5rem 1.6rem; }
.status-kop { display: flex; align-items: center; gap: .6rem; font-family: var(--display); font-size: 1.25rem; font-weight: 700; margin: 0 0 1rem; }
.stip { width: 11px; height: 11px; border-radius: 50%; background: var(--inkt-zacht); flex: none; }
.stip.open { background: var(--open); box-shadow: 0 0 0 4px rgba(47,107,60,.16); }
.stip.dicht { background: var(--rood); box-shadow: 0 0 0 4px rgba(200,16,46,.14); }

.uren { list-style: none; margin: 0; padding: 0; }
.uren li { display: flex; justify-content: space-between; gap: 1rem; padding: .4rem 0; border-bottom: 1px dashed var(--lijn); font-size: .95rem; }
.uren li:last-child { border-bottom: 0; }
.uren li.vandaag { font-weight: 700; color: var(--rood); }
.uren .dag { text-transform: capitalize; }
.uren .dicht { color: var(--inkt-zacht); }

/* --------------------------------------------------------------- Secties */

section { padding: 4rem 0; }
.sectie-kop { max-width: 62ch; margin-bottom: 2.2rem; }
.vlak-wit { background: var(--wit); }
.vlak-donker { background: var(--inkt); color: var(--room); }
.vlak-donker h2, .vlak-donker h3 { color: #fff; }
.vlak-donker p { color: #C6BFB6; }
.vlak-donker .eyebrow { color: #F5A3AE; }
.vlak-rood { background: var(--rood); color: #fff; }
.vlak-rood h2, .vlak-rood h3 { color: #fff; }
.vlak-rood p { color: #FBE6E9; }
.vlak-rood .eyebrow { color: #FFD3D9; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.raster { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.3rem; }

.kaart { background: var(--wit); border: 1px solid var(--lijn); border-radius: var(--radius); padding: 1.5rem; }
.kaart h3 { margin-bottom: .35rem; }
.kaart p { color: var(--inkt-zacht); font-size: .94rem; margin: 0; }

.beeld { border-radius: var(--radius); overflow: hidden; box-shadow: var(--schaduw); }
.beeld img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }

/* -------------------------------------------------- Promo's en magazines */

.promo-balk { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: space-between; align-items: center; margin-bottom: 1.6rem; }
.promo-raster { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 1.4rem; }
.folder { background: var(--wit); border: 1px solid var(--lijn); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: transform .18s, box-shadow .18s; }
.folder:hover { transform: translateY(-3px); box-shadow: var(--schaduw); color: inherit; }
.folder img { aspect-ratio: 3 / 4; object-fit: cover; background: var(--room); width: 100%; }
.folder-tekst { padding: .9rem 1rem 1.1rem; }
.folder-titel { font-family: var(--display); font-weight: 700; font-size: .98rem; line-height: 1.25; margin: 0 0 .3rem; }
.folder-datum { font-size: .8rem; color: var(--inkt-zacht); margin: 0; }
.folder-badge { display: inline-block; background: var(--rood); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .2rem .5rem; border-radius: 4px; margin-bottom: .5rem; }

/* ------------------------------------------------------------ Bestel CTA */

.cta-blok { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.cta-logo { max-width: 260px; }

/* --------------------------------------------------------------- Fotoalbum */

.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.8rem; }
.filter {
  background: var(--wit); border: 1px solid var(--lijn); border-radius: 999px;
  padding: .45rem 1.1rem; font: inherit; font-size: .88rem; font-weight: 500; cursor: pointer;
}
.filter[aria-pressed="true"] { background: var(--rood); border-color: var(--rood); color: #fff; font-weight: 600; }
.galerij { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.galerij figure { margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--wit); border: 1px solid var(--lijn); }
.galerij img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.galerij figcaption { font-size: .82rem; color: var(--inkt-zacht); padding: .6rem .8rem; }

/* -------------------------------------------------------------- Formulier */

.formulier { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.veld { display: grid; gap: .3rem; }
.veld--breed { grid-column: 1 / -1; }
.veld label { font-size: .84rem; font-weight: 600; }
.veld input, .veld textarea, .veld select {
  font: inherit; padding: .7rem .85rem; border: 1px solid var(--lijn);
  border-radius: 9px; background: var(--wit); color: var(--inkt); width: 100%;
}
.veld textarea { min-height: 140px; resize: vertical; }
.keuzes { display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; }
.keuzes label { font-weight: 400; font-size: .93rem; display: inline-flex; align-items: center; gap: .4rem; }
fieldset { border: 1px solid var(--lijn); border-radius: var(--radius); padding: 1rem 1.2rem; margin: 0; background: var(--wit); }
fieldset.veld--breed { grid-column: 1 / -1; }
legend { font-size: .84rem; font-weight: 600; padding: 0 .4rem; }
.hint { font-size: .8rem; color: var(--inkt-zacht); }

/* ---------------------------------------------------------------- Contact */

.contact-raster { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.gegevens { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.gegevens li { padding: .5rem 0; border-bottom: 1px solid var(--lijn); }
.gegevens strong { display: block; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--inkt-zacht); }
.kaart-embed { border: 0; width: 100%; min-height: 360px; height: 100%; border-radius: var(--radius); }
.sociaal { display: flex; flex-wrap: wrap; gap: .6rem; list-style: none; padding: 0; margin: 0 0 1.5rem; }
.sociaal a { display: inline-block; border: 1px solid var(--lijn); border-radius: 999px; padding: .4rem 1rem; font-size: .88rem; text-decoration: none; color: var(--inkt); background: var(--wit); }
.sociaal a:hover { border-color: var(--rood); color: var(--rood); }

.juridisch { font-size: .86rem; color: var(--inkt-zacht); }

/* ----------------------------------------------------------------- Voet */

.voet { background: var(--inkt); color: #B4ADA4; padding: 3.2rem 0 2rem; font-size: .9rem; }
.voet a { color: #E7E1D9; text-decoration: none; }
.voet a:hover { text-decoration: underline; }
.voet h3 { font-family: var(--body); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: #fff; }
.voet-raster { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.2rem; border-bottom: 1px solid #322F2C; }
.voet ul { list-style: none; margin: 0; padding: 0; }
.voet li { padding: .22rem 0; }
.voet-slot { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; padding-top: 1.4rem; font-size: .8rem; }

/* ----------------------------------------------------------- Responsive */

@media (max-width: 1050px) {
  nav a { font-size: .84rem; }
}

/* ------------------------------------------------------- Dropdown "Meer" */

nav li.dropdown { position: relative; }
nav .dropdown-knop {
  background: none; border: 0; font: inherit; color: var(--inkt);
  font-weight: 500; font-size: .88rem; padding: .3rem 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: .3rem;
  border-bottom: 2px solid transparent; white-space: nowrap;
}
nav .dropdown-knop:hover { border-bottom-color: var(--lijn); }
nav .dropdown-knop::after { content: "\25BE"; font-size: .7em; opacity: .7; }
nav .dropdown-menu {
  position: absolute; top: 100%; right: 0; margin-top: .5rem;
  background: var(--wit); border: 1px solid var(--lijn); border-radius: 10px;
  box-shadow: var(--schaduw); padding: .5rem; min-width: 210px;
  display: none; flex-direction: column; gap: 0; z-index: 70;
}
nav li.dropdown.open .dropdown-menu { display: flex; }
nav .dropdown-menu li { display: block; }
nav .dropdown-menu a {
  display: block; padding: .55rem .8rem; border-radius: 7px;
  border-bottom: 0; font-size: .9rem; white-space: nowrap;
}
nav .dropdown-menu a:hover { background: var(--room); border-bottom: 0; }
nav .dropdown-menu a[aria-current="page"] { color: var(--rood); background: var(--room); }

@media (max-width: 900px) {
  .hero-grid, .split, .contact-raster, .cta-blok, .voet-raster { grid-template-columns: 1fr; gap: 2rem; }
  .formulier { grid-template-columns: 1fr; }
  .hero { padding: 3rem 0; }
  .menuknop { display: block; }
  nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--wit); border-bottom: 1px solid var(--lijn); padding: 1rem 1.25rem 1.4rem; max-height: 70vh; overflow-y: auto; }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 0; }
  nav a { display: block; padding: .6rem 0; border-bottom: 1px solid var(--lijn); }

  nav li.dropdown { position: static; }
  nav .dropdown-knop { display: none; }
  nav li.dropdown .dropdown-menu {
    display: flex; position: static; box-shadow: none; border: 0;
    padding: 0; margin: 0; min-width: 0;
  }
  nav .dropdown-menu a { padding: .6rem 0; border-bottom: 1px solid var(--lijn); border-radius: 0; }

}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}


/* ---------------------------------------------------------- Faciliteiten */

.fac-groep { margin-bottom: 2.2rem; }
.fac-groep h3 { font-family: var(--body); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--inkt-zacht); margin-bottom: .9rem; }
.fac-lijst { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: .6rem; list-style: none; margin: 0; padding: 0; }
.fac-lijst li { display: flex; align-items: center; gap: .7rem; background: var(--wit); border: 1px solid var(--lijn); border-radius: 10px; padding: .6rem .8rem; font-size: .9rem; }
.fac-lijst img { width: 34px; height: 34px; object-fit: contain; flex: none; }


/* ------------------------------------------------- Prijslijsten traiteur */

.prijs-blok { margin-bottom: 3rem; }
.prijs-blok h3 { font-family: var(--display); font-size: 1.25rem; color: var(--rood); margin-bottom: .5rem; }
.prijs-intro { font-size: .92rem; color: var(--inkt-zacht); max-width: 70ch; margin-bottom: 1.2rem; }
.prijs-lijst { list-style: none; margin: 0; padding: 0; }
.prijs-lijst li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1.5rem;
  padding: .7rem 0; border-bottom: 1px dashed var(--lijn);
}
.prijs-lijst li:last-child { border-bottom: 0; }
.prijs-naam { font-weight: 600; }
.prijs-uitleg { display: block; font-size: .88rem; color: var(--inkt-zacht); max-width: 60ch; }
.prijs-bedrag { font-family: var(--display); font-weight: 700; white-space: nowrap; }

.allergenen { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: .5rem; }
.allergenen li { display: flex; align-items: center; gap: .6rem; background: var(--room); border: 1px solid var(--lijn); border-radius: 9px; padding: .5rem .7rem; font-size: .92rem; }
.allergeen-nr { display: grid; place-items: center; width: 26px; height: 26px; flex: none; border-radius: 50%; background: var(--rood); color: #fff; font-size: .78rem; font-weight: 700; }


/* ------------------------------------------------------------- Recepten */

.recepten { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.1rem; }
.recept {
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  background: var(--wit); border: 1px solid var(--lijn); border-radius: var(--radius);
  overflow: hidden; transition: transform .18s, box-shadow .18s;
}
.recept:hover { transform: translateY(-3px); box-shadow: var(--schaduw); color: inherit; }
.recept img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: var(--room); }
.recept-titel { padding: .8rem .9rem 1rem; font-weight: 600; font-size: .92rem; line-height: 1.35; }


/* --------------------------------------------------- Gerechten allergenen */

.gerecht { background: var(--wit); border: 1px solid var(--lijn); border-radius: var(--radius); margin-bottom: .8rem; overflow: hidden; }
.gerecht summary {
  cursor: pointer; padding: 1rem 1.3rem; font-family: var(--display); font-weight: 700;
  font-size: 1.05rem; list-style: none; display: flex; align-items: center; justify-content: space-between;
}
.gerecht summary::-webkit-details-marker { display: none; }
.gerecht summary::after { content: "+"; font-size: 1.4rem; color: var(--rood); font-weight: 400; }
.gerecht[open] summary::after { content: "\2212"; }
.gerecht summary:hover { color: var(--rood); }
.gerecht-inhoud { padding: 0 1.3rem 1.2rem; border-top: 1px solid var(--lijn); }
.gerecht-inhoud p { font-size: .9rem; color: var(--inkt-zacht); margin: .8rem 0 0; }
.gerecht-inhoud strong { color: var(--inkt); }


/* ------------------------------------------ Contactblok i.p.v. formulier */

.contactkaart {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  padding: 2rem 2.2rem;
  max-width: 620px;
  box-shadow: var(--schaduw);
}
.contactkaart h3 { margin-top: 0; }
.contactkaart .knop { margin-top: .5rem; }
.contactkaart .gegevens { margin-bottom: 1.5rem; }


/* --------------------------------------------------- Folders laadstatus */

.folder-laden { color: var(--inkt-zacht); font-size: .95rem; padding: 1rem 0; grid-column: 1 / -1; }
.folder-laden a { color: var(--rood); text-decoration: underline; }
