/* =========================
   RESET + BASIS
   ========================= */
/* Reset: haalt standaard margins/paddings weg en maakt box sizing voorspelbaar */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: 700; /* jij wilde overal vet */
}

/* Basis link/image gedrag (super handig) */
a{ color: inherit; text-decoration: none; }
img{ display: block; max-width: 100%; }

/* (Optioneel) smooth scroll als je anchor links gebruikt */
html{ scroll-behavior: smooth; }


/* ===== Responsive helpers ===== */
.desktop-only{ display: flex; }
.mobile-only{ display: none; }

@media (max-width: 820px){
  .desktop-only{ display: none !important; }
  .mobile-only{ display: inline-flex !important; }

  /* op mobiel: grid zodat hamburger rechts past */
  .navbar{
    padding: 0 18px;
    grid-template-columns: 1fr auto 1fr; /* logo blijft mooi center */
  }
}

/* =========================
   NAVBAR (fixed + glass)
   ========================= */
.navbar{
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 72px;
  z-index: 50;

  display: grid;
  grid-template-columns: 1fr auto 1fr; /* links - logo - rechts */
  align-items: center;

  padding: 0 40px;

  background: rgba(10,10,10,0.18);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Links: knoppen naast elkaar */
.nav-left{
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Center: logo echt in het midden */
.nav-center{ justify-self: center; }

/* Rechts */
.nav-right{
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Navbar links */
.nav-btn{
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  text-decoration: none;
}

.nav-btn:hover{
  border-bottom-color: rgba(255,255,255,0.7);
}

/* Rond logo “WG” */
.logo-mark{
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;

  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.92);

  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;

  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
  text-decoration: none;
}

/* Navbar scrolled state */
.navbar.scrolled{
  background: rgba(248,246,243,0.95);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.navbar.scrolled a{
  color: #1a1814;
}

/* =========================
   MOBILE MENU (hamburger + side menu)
   ========================= */

/* Hamburger: standaard verbergen (desktop) */
.hamburger{
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;

  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;

  margin-left: 10px;
}

.hamburger span{
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.92);
  border-radius: 2px;
}

/* Overlay */
.menu-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
  z-index: 60;
}

/* Side menu */
.side-menu{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(86vw, 360px);

  background: rgba(15,15,15,0.96);
  backdrop-filter: blur(10px);
  border-left: 1px solid rgba(255,255,255,0.08);

  transform: translateX(100%);
  transition: transform .22s ease;
  z-index: 70;

  padding: 18px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.side-menu-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.side-title{
  color: rgba(255,255,255,0.92);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
}

.menu-close{
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.92);
  font-size: 20px;
  cursor: pointer;
}

.side-link{
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;

  padding: 12px 10px;
  border-radius: 12px;
}
.side-link:hover{
  background: rgba(255,255,255,0.08);
}

/* Open state */
.menu-open .menu-overlay{
  opacity: 1;
  pointer-events: auto;
}
.menu-open .side-menu{
  transform: translateX(0);
}

/* =========================
   MOBILE BEHAVIOR
   ========================= */
@media (max-width: 768px){

  /* Logo perfect gecentreerd: nav-left blijft ruimte innemen maar is onzichtbaar */
  .nav-left{
    visibility: hidden;
  }

  /* Atelier link weg op mobiel (menu zit in side menu) */
  .desktop-link{
    display: none !important;
  }

  /* Hamburger tonen op mobiel */
  .hamburger{
    display: inline-flex;
  }
}

/* Hamburger wordt donker wanneer navbar scrolled is */
.navbar.scrolled .hamburger span{
  background: #1a1814;
}

/* =========================
   HERO (full screen image + gradient overlay)
   ========================= */
.hero{
  position: relative;
  height: 100vh;         /* desktop */
  min-height: 100svh;    /* mobiel “safe height” */
  width: 100%;
  overflow: hidden;
}

/* Achtergrondfoto in hero */
.hero-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03); /* mini cinematic zoom */
}

/* Gradient overlay: maakt tekst leesbaar */
.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.38) 35%,
    rgba(0,0,0,0.55) 100%
  );
}

/* Tekst in hero (gecentreerd) */
.hero-text{
  position: relative;
  z-index: 2;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  color: #fff;
  padding: 0 24px;

  max-width: 900px;
  margin: 0 auto;
}

.hero-text h1{
  font-size: clamp(42px, 6vw, 84px);
  letter-spacing: 1.2px;
  line-height: 1.05;
  margin: 0 0 14px 0;
  text-shadow: 0 10px 30px rgba(0,0,0,0.55);
}

.hero-text p{
  font-size: clamp(16px, 2vw, 22px);
  letter-spacing: 0.6px;
  opacity: 0.92;
  text-shadow: 0 8px 22px rgba(0,0,0,0.45);
}

/* Optionele CTA knop in hero */
.hero-cta{
  margin-top: 24px;
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: #16110c;
  font-weight: 600; /* klein verschil mag voor knop */
}
.hero-cta:hover{ background: #fff; }


/* =========================
   TIMELINE (jouw “Ons verhaal” blok)
   ========================= */
.timeline{
  padding: 110px 24px;
  background: #f8f6f3;
}

.timeline-head{
  max-width: 1100px;
  margin: 0 auto 50px auto;
}

.timeline-head h2{
  font-size: clamp(28px, 3vw, 44px);
  margin: 0 0 10px 0;
}
.timeline-head p{
  opacity: 0.8;
  line-height: 1.6;
  max-width: 700px;
}

/* timeline items */
.timeline-items{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

/* 1 item rij */
.t-item{
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;

  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
}

/* item omgekeerd (beeld links, tekst rechts) */
.t-item.t-reverse{ grid-template-columns: 0.9fr 1.1fr; }
.t-item.t-reverse .t-card{ order: 2; }
.t-item.t-reverse .t-media{ order: 1; }

/* tekst card */
.t-card{ padding: 18px; }

/* datum label */
.t-date{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 800;
  opacity: 0.85;
  margin-bottom: 10px;
}

/* puntje bij datum */
.t-date::before{
  content:"";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #16110c;
  box-shadow: 0 0 0 6px rgba(22,17,12,0.12);
}

.t-card h3{
  margin: 0 0 10px 0;
  font-size: 22px;
}
.t-card p{
  line-height: 1.7;
  opacity: 0.85;
  max-width: 520px;
}

/* media (foto) */
.t-media{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
.t-media img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  transform: scale(1.02);
}

/* decoratief ribbon + pijltje (desktop) */
.t-item::after{
  content:"";
  position: absolute;
  top: 50%;
  right: -70px;
  width: 180px;
  height: 180px;
  transform: translateY(-50%) rotate(45deg);
  background: linear-gradient(135deg,
    rgba(22,17,12,0.00) 0%,
    rgba(22,17,12,0.10) 40%,
    rgba(22,17,12,0.00) 70%
  );
}
.t-item::before{
  content:"➜";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  opacity: 0.18;
}
.t-item.t-reverse::before{
  left: 22px;
  right: auto;
  transform: translateY(-50%) rotate(180deg);
}


/* =========================
   PRODUCT VAN DE WEEK + SUGGESTIE
   ========================= */
.weekly-highlight{ margin: 90px 24px; }

.wh-inner{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px;
}

/* main card */
.wh-main{
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(255,255,255,0.95);
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(26,24,20,0.10);
  box-shadow: 0 25px 65px rgba(0,0,0,0.10);
}

.wh-media{
  background: #f8f6f3;
  display: grid;
  place-items: center;
  object-fit: contain;
}
.wh-media img{
  width: 100%;
  height: 100%;
  object-fit: contain; /* perfect voor PNG */
  padding: 28px;
}

.wh-content{ padding: 36px; }

.wh-label{
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(26,24,20,0.75);
}

.wh-content h2{ margin: 0 0 12px 0; font-size: 34px; }
.wh-content p{
  margin: 0 0 22px 0;
  line-height: 1.7;
  color: rgba(26,24,20,0.75);
}

/* side card */
.wh-side{
  background: rgba(26,24,20,0.06);
  border-radius: 26px;
  padding: 32px;
  border: 1px solid rgba(26,24,20,0.10);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wh-side h3{ margin: 8px 0 10px 0; font-size: 22px; }
.wh-side p{
  margin: 0 0 14px 0;
  color: rgba(26,24,20,0.72);
  line-height: 1.6;
}

.wh-label.muted{ color: rgba(26,24,20,0.55); }


/* =========================
   CHEF'S CHOICE GRID
   ========================= */
.chefs-choice{ margin: 80px 24px; }

.cc-inner{
  max-width: 1100px;
  margin: 0 auto;
}

.cc-head{
  text-align: center;
  margin-bottom: 22px;
}

.cc-eyebrow{
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(26,24,20,0.55);
}

.cc-head h2{ margin: 0 0 10px 0; font-size: 34px; }
.cc-head p{
  margin: 0 auto;
  max-width: 650px;
  color: rgba(26,24,20,0.72);
  line-height: 1.65;
}

.cc-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.cc-card{
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(26,24,20,0.10);
  box-shadow: 0 18px 55px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.cc-thumb{
  height: 210px;
  background: #f8f6f3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 18px;          /* 👈 padding hier */
  box-sizing: border-box; /* 👈 belangrijk */
}

.cc-thumb img{
  width: auto;           
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center; /* 👈 force center */
  display: block;
}

.cc-body{ padding: 18px; }

.cc-tags{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.cc-card h3{ margin: 0 0 8px 0; font-size: 20px; }
.cc-card p{
  margin: 0 0 16px 0;
  color: rgba(26,24,20,0.72);
  line-height: 1.6;
}

/* als je links in cards hebt */
.cc-card a{ color: #16110c; }


/* =========================
   CONTACT BLOCK (herbruikbaar op alle pagina’s)
   ========================= */
.contact-block{ padding: 64px 24px; }

.contact-wrap{
  max-width: 1100px;
  margin: 0 auto;
}

.contact-head h2{ margin: 0 0 6px 0; font-size: 34px; }
.contact-head p{
  margin: 0 0 22px 0;
  color: rgba(26,24,20,0.72);
  line-height: 1.6;
}

.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 18px;
}

.contact-card{
  border-radius: 18px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(26,24,20,0.10);
  box-shadow: 0 18px 55px rgba(0,0,0,0.08);
  padding: 20px;
}

.contact-card h3{
  margin: 0 0 14px 0;
  font-size: 18px;
  letter-spacing: 0.6px;
}

.contact-card a{ color: #16110c; }

.contact-list{
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}

.contact-list li{
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(26,24,20,0.08);
}
.contact-list li:last-child{ border-bottom: 0; }

.contact-list .label{
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 11px;
  opacity: 0.8;
}

.contact-list .value a{
  border-bottom: 1px solid rgba(26,24,20,0.25);
}

.contact-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* openingsuren */
.hours-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 10px;
}

.hours-col{
  border: 1px solid rgba(26,24,20,0.08);
  border-radius: 14px;
  padding: 14px;
  background: rgba(26,24,20,0.03);
}

.hours-title{
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
  margin-bottom: 10px;
}

.hours{
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours li{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(26,24,20,0.08);
  font-size: 14px;
}
.hours li:last-child{ border-bottom: 0; }

.hours li span:first-child{
  font-weight: 900;
  width: 28px;
}

.hours-note{
  margin: 14px 0 0 0;
  font-size: 12px;
  color: rgba(26,24,20,0.70);
  line-height: 1.55;
}


/* =========================
   TO TOP BUTTON
   ========================= */
.to-top{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border-radius: 999px;

  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(26,24,20,0.65);
  color: rgba(255,255,255,0.95);

  display: grid;
  place-items: center;

  cursor: pointer;
  z-index: 9999;
  backdrop-filter: blur(10px);

  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.to-top.show{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.to-top:hover{ background: rgba(26,24,20,0.85); }


/* =========================
   FOOTER
   ========================= */
.footer{
  padding: 28px 24px;
  border-top: 1px solid rgba(26,24,20,0.10);
  background: rgba(255,255,255,0.65);
}

/* Desktop layout */
.footer-inner{
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: rgba(26,24,20,0.75);
  text-align: center;
}

.footer-inner a{
  color: rgba(26,24,20,0.75);
  text-decoration: none;
}
.footer-inner a:hover{
  text-decoration: underline;
}

.footer-legal{
  margin-top: 10px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(26,24,20,0.55);
}

.footer-legal a{
  color: rgba(26,24,20,0.55);
  text-decoration: none;
}
.footer-legal a:hover{
  text-decoration: underline;
}

/* =========================
   MOBILE OPTIMALISATIE
   ========================= */
@media (max-width: 768px){

  .footer{
    padding: 32px 18px;
  }

  /* Hoofdtekst onder elkaar */
  .footer-inner{
    flex-direction: column;
    gap: 6px;
    font-size: 0.9rem;
  }

  /* Puntjes verbergen op mobiel */
  .footer .dot{
    display: none;
  }

  /* Legal links rustiger & leesbaarder */
  .footer-legal{
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.8rem;
  }
}


/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 900px){
  /* timeline */
  .t-item,
  .t-item.t-reverse{ grid-template-columns: 1fr; }
  .t-item.t-reverse .t-card,
  .t-item.t-reverse .t-media{ order: initial; }
  .t-media img{ height: 220px; }
  .t-item::before,
  .t-item::after{ display: none; }

  /* contact */
  .contact-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 980px){
  /* weekly highlight */
  .wh-inner{ grid-template-columns: 1fr; }
  .wh-main{ grid-template-columns: 1fr; }

  /* chefs choice */
  .cc-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px){
  .navbar{ padding: 0 18px; }
  .nav-left{ gap: 16px; } /* FIX: jij had nav-links */
  .nav-btn{ font-size: 12px; }
}

@media (max-width: 640px){
  .cc-grid{ grid-template-columns: 1fr; }
  .cc-thumb{ height: 220px; }
  .hours-grid{ grid-template-columns: 1fr; }
}
