/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #2B1F16;
  background: #FAF7F2;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  line-height: 1.2;
  color: #5C3D2E;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 600; margin-bottom: 1rem; }
h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.5rem; }
h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.logo {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #FAF7F2;
  letter-spacing: -0.02em;
}

.logo-img { display: flex; align-items: center; justify-content: center; }
.logo-img img { height: 110px; width: auto; display: block; padding: 5px 0; }

/* ===========================
   LAYOUT
   =========================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.text-center { text-align: center; }
.text-white { color: #FAF7F2 !important; }

/* ===========================
   COLOURS
   =========================== */
.bg-warm     { background: #FAF7F2; }
.bg-perkament { background: #F0EBE1; }
.bg-brown    { background: #5C3D2E; }
.bg-green    { background: #94A07F; }

.bg-brown h2, .bg-brown h3, .bg-brown h4 { color: #FAF7F2; }
.bg-green h2, .bg-green h3, .bg-green h4 { color: #FAF7F2; }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.2s;
  margin-top: 1.5rem;
}

.btn:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-gold {
  background: #D4A94A;
  color: #2B1F16;
}

.btn-green {
  background: #94A07F;
  color: #FAF7F2;
}

.btn-full { width: 100%; text-align: center; display: block; }

/* ===========================
   NAVIGATION
   =========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.nav.scrolled {
  background: rgba(44, 31, 22, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: #F0EBE1;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: #D4A94A; }

.nav-cta {
  background: #D4A94A;
  color: #2B1F16 !important;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-weight: 500 !important;
}

.nav-cta:hover { opacity: 0.88; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FAF7F2;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 0 0;
  transform: scale(1.03);
  transition: transform 8s ease;
}

.hero:hover .hero-img { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44,31,22,0.55) 0%, rgba(44,31,22,0.35) 60%, rgba(44,31,22,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 0 1.5rem;
}

.hero-content h1 {
  color: #FAF7F2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  margin-bottom: 1rem;
}

.hero-content p {
  color: #F0EBE1;
  font-size: 1.15rem;
  margin-bottom: 0;
}

/* ===========================
   PAGE HERO
   =========================== */
.page-hero {
  padding: 8rem 0 4rem;
  text-align: center;
}

.page-hero h1 { color: #FAF7F2; margin-bottom: 0.75rem; }
.page-hero p { color: #F0EBE1; max-width: 600px; margin: 0 auto; }

/* ===========================
   TWO COLUMN LAYOUT
   =========================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.two-col-img {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.two-col-text h2 { margin-bottom: 1rem; }
.two-col-text p { color: #5C3D2E; margin-bottom: 1rem; }

/* ===========================
   GRIDS
   =========================== */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

/* ===========================
   OCCASION CARDS
   =========================== */
.card-occasion {
  background: #FAF7F2;
  border-radius: 8px;
  padding: 1.75rem 1rem;
  text-align: center;
  border: 1px solid rgba(92,61,46,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card-occasion:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(92,61,46,0.12);
}

.occasion-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.card-occasion h3 { font-size: 1rem; color: #5C3D2E; margin: 0; }

/* ===========================
   VALUE CARDS
   =========================== */
.value-card {
  background: #F0EBE1;
  border-radius: 8px;
  padding: 2rem;
  border-left: 4px solid #94A07F;
}

.value-card h3 { color: #5C3D2E; margin-bottom: 0.5rem; }

/* ===========================
   TESTIMONIAL
   =========================== */
.quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
  color: #FAF7F2;
  max-width: 750px;
  margin: 0 auto 1rem;
  line-height: 1.6;
}

.quote-author {
  font-size: 0.95rem;
  color: #D4A94A;
  font-weight: 500;
  margin: 0;
}

/* ===========================
   MENU CARDS
   =========================== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.menu-card {
  background: #F0EBE1;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(92,61,46,0.15);
}

.menu-card-img {
  height: 220px;
  overflow: hidden;
}

.menu-card-img--placeholder {
  background: #94A07F;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-card-img--placeholder span {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  color: #FAF7F2;
  font-style: italic;
}

.menu-card-body {
  padding: 1.5rem;
}

.menu-card-body h3 { color: #5C3D2E; }
.menu-card-body p { color: #2B1F16; font-size: 0.95rem; margin: 0; }

/* ===========================
   BOEK PAGINA
   =========================== */
.boek-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(92,61,46,0.15);
}

.faq-item:last-child { border-bottom: none; margin-bottom: 0; }
.faq-item h3 { color: #5C3D2E; margin-bottom: 0.5rem; }

.aanbod-item {
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 3px solid #D4A94A;
}

/* ===========================
   CONTACT FORM
   =========================== */
.form-wrap {
  background: #FAF7F2;
  border-radius: 8px;
  padding: 2.5rem;
}

.form-wrap h2 { margin-bottom: 0.5rem; }
.form-wrap > p { margin-bottom: 1.5rem; color: #5C3D2E; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #5C3D2E;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(92,61,46,0.25);
  border-radius: 4px;
  background: #FAF7F2;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: #2B1F16;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #94A07F;
}

.form-group textarea { resize: vertical; }

.contact-direct {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.contact-link {
  font-size: 1.1rem;
  font-weight: 500;
  transition: opacity 0.2s;
}

.contact-link:hover { opacity: 0.75; }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #2B1F16;
  color: #F0EBE1;
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(240,235,225,0.1);
}

.footer .logo { color: #FAF7F2; margin-bottom: 0.75rem; }
.footer p { color: #D4A94A; font-size: 0.9rem; margin: 0; }
.footer h4 { color: #FAF7F2; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }

.footer ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer ul li { font-size: 0.9rem; color: rgba(240,235,225,0.7); }
.footer ul a { transition: color 0.2s; }
.footer ul a:hover { color: #D4A94A; }

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(240,235,225,0.4) !important;
  font-size: 0.85rem;
}

/* ===========================
   MOBILE NAV
   =========================== */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 90px; left: 0; right: 0;
    background: rgba(44,31,22,0.97);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
  }

  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; }
  .nav-cta { text-align: center; }

  .logo-img img { height: 70px; }
  .nav-inner { height: 80px; }

  .two-col,
  .two-col.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2rem;
  }

  .two-col.reverse .two-col-img { order: -1; }
  .two-col-img { aspect-ratio: auto; max-height: 400px; }

  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .boek-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .section { padding: 3rem 0; }
  .page-hero { padding: 7rem 0 3rem; }

  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 1rem; }

  .sfeer-section { height: 350px; }
  .sfeer-content h2 { font-size: 1.6rem; }

  .form-wrap { padding: 1.5rem; }

  .boek-grid { gap: 2rem; }

  .quote { font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-direct { flex-direction: column; gap: 1rem; }
  .logo-img img { height: 58px; }
  .nav-inner { height: 72px; }
  .nav-links { top: 72px; }
  .menu-card-img { height: 180px; }
  .hero { min-height: 500px; }
  .btn { padding: 0.75rem 1.5rem; font-size: 0.9rem; }
}

/* Logo schets op groene secties */
.bg-green {
  position: relative;
}

.bg-green::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/logo-schets.png');
  background-repeat: repeat;
  background-size: 380px 200px;
  background-position: 0 0;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.bg-green > * {
  position: relative;
  z-index: 1;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 1.8s ease-in-out infinite;
  transition: opacity 0.2s;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-indicator:hover { background: rgba(255,255,255,0.25); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* Scroll indicator override */
.scroll-indicator svg circle {
  stroke-opacity: 1;
}

/* Sfeer sectie */
.sfeer-section {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sfeer-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 0 0;
}

.sfeer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,31,22,0.55);
}

.sfeer-content {
  position: relative;
  z-index: 1;
}

.sfeer-content h2 { color: #FAF7F2; margin-bottom: 0.75rem; }
.sfeer-content p { color: #F0EBE1; margin-bottom: 0; }

/* Google Maps */
.maps-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(92,61,46,0.15);
}

/* Social links */
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(240,235,225,0.1);
  color: #F0EBE1;
  transition: background 0.2s, color 0.2s;
}

.social-link:hover {
  background: #D4A94A;
  color: #2B1F16;
}

/* Maps link in FAQ */
.maps-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: #94A07F;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.maps-link:hover { color: #5C3D2E; }

/* Poffertjes patroon achtergrond */
.bg-warm {
  position: relative;
}

.bg-warm::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/poffertjes-patroon.png');
  background-repeat: repeat;
  background-size: 800px 600px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
  image-rendering: smooth;
  -webkit-mask-image: none;
}

.bg-warm > * {
  position: relative;
  z-index: 1;
}

/* Collage sectie */
.collage-section {
  position: relative;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collage-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 4px;
}

.collage-item {
  background-size: cover;
  background-position: center;
}

.collage-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 31, 22, 0.55);
}

.collage-content {
  position: relative;
  z-index: 1;
}

.collage-content h2 { color: #FAF7F2; margin-bottom: 0.75rem; }
.collage-content p { color: #F0EBE1; margin-bottom: 0; }
