/* ===== VELVET — Custom styles ===== */

html { scroll-behavior: smooth; }
body { overflow-x: hidden; }

::selection { background: #B89A5D; color: #fff; }

/* Elegant scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #EFE8DC; }
::-webkit-scrollbar-thumb { background: #B89A5D; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #8D7441; }

/* ===== Header states ===== */
#header.scrolled {
  /* Let op: geen backdrop-filter — die maakt een 'containing block' waardoor
     het fixed mobiele menu niet meer het hele scherm bedekt (glitch na scrollen). */
  background: rgba(248, 246, 242, 0.97);
  box-shadow: 0 4px 30px rgba(44, 44, 44, 0.06);
}
/* On hero (top) keep logo readable on dark image — only on pages with a dark hero */
body.has-hero #header:not(.scrolled) .logo-word { color: #fff; }
body.has-hero #header:not(.scrolled) .logo-sub { color: #EFE8DC; }
body.has-hero #header:not(.scrolled) .nav-link { color: #fff; }
body.has-hero #header:not(.scrolled) .btn-outline { color: #fff; border-color: rgba(255,255,255,0.6); }

.nav-link {
  position: relative;
  color: #2C2C2C;
  transition: color .3s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: #B89A5D;
  transition: width .35s ease;
}
.nav-link:hover { color: #B89A5D; }
.nav-link:hover::after { width: 100%; }

.mobile-link { color: #2C2C2C; transition: color .3s; }
.mobile-link:hover { color: #B89A5D; }

/* ===== Mobile hamburger ===== */
/* Zichtbaar (wit) bovenop de donkere hero; donker zodra gescrold */
body.has-hero #header:not(.scrolled) #menuToggle span { background: #fff; }
#menuToggle span { transition: transform .35s ease, opacity .25s ease, width .35s ease, background .3s ease; }
/* Kruisje wanneer menu open is */
#menuToggle.is-open span { background: #2C2C2C !important; width: 1.75rem; }
#menuToggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
#menuToggle.is-open span:nth-child(2) { opacity: 0; }
#menuToggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Anker-secties niet onder de vaste header laten vallen */
section[id] { scroll-margin-top: 5.5rem; }

/* Slider swipe-gevoel op touch */
.slider-track { touch-action: pan-y; }

/* ===== Buttons ===== */
.btn-gold {
  background: #B89A5D;
  color: #fff;
  display: inline-block;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: all .4s ease;
  border: 1px solid #B89A5D;
}
.btn-gold:hover {
  background: #8D7441;
  border-color: #8D7441;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(141, 116, 65, 0.35);
}
.btn-outline {
  border: 1px solid #B89A5D;
  color: #B89A5D;
  display: inline-block;
  transition: all .4s ease;
}
.btn-outline:hover {
  background: #B89A5D;
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-light {
  border: 1px solid rgba(255,255,255,0.7);
  color: #fff;
  display: inline-block;
  transition: all .4s ease;
}
.btn-outline-light:hover {
  background: #fff;
  color: #2C2C2C;
  transform: translateY(-2px);
}

/* ===== Hero background ===== */
.hero-bg {
  background-image: url('assets/hero-velvet.webp');
  background-size: cover;
  background-position: center 35%;
  filter: brightness(0.8) saturate(0.95) blur(1px);
  transform: scale(1.06);
  animation: heroZoom 28s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.12); }
}

/* ===== Menu cards ===== */
.menu-card {
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(44,44,44,0.05);
  transition: transform .45s ease, box-shadow .45s ease;
}
.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(141,116,65,0.18);
}
.menu-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform .7s ease;
}
.menu-card:hover .menu-img { transform: scale(1.08); }

/* ===== Masonry gallery ===== */
.masonry {
  column-count: 2;
  column-gap: 0.75rem;
}
@media (min-width: 1024px) { .masonry { column-count: 3; column-gap: 1rem; } }
.masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}
.masonry-item img,
.masonry-item video {
  width: 100%;
  display: block;
  transition: transform .7s ease, filter .7s ease;
}
.masonry-item:hover video { transform: scale(1.06); }
.video-item { position: relative; }
.video-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 3;
  background: rgba(44,44,44,0.65);
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.masonry-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(184,154,93,0);
  transition: background .5s ease;
}
.masonry-item:hover img { transform: scale(1.06); }
.masonry-item:hover::after { background: rgba(184,154,93,0.15); }

/* Galerij: verborgen items tot "Bekijk meer" */
.masonry-item.is-hidden { display: none; }
.masonry.show-all .masonry-item.is-hidden { display: block; }

/* ===== Instagram feed ===== */
.insta-tile {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 2px;
}
.insta-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .6s ease;
}
.insta-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(44,44,44,0);
  transition: background .4s ease;
}
.insta-tile:hover img { transform: scale(1.08); }
.insta-tile:hover::after { background: rgba(44,44,44,0.35); }
.insta-ic {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  opacity: 0;
  z-index: 2;
  transition: opacity .4s ease;
}
.insta-tile:hover .insta-ic { opacity: 1; }

/* ===== Google rating badge ===== */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.4rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(184, 154, 93, 0.4);
  border-radius: 999px;
  transition: all .35s ease;
}
.google-badge:hover {
  border-color: #B89A5D;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
.google-badge-score { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: #fff; line-height: 1; }
.google-badge-stars { color: #FBBC05; letter-spacing: .15em; font-size: .95rem; }
.google-badge-count { color: rgba(248, 246, 242, 0.65); font-size: .8rem; letter-spacing: .05em; }

/* ===== Feature chips ===== */
.feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  background: #fff;
  border: 1px solid rgba(184, 154, 93, 0.3);
  border-radius: 999px;
  font-size: 0.82rem;
  color: rgba(44, 44, 44, 0.75);
  transition: all .3s ease;
}
.feature-chip:hover {
  border-color: #B89A5D;
  color: #8D7441;
}

/* ===== Reviews slider ===== */
.slider { overflow: hidden; }
.slider-track {
  display: flex;
  transition: transform .7s cubic-bezier(.65,0,.35,1);
}
.slide {
  min-width: 100%;
  padding: 0 1rem;
}
.stars { color: #B89A5D; letter-spacing: .3em; margin-bottom: 1.5rem; font-size: 1.1rem; }
#sliderDots button {
  width: 10px; height: 10px;
  border-radius: 999px;
  background: rgba(184,154,93,0.35);
  transition: all .3s ease;
}
#sliderDots button.active {
  background: #B89A5D;
  width: 28px;
}

/* ===== Coming soon ===== */
.coming-soon-badge {
  display: inline-block;
  background: #B89A5D;
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(184,154,93,0.35);
}
.nav-soon {
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  background: #B89A5D;
  color: #fff;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  margin-left: 0.4rem;
  vertical-align: middle;
}
.coming-soon-page {
  background: linear-gradient(180deg, #F8F6F2 0%, #EFE8DC 100%);
  padding-top: 6rem;
  padding-bottom: 4rem;
}
.coming-soon-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 640px;
  height: 640px;
  max-width: 90vw;
  background: radial-gradient(circle, rgba(184,154,93,0.22), transparent 65%);
  pointer-events: none;
}

/* ===== Catering: service cards ===== */
.service-card {
  background: #fff;
  border: 1px solid rgba(184,154,93,0.18);
  border-radius: 2px;
  padding: 2rem 1.75rem;
  box-shadow: 0 6px 24px rgba(44,44,44,0.05);
  transition: transform .45s ease, box-shadow .45s ease, border-color .45s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(141,116,65,0.16);
  border-color: rgba(184,154,93,0.5);
}
.service-ic {
  display: inline-flex;
  font-size: 1.9rem;
  margin-bottom: 1rem;
}
.service-price {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(184,154,93,0.3);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #B89A5D;
}
.service-price span {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(44,44,44,0.5);
  font-weight: 400;
  margin-left: 0.3rem;
}

/* ===== Catering: steps ===== */
.step-num {
  width: 64px; height: 64px;
  margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem; font-weight: 600;
  color: #B89A5D;
  border: 1px solid rgba(184,154,93,0.5);
  border-radius: 999px;
}

/* ===== Form ===== */
.form-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(44,44,44,0.55);
  margin-bottom: 0.4rem;
}
.form-input {
  width: 100%;
  background: #fff;
  border: 1px solid #EFE8DC;
  padding: 0.9rem 1rem;
  color: #2C2C2C;
  font-family: 'Jost', sans-serif;
  border-radius: 2px;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.form-input:focus {
  outline: none;
  border-color: #B89A5D;
  box-shadow: 0 0 0 3px rgba(184,154,93,0.15);
}
.form-input::placeholder { color: #9b958c; }

/* ===== Social icons ===== */
.social-icon {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184,154,93,0.4);
  color: #B89A5D;
  font-size: 0.7rem;
  letter-spacing: 1px;
  border-radius: 999px;
  transition: all .35s ease;
}
.social-icon:hover {
  background: #B89A5D;
  color: #fff;
  transform: translateY(-3px);
}
.social-icon svg { width: 18px; height: 18px; display: block; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ===== Full menu page ===== */
.menu-category-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: #2C2C2C;
  position: relative;
  display: inline-block;
  margin-bottom: 1.75rem;
}
.menu-category-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: #B89A5D;
  margin-top: 0.5rem;
}
.menu-list-item {
  padding: 0.85rem 0;
  border-bottom: 1px dashed rgba(184,154,93,0.25);
}
.menu-list-item:last-child { border-bottom: none; }
.menu-item-head {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.menu-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #2C2C2C;
  white-space: nowrap;
}
.menu-item-leader {
  flex: 1;
  border-bottom: 1px dotted rgba(44,44,44,0.25);
  transform: translateY(-4px);
}
.menu-item-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: #B89A5D;
  font-weight: 600;
  white-space: nowrap;
}
.menu-item-desc {
  font-size: 0.85rem;
  color: rgba(44,44,44,0.6);
  font-weight: 300;
  margin-top: 0.25rem;
  max-width: 90%;
  line-height: 1.5;
}
.menu-tab {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(44,44,44,0.55);
  padding: 0.5rem 0.25rem;
  border-bottom: 2px solid transparent;
  transition: all .3s ease;
  white-space: nowrap;
}
.menu-tab:hover { color: #B89A5D; }
.menu-tab.active { color: #B89A5D; border-color: #B89A5D; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }
.scrollbar-hide::-webkit-scrollbar { display: none; }

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg { animation: none; }
  html { scroll-behavior: auto; }
}
