@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

/* ===== VARIABELEN ===== */
:root {
  --cream: #faf8f3;
  --bordeaux: #8b1a1a;
  --gold: #c9a84c;
  --dark: #1a1a1a;
  --gray: #666;
  --light-gray: #e8e4da;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --transition: all 0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans Pro', sans-serif;
  background-color: var(--cream);
  color: var(--dark);
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ===== TYPOGRAFIE ===== */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
}

/* ===== NAVIGATIE ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250, 248, 243, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light-gray);
  padding: 0 2.5rem;
  height: 80px;
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.1); }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.nav-left, .nav-right {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex: 1;
}
.nav-right { justify-content: flex-end; }

.nav-logo {
  text-align: center;
  flex-shrink: 0;
  padding: 0 2rem;
}
.nav-logo a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--bordeaux);
  text-decoration: none;
  letter-spacing: 0.04em;
  line-height: 1.2;
  display: block;
}
.nav-logo .sub {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  margin-top: 2px;
}

.nav-left a, .nav-right a {
  text-decoration: none;
  color: var(--dark);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
}
.nav-left a::after, .nav-right a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--bordeaux);
  transition: width 0.3s ease;
}
.nav-left a:hover::after, .nav-right a:hover::after,
.nav-left a.active::after, .nav-right a.active::after { width: 100%; }
.nav-left a:hover, .nav-right a:hover,
.nav-left a.active, .nav-right a.active { color: var(--bordeaux); }

.nav-cta {
  background: var(--bordeaux) !important;
  color: var(--white) !important;
  padding: 0.65rem 1.5rem !important;
  border-radius: 2px !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #6d1515 !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--bordeaux);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobiel menu */
.mobile-menu {
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--light-gray);
  padding: 2rem 2.5rem;
  flex-direction: column;
  gap: 0;
  z-index: 998;
  transform: translateY(-110%);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; }
.mobile-menu a {
  text-decoration: none;
  color: var(--dark);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 1rem 0;
  border-bottom: 1px solid var(--light-gray);
  transition: var(--transition);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--bordeaux); }

/* ===== LAYOUT ===== */
section { padding: 6rem 2.5rem; }
.container { max-width: 1280px; margin: 0 auto; }

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: block;
}
.section-title { font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--bordeaux); margin-bottom: 1.25rem; }
.section-subtitle { color: var(--gray); font-size: 1.05rem; max-width: 580px; line-height: 1.8; }
.divider { width: 55px; height: 1.5px; background: var(--gold); margin: 1.25rem 0; }
.text-center { text-align: center; }
.text-center .divider { margin: 1.25rem auto; }
.text-center .section-subtitle { margin: 0 auto; }

/* ===== KNOPPEN ===== */
.btn {
  display: inline-block;
  padding: 1rem 2.8rem;
  text-decoration: none;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  border-radius: 2px;
}
.btn-primary { background: var(--bordeaux); color: var(--white); }
.btn-primary:hover { background: #6d1515; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(139,26,26,0.35); }

.btn-secondary { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.6); }
.btn-secondary:hover { background: var(--white); color: var(--bordeaux); border-color: var(--white); }

.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: #b8943a; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,0.35); }

.btn-outline { background: transparent; color: var(--bordeaux); border: 1.5px solid var(--bordeaux); }
.btn-outline:hover { background: var(--bordeaux); color: var(--white); }

/* ===== HERO ===== */
.hero {
  height: 100vh;
  min-height: 720px;
  background: linear-gradient(145deg, #1a0808 0%, #6d1010 35%, #8b1a1a 65%, #2c0808 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(201,168,76,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 70%, rgba(201,168,76,0.06) 0%, transparent 50%);
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, transparent 40%, rgba(0,0,0,0.3) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 820px;
  padding: 0 2rem;
}
.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1.75rem;
  display: block;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.7rem);
  color: rgba(255,255,255,0.65);
  font-style: italic;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.hero-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 3rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-buttons { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  z-index: 2;
  cursor: pointer;
}
.scroll-line {
  width: 1px; height: 45px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
  animation: pulse 2.2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* ===== SFEERBEELDEN ===== */
.atmosphere { padding: 0; overflow: hidden; }
.atmosphere-grid { display: grid; grid-template-columns: repeat(3, 1fr); height: 480px; }
.atmosphere-img { position: relative; overflow: hidden; cursor: pointer; }
.atmosphere-img:nth-child(1) { background: #ddd8cc; }
.atmosphere-img:nth-child(2) { background: #d5d0c5; }
.atmosphere-img:nth-child(3) { background: #e0dbd0; }
.atmosphere-img::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.4s ease;
}
.atmosphere-img:hover::after { background: rgba(0,0,0,0.25); }
.atm-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 2rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 2;
}
.atmosphere-img:hover .atm-label { transform: translateY(0); opacity: 1; }

/* ===== UITGELICHTE GERECHTEN ===== */
.featured { background: var(--white); }
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.dish-card {
  background: var(--cream);
  border-radius: 3px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.dish-card:hover { transform: translateY(-8px); box-shadow: 0 16px 45px rgba(0,0,0,0.13); }
.dish-img { height: 210px; position: relative; }
.dish-card:nth-child(1) .dish-img { background: #e0dbd0; }
.dish-card:nth-child(2) .dish-img { background: #d8d3c8; }
.dish-card:nth-child(3) .dish-img { background: #ddd8cc; }
.dish-card:nth-child(4) .dish-img { background: #d5d0c5; }
.dish-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--bordeaux);
  color: var(--white);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  padding: 0.28rem 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 1px;
}
.dish-info { padding: 1.6rem; }
.dish-info h3 { font-size: 1.25rem; color: var(--dark); margin-bottom: 0.5rem; }
.dish-info p { font-size: 0.88rem; color: var(--gray); margin-bottom: 1.25rem; line-height: 1.6; }
.dish-footer { display: flex; align-items: center; justify-content: space-between; }
.dish-price { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--bordeaux); font-weight: 700; }
.dish-link { font-size: 0.72rem; color: var(--bordeaux); text-decoration: none; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; transition: var(--transition); }
.dish-link:hover { color: var(--gold); }

/* ===== VERHAAL HOME ===== */
.story { background: var(--cream); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.story-visual {
  height: 540px;
  background: #ddd8cc;
  border-radius: 3px;
  position: relative;
}
.story-visual::after {
  content: '';
  position: absolute;
  inset: -18px -18px 18px 18px;
  border: 1.5px solid var(--gold);
  border-radius: 3px;
  z-index: -1;
  opacity: 0.6;
}
.story-text .section-title { font-size: clamp(2rem, 3.5vw, 2.8rem); }
.story-text p { color: var(--gray); margin-bottom: 1.5rem; font-size: 0.98rem; line-height: 1.85; }
.story-stats { display: flex; gap: 3rem; margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--light-gray); }
.stat { text-align: center; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; color: var(--bordeaux); font-weight: 700; line-height: 1; }
.stat-label { font-size: 0.72rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 0.3rem; }

/* ===== CTA SECTIE ===== */
.cta-section {
  background: linear-gradient(145deg, #6d1010 0%, #8b1a1a 50%, #6d1010 100%);
  text-align: center;
  padding: 8rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.1) 0%, transparent 65%);
}
.cta-section > .container { position: relative; }
.cta-section .section-label { color: var(--gold); }
.cta-section h2 { font-size: clamp(2.5rem, 5vw, 4rem); color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 2.75rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-meta {
  display: flex; justify-content: center; gap: 3.5rem;
  margin-top: 3rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  flex-wrap: wrap;
}
.cta-meta-item { display: flex; align-items: center; gap: 0.6rem; }
.cta-meta-item .ico { color: var(--gold); }

/* ===== FOOTER ===== */
footer { background: #110505; color: rgba(255,255,255,0.55); padding: 5.5rem 2.5rem 2.5rem; }
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--white); margin-bottom: 4px; }
.footer-brand .tagline { color: var(--gold); font-size: 0.65rem; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 700; margin-bottom: 1.5rem; display: block; }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; margin-bottom: 1.75rem; }
.socials { display: flex; gap: 0.75rem; }
.social-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  transition: var(--transition);
  border-radius: 2px;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 1px;
  background: var(--gold);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.75rem; font-size: 0.88rem; }
.footer-col ul li a { color: rgba(255,255,255,0.55); text-decoration: none; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }

.hour-row { display: flex; justify-content: space-between; font-size: 0.82rem; margin-bottom: 0.5rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.hour-row .day { color: rgba(255,255,255,0.75); font-weight: 600; }
.hour-row .time { color: rgba(255,255,255,0.45); font-size: 0.78rem; }
.hour-row .closed { color: rgba(255,255,255,0.25); font-style: italic; }

/* Openingsuren op lichte achtergrond (contactpagina, reservatie sidebar) */
.hours-full-box .hour-row { border-bottom-color: var(--light-gray); }
.hours-full-box .hour-row .day { color: var(--dark); }
.hours-full-box .hour-row .time { color: var(--gray); font-size: 0.82rem; }
.hours-full-box .hour-row .closed { color: #bbb; }

.f-contact-item { display: flex; gap: 0.75rem; margin-bottom: 0.9rem; font-size: 0.88rem; align-items: flex-start; }
.f-contact-item .ico { color: var(--gold); flex-shrink: 0; margin-top: 2px; font-size: 0.9rem; }
.f-contact-item a { color: rgba(255,255,255,0.55); text-decoration: none; transition: var(--transition); }
.f-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: var(--gold); text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }

/* ===== PAGINA HEADER ===== */
.page-header {
  padding-top: calc(80px + 5rem);
  padding-bottom: 5rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  background: linear-gradient(145deg, #1a0808 0%, #6d1010 40%, #8b1a1a 70%, #5a1010 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(201,168,76,0.1) 0%, transparent 60%);
}
.page-header > * { position: relative; z-index: 1; }
.page-header h1 { font-size: clamp(2.8rem, 6vw, 5rem); color: var(--white); }
.page-header p { color: rgba(255,255,255,0.6); font-size: 1.05rem; margin-top: 1rem; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ===== MENU PAGINA ===== */
.menu-page { padding: 5rem 2.5rem; background: var(--cream); }
.menu-cat { margin-bottom: 5rem; }
.menu-cat-head {
  display: flex; align-items: center; gap: 2rem;
  margin-bottom: 2.5rem;
}
.menu-cat-head h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--bordeaux); white-space: nowrap; }
.cat-line { flex: 1; height: 1px; background: var(--light-gray); }

.menu-item {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--light-gray);
  transition: var(--transition);
}
.menu-item:hover { padding-left: 0.75rem; border-color: var(--gold); }
.menu-item-left { flex: 1; padding-right: 2rem; }
.item-title-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.4rem; flex-wrap: wrap; }
.item-title-row h3 { font-size: 1.18rem; color: var(--dark); }
.badge {
  font-size: 0.6rem; padding: 0.22rem 0.55rem;
  border-radius: 2px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.badge-veg { background: #e8f5e9; color: #2e7d32; }
.badge-vegan { background: #f1f8e9; color: #558b2f; }
.badge-gf { background: #fff8e1; color: #e65100; }
.badge-pop { background: rgba(139,26,26,0.08); color: var(--bordeaux); }
.badge-new { background: rgba(201,168,76,0.15); color: #7a5a10; }

.item-desc { font-size: 0.88rem; color: var(--gray); line-height: 1.65; }
.item-allergens { font-size: 0.72rem; color: #aaa; margin-top: 0.35rem; }
.item-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; color: var(--bordeaux); font-weight: 700;
  white-space: nowrap; padding-top: 0.1rem;
}

/* ===== RESERVATIE PAGINA ===== */
.res-section { padding: 5rem 2.5rem; background: var(--cream); }
.res-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 5rem; max-width: 1280px; margin: 0 auto; }

.form-title { font-size: 2rem; color: var(--bordeaux); margin-bottom: 0.5rem; }
.form-title-sub { color: var(--gray); font-size: 0.92rem; margin-bottom: 2.5rem; }

.form-group { margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.6rem;
}
input, select, textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1.5px solid var(--light-gray);
  background: var(--white);
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.97rem;
  color: var(--dark);
  transition: var(--transition);
  border-radius: 2px;
  -webkit-appearance: none;
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--bordeaux);
  box-shadow: 0 0 0 3px rgba(139,26,26,0.07);
}
textarea { resize: vertical; min-height: 130px; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238b1a1a' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  padding-right: 2.8rem;
  cursor: pointer;
}
.form-checkbox { display: flex; align-items: flex-start; gap: 0.75rem; }
.form-checkbox input { width: auto; margin-top: 3px; }
.form-checkbox label { font-size: 0.85rem; letter-spacing: 0; text-transform: none; font-weight: 400; color: var(--gray); margin-bottom: 0; }
.form-checkbox label a { color: var(--bordeaux); }
.btn-full { width: 100%; text-align: center; padding: 1.2rem; font-size: 0.82rem; margin-top: 0.5rem; }

.form-success {
  display: none;
  padding: 1.5rem;
  background: #e8f5e9;
  border: 1px solid #4caf50;
  border-radius: 3px;
  color: #1b5e20;
  text-align: center;
  font-size: 0.95rem;
  margin-top: 1rem;
  line-height: 1.6;
}

.hours-sidebar {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 3px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 110px;
  height: fit-content;
}
.hours-sidebar h3 { font-size: 1.7rem; color: var(--bordeaux); margin-bottom: 0.25rem; }
.hours-sidebar .sub { color: var(--gray); font-size: 0.88rem; margin-bottom: 1.75rem; padding-bottom: 1.75rem; border-bottom: 1px solid var(--light-gray); }
.hours-list { list-style: none; }
.hours-list li { display: flex; justify-content: space-between; padding: 0.8rem 0; border-bottom: 1px solid var(--light-gray); font-size: 0.88rem; }
.hours-list li .d { font-weight: 700; color: var(--dark); }
.hours-list li .t { color: var(--gray); font-size: 0.82rem; text-align: right; }
.hours-list li .cl { color: #ccc; font-style: italic; }
.hours-note { margin-top: 1.5rem; padding: 1.1rem 1.25rem; background: rgba(139,26,26,0.04); border-left: 2.5px solid var(--bordeaux); font-size: 0.83rem; color: var(--gray); line-height: 1.65; }
.sidebar-contact { margin-top: 2rem; padding-top: 1.75rem; border-top: 1px solid var(--light-gray); }
.sidebar-contact h4 { font-size: 1rem; color: var(--dark); margin-bottom: 1rem; }
.sc-item { display: flex; gap: 0.75rem; align-items: center; font-size: 0.88rem; color: var(--gray); margin-bottom: 0.75rem; }
.sc-item .ico { color: var(--gold); font-size: 0.95rem; flex-shrink: 0; }
.sc-item a { color: var(--bordeaux); text-decoration: none; }
.sc-item a:hover { text-decoration: underline; }

/* ===== OVER ONS PAGINA ===== */
.over-section { padding: 5.5rem 2.5rem; }
.over-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-bottom: 5rem; }
.over-grid.reverse { direction: rtl; }
.over-grid.reverse > * { direction: ltr; }

.img-block { border-radius: 3px; position: relative; overflow: hidden; }
.img-block.tall { height: 540px; }
.img-block.medium { height: 400px; }
.img-dining { background: #ddd8cc; }
.img-kitchen { background: #d8d3c8; }
.img-chef { background: #e0dbd0; }
.img-exterior { background: #d5d0c5; }
.img-caption {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: rgba(0,0,0,0.65);
  color: var(--white);
  padding: 0.45rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  border-radius: 1px;
}

.over-text p { font-size: 0.97rem; color: var(--gray); line-height: 1.85; margin-bottom: 1.5rem; }
.quote-block {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: rgba(201,168,76,0.05);
}
.quote-block blockquote { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-style: italic; color: var(--bordeaux); line-height: 1.5; }
.quote-block cite { display: block; font-size: 0.78rem; color: var(--gray); margin-top: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; font-style: normal; font-weight: 700; }

/* Tijdlijn */
.timeline { padding: 5.5rem 2.5rem; background: var(--white); }
.tl-items { position: relative; max-width: 820px; margin: 3.5rem auto 0; }
.tl-items::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: var(--light-gray);
  transform: translateX(-50%);
}
.tl-item {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; margin-bottom: 4.5rem;
  position: relative;
}
.tl-item::after {
  content: '';
  position: absolute;
  left: 50%; top: 0.4rem;
  width: 14px; height: 14px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-50%);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 1.5px var(--gold);
}
.tl-item:nth-child(odd) .tl-content { grid-column: 1; text-align: right; padding-right: 2rem; }
.tl-item:nth-child(odd) .tl-year { grid-column: 2; padding-left: 2rem; }
.tl-item:nth-child(even) .tl-year { grid-column: 1; text-align: right; padding-right: 2rem; }
.tl-item:nth-child(even) .tl-content { grid-column: 2; padding-left: 2rem; }
.tl-year { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: var(--bordeaux); font-weight: 700; opacity: 0.25; line-height: 1; align-self: start; padding-top: 0.2rem; }
.tl-content h3 { font-size: 1.25rem; color: var(--dark); margin-bottom: 0.5rem; }
.tl-content p { font-size: 0.88rem; color: var(--gray); line-height: 1.72; }

/* Team */
.team { padding: 5.5rem 2.5rem; background: var(--cream); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-top: 3.5rem; }
.team-card { text-align: center; }
.team-photo { height: 320px; border-radius: 3px; margin-bottom: 1.75rem; position: relative; overflow: hidden; }
.team-card:nth-child(1) .team-photo { background: #ddd8cc; }
.team-card:nth-child(2) .team-photo { background: #d8d3c8; }
.team-card:nth-child(3) .team-photo { background: #e0dbd0; }
.team-card h3 { font-size: 1.5rem; color: var(--dark); margin-bottom: 0.25rem; }
.team-role { display: block; color: var(--gold); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; margin-bottom: 0.85rem; }
.team-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.72; max-width: 300px; margin: 0 auto; }

/* ===== CONTACT PAGINA ===== */
.contact-page { padding: 5rem 2.5rem; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5.5rem; max-width: 1280px; margin: 0 auto; }

.map-box { height: 360px; border-radius: 3px; overflow: hidden; position: relative; margin-bottom: 2rem; }
.map-bg {
  position: absolute; inset: 0;
  background: #e8e4d8;
  background-image:
    linear-gradient(rgba(0,0,0,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-roads {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.8) 3px, transparent 3px),
    linear-gradient(90deg, rgba(255,255,255,0.8) 3px, transparent 3px);
  background-size: 96px 96px;
}
.map-pin {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  text-align: center;
}
.map-pin-dot {
  width: 20px; height: 20px;
  background: var(--bordeaux);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  margin: 0 auto;
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.map-pin-label {
  background: var(--bordeaux);
  color: var(--white);
  padding: 0.5rem 1.1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
  border-radius: 2px;
  margin-top: 0.75rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.map-gmaps {
  position: absolute; bottom: 1rem; right: 1rem;
  background: var(--white);
  padding: 0.45rem 0.9rem;
  font-size: 0.72rem;
  border-radius: 2px;
  font-weight: 600;
  color: var(--dark);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  text-decoration: none;
  transition: var(--transition);
}
.map-gmaps:hover { background: var(--bordeaux); color: var(--white); }

.info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.info-card { background: var(--white); padding: 1.5rem; border-radius: 3px; box-shadow: var(--shadow); }
.info-card .ico { font-size: 1.4rem; margin-bottom: 0.75rem; }
.info-card h4 { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 0.4rem; }
.info-card p, .info-card a { font-size: 0.88rem; color: var(--gray); text-decoration: none; line-height: 1.55; display: block; }
.info-card a:hover { color: var(--bordeaux); }

.parking-box {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 3px;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}
.parking-box h4 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 0.6rem; }
.parking-box p { font-size: 0.85rem; color: var(--gray); line-height: 1.65; }

.hours-full-box { background: var(--white); padding: 2rem; border-radius: 3px; box-shadow: var(--shadow); }
.hours-full-box h4 { font-size: 1.3rem; color: var(--bordeaux); margin-bottom: 1.25rem; }

.contact-form-col h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--bordeaux); margin-bottom: 0.5rem; }
.contact-form-col > p { color: var(--gray); font-size: 0.95rem; margin-bottom: 2.5rem; line-height: 1.7; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #0d0404;
  color: rgba(255,255,255,0.8);
  padding: 1.5rem 2.5rem;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  border-top: 2px solid var(--bordeaux);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-text { font-size: 0.83rem; line-height: 1.65; flex: 1; }
.cookie-text a { color: var(--gold); text-decoration: none; }
.cookie-text a:hover { text-decoration: underline; }
.cookie-btns { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-btn {
  padding: 0.6rem 1.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  border: none;
  border-radius: 2px;
  font-family: 'Source Sans Pro', sans-serif;
  transition: var(--transition);
}
.cookie-yes { background: var(--bordeaux); color: var(--white); }
.cookie-yes:hover { background: var(--gold); }
.cookie-no { background: transparent; color: rgba(255,255,255,0.45); border: 1px solid rgba(255,255,255,0.2); }
.cookie-no:hover { color: var(--white); border-color: rgba(255,255,255,0.45); }

/* ===== ZWEVENDE KNOPPEN ===== */
.floating-wrap {
  position: fixed;
  bottom: 2rem; right: 2rem;
  display: flex; flex-direction: column; gap: 0.75rem;
  z-index: 800;
}
.float-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  font-size: 1.35rem;
  border: none;
  box-shadow: 0 4px 18px rgba(0,0,0,0.22);
}
.wa-btn { background: #25d366; color: #fff; }
.wa-btn:hover { background: #1da851; transform: scale(1.1); }
.top-btn {
  background: var(--bordeaux);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  font-size: 1.1rem;
}
.top-btn.show { opacity: 1; pointer-events: all; transform: translateY(0); }
.top-btn:hover { background: var(--gold); transform: translateY(-3px); }

/* ===== FOTO PLACEHOLDER TEKST ===== */
.atmosphere-img::before,
.dish-img::before,
.story-visual::before,
.img-block::before,
.team-photo::before {
  content: 'Hier komt uw foto';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(100, 80, 55, 0.45);
  letter-spacing: 0.08em;
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
}

/* ===== ANIMATIES ===== */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.in { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .dishes-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .story-grid { gap: 3.5rem; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .res-grid { grid-template-columns: 1fr; }
  .over-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .over-grid.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .info-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-left, .nav-right { display: none; }
  .hamburger { display: flex; }
  section { padding: 4rem 1.5rem; }
  .page-header { padding-left: 1.5rem; padding-right: 1.5rem; }
  .atmosphere-grid { grid-template-columns: 1fr; height: auto; }
  .atmosphere-img { height: 260px; }
  .dishes-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .story-grid { grid-template-columns: 1fr; gap: 2rem; }
  .story-visual { height: 280px; }
  .story-visual::after { display: none; }
  .story-stats { gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .info-cards { grid-template-columns: 1fr; }
  .tl-items::before { left: 16px; }
  .tl-item { grid-template-columns: 1fr; padding-left: 44px; gap: 0.5rem; }
  .tl-item::after { left: 16px; }
  .tl-item:nth-child(odd) .tl-content,
  .tl-item:nth-child(even) .tl-content { grid-column: 1; text-align: left; padding: 0; }
  .tl-item:nth-child(odd) .tl-year,
  .tl-item:nth-child(even) .tl-year { grid-column: 1; grid-row: 1; text-align: left; padding: 0; font-size: 2rem; opacity: 0.2; }
  .cookie-banner { flex-direction: column; text-align: center; padding: 1.5rem; }
  .cta-meta { flex-direction: column; gap: 0.75rem; align-items: center; }
  .floating-wrap { bottom: 1.5rem; right: 1.5rem; }
  .menu-cat-head { gap: 1rem; }
  .menu-item:hover { padding-left: 0; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .navbar { padding: 0 1.25rem; }
  .res-section, .contact-page, .menu-page { padding: 4rem 1.25rem; }
  .cookie-btns { flex-direction: column; width: 100%; }
  .cookie-btn { width: 100%; }
}
