@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@300;400;500;600&family=Caveat:wght@700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:  #0D0D0D;
  --white:  #FFFFFF;
  --green:  #1B3A2D;
  --dgreen: #2D5A40;
  --cream:  #F4F4F0;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 5vw;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-left { display: flex; align-items: center; gap: 12px; }
.nav-logo { width: 38px; height: 38px; }
.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 4px;
  color: var(--white);
  text-decoration: none;
}
.nav-brand span { color: var(--dgreen); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.nav-wa {
  background: var(--dgreen);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 3px;
  font-weight: 400;
}
.nav-wa:hover { background: var(--green); }
@media (max-width: 720px) { .nav-links a:not(.nav-wa) { display: none; } }

/* ── HERO ── */
header {
  min-height: 100svh;
  background:
    linear-gradient(180deg, rgba(13,20,15,0.72) 0%, rgba(27,58,45,0.68) 55%, rgba(13,13,13,0.88) 100%),
    url('https://d8j0ntlcm91z4.cloudfront.net/user_3DuWcTP92vO8QM0Bip93eSrO9na/hf_20260804_184851_3e73d8d7-5fc5-4350-a959-85bd6aac5c46_min.webp') center/cover no-repeat,
    var(--green);
  /* Placeholder-foto — vervang de url() hierboven door een echte foto van de zaak */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 20px 70px;
  position: relative;
  overflow: hidden;
}
.hero-logo { width: min(320px, 64vw); margin-bottom: 12px; filter: drop-shadow(0 12px 34px rgba(0,0,0,0.45)); }
.hero-tag {
  font-family: 'Caveat', cursive;
  font-size: clamp(22px, 3.5vw, 30px);
  color: rgba(255,255,255,0.75);
}
.hero-sub {
  font-size: clamp(12px, 1.6vw, 14px);
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 14px;
}
.hero-cta { display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; justify-content: center; }
.btn {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 3px;
  transition: all .2s;
}
.btn-solid { background: var(--white); color: var(--green); font-weight: 500; }
.btn-solid:hover { background: var(--cream); }
.btn-ghost { border: 1px solid rgba(255,255,255,0.4); color: var(--white); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.hero-hours {
  margin-top: 42px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 24px;
}
.hero-hours span { color: rgba(255,255,255,0.45); font-size: 13px; }

/* ── SCISSOR DIVIDER ── */
.scissor-div {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 420px;
  margin: 0 auto;
  padding: 0 20px;
}
.scissor-div::before, .scissor-div::after {
  content: '';
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45,90,64,0.8));
}
.scissor-div::after { background: linear-gradient(90deg, rgba(45,90,64,0.8), transparent); }
.scissor-div svg { flex-shrink: 0; opacity: .8; }

/* ── SECTIONS ── */
section { padding: 90px 5vw; max-width: 1100px; margin: 0 auto; }
.sec-label {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: var(--dgreen);
  text-align: center;
}
.sec-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 5vw, 48px);
  letter-spacing: 6px;
  text-align: center;
  margin-bottom: 8px;
}
.sec-divider {
  width: 90px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--dgreen), transparent);
  margin: 18px auto 50px;
}

/* ── ABOUT / SHOP ── */
.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; } }
.about-logo-wrap { position: relative; }
.about-logo-wrap img { width: 100%; filter: drop-shadow(0 14px 40px rgba(0,0,0,0.5)); }
.about-logo-wrap::before {
  content: '';
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}
.about-txt h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 4px;
  margin-bottom: 14px;
}
.about-txt h3 em { font-style: normal; color: var(--dgreen); }
.about-txt p { color: rgba(255,255,255,0.7); font-size: 15px; margin-bottom: 12px; max-width: 56ch; }
.about-txt .sign { font-family: 'Caveat', cursive; font-size: 22px; color: rgba(255,255,255,0.5); margin-top: 8px; }

/* ── MENU ── */
.menu-wrap {
  background: var(--green);
  max-width: none;
  padding: 90px 5vw;
  position: relative;
  overflow: hidden;
}
.menu-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent 0, transparent 24px, rgba(0,0,0,0.07) 24px, rgba(0,0,0,0.07) 27px);
  pointer-events: none;
}
.menu-inner {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 50px clamp(20px, 5vw, 60px);
}
.menu-inner::before {
  content: '';
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
}
.menu-logo { width: 110px; margin: 0 auto 6px; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 0 56px;
  margin-top: 34px;
}
.menu-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mi-name {
  font-size: 14px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  font-weight: 400;
}
.mi-desc { display: block; font-size: 11px; letter-spacing: 1px; text-transform: none; color: rgba(255,255,255,0.4); font-weight: 300; }
.mi-dots { flex: 1; border-bottom: 1px dotted rgba(255,255,255,0.2); }
.mi-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
}
.mi-price .curr { font-family: 'Oswald', sans-serif; font-size: 13px; color: rgba(255,255,255,0.55); margin-right: 2px; }
.menu-note {
  text-align: center;
  font-family: 'Caveat', cursive;
  font-size: 19px;
  color: rgba(255,255,255,0.55);
  margin-top: 36px;
}

/* ── PERKS STRIP ── */
.perks { max-width: none; padding: 70px 5vw; }
.perks-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 34px;
  text-align: center;
}
.perk h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 3px;
  margin-bottom: 6px;
}
.perk p { font-size: 13px; color: rgba(255,255,255,0.55); letter-spacing: 1px; }
.perk .ic {
  width: 54px; height: 54px;
  margin: 0 auto 14px;
  border: 1px solid rgba(45,90,64,0.8);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--dgreen);
}

/* ── FIND US ── */
.find-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 800px) { .find-grid { grid-template-columns: 1fr; } }
.find-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 3px;
  color: var(--dgreen);
  margin: 26px 0 6px;
}
.find-info h3:first-child { margin-top: 0; }
.find-info p { font-size: 15px; color: rgba(255,255,255,0.8); }
.find-info a { color: var(--white); }
.map-wrap {
  border: 1px solid rgba(255,255,255,0.1);
  min-height: 320px;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 320px; border: 0; filter: grayscale(30%); }

.wa-big {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #0b2b16;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 3px;
  margin-top: 22px;
}
.wa-big:hover { filter: brightness(1.06); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 50px 5vw 44px;
  text-align: center;
}
.foot-logo { width: 88px; margin: 0 auto 14px; opacity: .9; }
.foot-tag {
  font-family: 'Caveat', cursive;
  font-size: 18px;
  color: rgba(255,255,255,0.4);
  margin: 6px 0 14px;
}
.foot-meta { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.3); }

/* ── OPENING BANNER ── */
.opening-banner {
  background: var(--dgreen);
  text-align: center;
  padding: 12px 20px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  position: relative;
  z-index: 90;
  margin-top: 66px;
}
.opening-banner strong { font-family: 'Bebas Neue', sans-serif; font-size: 15px; letter-spacing: 4px; }
header { padding-top: 60px; }

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
}
.faq-item h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 19px;
  letter-spacing: 2px;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.95);
}
.faq-item p { font-size: 14px; color: rgba(255,255,255,0.6); max-width: 68ch; }

/* ── AREA TEXT ── */
.area-txt { max-width: 760px; margin: 0 auto; text-align: center; }
.area-txt p { font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 14px; }
.area-txt strong { color: rgba(255,255,255,0.8); font-weight: 400; }
/* ── ARTICLE / SERVICE PAGES ── */
.page-head {
  background:
    repeating-linear-gradient(-45deg, transparent 0, transparent 26px, rgba(0,0,0,0.10) 26px, rgba(0,0,0,0.10) 29px),
    radial-gradient(ellipse at 50% 40%, #24493A 0%, var(--green) 60%, #122519 100%);
  padding: 150px 5vw 70px;
  text-align: center;
}
.page-head img { width: 110px; margin: 0 auto 18px; }
.page-head h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 6vw, 52px);
  letter-spacing: 5px;
  line-height: 1.05;
}
.page-head .sub {
  font-family: 'Caveat', cursive;
  font-size: clamp(19px, 3vw, 25px);
  color: rgba(255,255,255,0.7);
  margin-top: 10px;
}
.crumbs { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 18px; }
.crumbs a { color: rgba(255,255,255,0.6); text-decoration: none; }
.crumbs a:hover { color: #fff; }

article { max-width: 760px; margin: 0 auto; padding: 70px 5vw 40px; }
article h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 27px;
  letter-spacing: 3px;
  margin: 40px 0 12px;
}
article h2:first-child { margin-top: 0; }
article p { color: rgba(255,255,255,0.72); font-size: 15px; margin-bottom: 14px; }
article ul { margin: 0 0 18px 20px; color: rgba(255,255,255,0.72); font-size: 15px; }
article li { margin-bottom: 7px; }
article strong { color: rgba(255,255,255,0.95); font-weight: 400; }
article a { color: var(--white); }

.price-box {
  border: 1px solid rgba(255,255,255,0.15);
  padding: 22px 26px;
  margin: 28px 0;
  background: rgba(27,58,45,0.35);
}
.price-box .pb-label { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.price-box .pb-price { font-family: 'Bebas Neue', sans-serif; font-size: 42px; letter-spacing: 2px; line-height: 1.1; }
.price-box .pb-price .curr { font-family: 'Oswald', sans-serif; font-size: 18px; color: var(--dgreen); }
.price-box .pb-note { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 4px; }

.cta-strip { text-align: center; padding: 20px 5vw 80px; }
.cta-strip .btn { margin: 6px; }

.foot-links { margin-top: 18px; font-size: 10px; letter-spacing: 1.5px; color: rgba(255,255,255,0.18); line-height: 2; }
.foot-links a { color: rgba(255,255,255,0.22); text-decoration: none; }
.foot-links a:hover { color: rgba(255,255,255,0.5); }
