/* === La Marmite Huisstijl === */
/* Kleuren uit de menukaart:
   - Rood: #E63946 (logo, accenten)
   - Roze/zalm: #E8B4B8 / #D4A0A0 (decoratieve bladvormen)
   - Cr\u00e8me: #FAF6F1 (achtergrond)
   - Zwart: #1a1a1a (tekst, logo)
   - Grijs: #c8c0b8 (decoratieve pot silhouet)
*/

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

:root {
  --red: #E63946;
  --red-dark: #c0312d;
  --cream: #FAF6F1;
  --cream-dark: #F2EBE1;
  --pink: #E8B4B8;
  --pink-light: #f0d0d3;
  --dark: #1a1a1a;
  --text: #333;
  --text-light: #666;
  --pot-grey: #e0d8d0;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--red-dark); }

/* === Decoratieve huisstijl elementen === */
.deco-leaf-left {
  position: fixed; bottom: 0; left: 0; z-index: 0; pointer-events: none;
  width: 180px; height: 300px;
  background: var(--pink);
  opacity: 0.15;
  clip-path: path('M0 300 C30 200 60 150 40 80 C20 30 60 0 80 20 C100 40 120 100 100 160 C80 220 110 260 140 280 C160 290 180 300 180 300 Z');
}
.deco-pot-right {
  position: fixed; top: 80px; right: -40px; z-index: 0; pointer-events: none;
  width: 200px; height: 200px;
  background: var(--pot-grey);
  opacity: 0.12;
  border-radius: 10px 10px 50% 50%;
}

/* === Layout === */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.text-center { text-align: center; }
.section { padding: 80px 0; }
.section-cream { background: var(--cream-dark); }

.section-label {
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 600;
  color: var(--red); text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 8px;
}
.section-header { margin-bottom: 40px; }
.section-intro { color: var(--text-light); font-size: 1.05rem; margin-top: 8px; }

/* === Navigation === */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(26,26,26,0.92);
  backdrop-filter: blur(12px);
}
.nav-container {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo img { border-radius: 50%; }
.nav-links { list-style: none; display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: #fff; font-size: 0.9rem; font-weight: 400;
  transition: color 0.2s; letter-spacing: 0.3px;
}
.nav-links a:hover { color: var(--pink-light); }
.nav-cta {
  background: var(--red) !important;
  padding: 10px 22px !important;
  border-radius: 6px;
  font-weight: 500 !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }

/* === Language Switcher === */
.lang-switcher {
  display: flex; gap: 4px; align-items: center; margin-left: auto; margin-right: 16px;
}
.lang-btn {
  background: transparent; border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.6); font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.5px;
  padding: 4px 8px; border-radius: 4px; cursor: pointer;
  transition: all 0.2s; line-height: 1;
}
.lang-btn:hover {
  color: #fff; border-color: rgba(255,255,255,0.5);
}
.lang-btn.active {
  background: var(--red); color: #fff; border-color: var(--red);
}
.lang-switcher-mobile { display: none; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

/* === Hero Carousel === */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  color: #fff; overflow: hidden;
}
.carousel { position: absolute; inset: 0; }
.carousel-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease-in-out;
}
.carousel-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(26,26,26,0.5), rgba(26,26,26,0.7));
}
.hero-content {
  position: relative; z-index: 2; text-align: center; padding: 24px;
}
.hero-logo {
  width: 110px; height: 110px; margin: 0 auto 20px;
  border-radius: 50%; border: 3px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.9);
  padding: 4px;
}
.hero h1 {
  font-family: var(--font-heading); font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700; margin-bottom: 4px; letter-spacing: 2px;
}
.hero-tagline {
  font-family: var(--font-heading); font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  opacity: 0.85; margin-bottom: 8px;
}
.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 300; opacity: 0.75; margin-bottom: 32px;
}

.carousel-dots {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 10px;
}
.carousel-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: none; cursor: pointer;
  transition: background 0.3s;
}
.carousel-dot.active { background: var(--red); }

/* === Buttons === */
.btn {
  display: inline-block; padding: 14px 36px;
  font-family: var(--font-body); font-size: 1rem; font-weight: 500;
  border: none; border-radius: 6px; cursor: pointer;
  transition: all 0.2s; text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); color: #fff; }
.btn-outline {
  background: transparent; color: var(--red);
  border: 2px solid var(--red); padding: 12px 30px;
}
.btn-outline:hover { background: var(--red); color: #fff; }
.btn-full { width: 100%; padding: 16px; font-size: 1.05rem; }

/* === Two Column === */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center;
}
.two-col-reverse .col-image { order: -1; }
.col-text h2 {
  font-family: var(--font-heading); font-size: 2rem;
  margin-bottom: 20px; color: var(--dark);
}
.col-text p { margin-bottom: 16px; color: var(--text-light); font-size: 1.05rem; }
.col-image img {
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* === Photo Strip === */
.photo-strip {
  overflow: hidden; background: var(--dark); padding: 4px 0;
  width: 100%; max-width: 100vw;
}
.photo-strip-inner {
  display: flex; gap: 4px;
  width: max-content;
  animation: scroll-strip 30s linear infinite;
}
.photo-strip img {
  height: 200px; width: auto; min-width: 280px;
  object-fit: cover; flex-shrink: 0;
}
@keyframes scroll-strip {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === Section Headings === */
.section h2 {
  font-family: var(--font-heading); font-size: 2rem;
  margin-bottom: 16px; color: var(--dark);
}

/* === Menu Tabs === */
.menu-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin-bottom: 32px;
}
.menu-tab {
  padding: 10px 20px; border: 2px solid var(--pink);
  background: transparent; color: var(--text);
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
  border-radius: 30px; cursor: pointer;
  transition: all 0.2s;
}
.menu-tab:hover { border-color: var(--red); color: var(--red); }
.menu-tab.active {
  background: var(--red); color: #fff; border-color: var(--red);
}

.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-category {
  font-family: var(--font-heading); font-size: 1.3rem;
  color: var(--red); margin: 28px 0 16px;
  padding-bottom: 8px; border-bottom: 2px solid var(--pink-light);
}
.menu-category:first-child { margin-top: 0; }
.menu-category small { font-size: 0.85rem; color: var(--text-light); font-weight: 400; }

.menu-grid { display: flex; flex-direction: column; gap: 0; }
.menu-item {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0; border-bottom: 1px dotted #ddd;
  gap: 16px;
}
.menu-name { font-size: 0.95rem; color: var(--text); }
.menu-name small { color: var(--text-light); font-size: 0.85rem; display: block; }
.menu-price {
  font-weight: 600; color: var(--dark); white-space: nowrap;
  font-size: 0.95rem;
}
.menu-note {
  margin-top: 16px; padding: 12px 16px;
  background: var(--pink-light); border-radius: 8px;
  font-size: 0.9rem; color: var(--text); font-style: italic;
}

/* === Tearoom === */
.tearoom-hours {
  font-family: var(--font-heading); font-style: italic;
  color: var(--red); font-size: 1.1rem; margin-bottom: 12px !important;
}
.tearoom-highlights {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: 20px;
}
.tearoom-highlights h4 {
  font-family: var(--font-heading); font-size: 1rem;
  color: var(--red); margin-bottom: 10px;
  padding-bottom: 6px; border-bottom: 1px solid var(--pink-light);
}
.tearoom-highlights .menu-item { padding: 6px 0; font-size: 0.9rem; }

/* === Reviews === */
.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 32px; }
.review {
  background: #fff; padding: 32px; border-radius: 12px;
  text-align: left; border-left: 4px solid var(--red);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.review p {
  font-family: var(--font-heading); font-style: italic;
  font-size: 1.1rem; color: var(--text);
  margin-bottom: 16px; line-height: 1.7;
}
.review cite {
  font-style: normal; font-size: 0.9rem;
  color: var(--red); font-weight: 500;
}

/* === Reservation === */
.reservation-wrapper {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px;
  align-items: start;
}
.reservation-info h2 {
  font-family: var(--font-heading); font-size: 2rem;
  margin-bottom: 16px; color: var(--dark);
}
.reservation-info > p { color: var(--text-light); margin-bottom: 32px; font-size: 1.05rem; }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.contact-item { display: flex; flex-direction: column; gap: 2px; }
.contact-item strong { font-size: 0.9rem; color: var(--red); }
.contact-item span { color: var(--text-light); font-size: 0.95rem; }
.contact-sub { font-size: 0.85rem !important; opacity: 0.8; }
.reservation-photo { border-radius: 12px; box-shadow: 0 4px 16px rgba(0,0,0,0.08); }

.reservation-form {
  background: #fff; padding: 36px; border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-top: 4px solid var(--red);
}

.zenchef-booking {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; min-height: 200px; gap: 20px;
}
.zenchef-intro {
  font-size: 1.05rem; color: var(--text); margin-bottom: 4px;
}
.zenchef-alt {
  font-size: 0.95rem; color: var(--text-light); margin-top: 4px;
}
.zenchef-alt a { color: var(--red); text-decoration: none; }
.zenchef-alt a:hover { text-decoration: underline; }

/* === Footer === */
.footer {
  background: var(--dark); color: #aaa; padding: 48px 0;
}
.footer img { margin: 0 auto 16px; border-radius: 50%; opacity: 0.9; }
.footer-name {
  font-family: var(--font-heading); font-size: 1.2rem;
  color: #fff; margin-bottom: 8px;
}
.footer p { font-size: 0.95rem; margin-bottom: 8px; }
.footer-copy { font-size: 0.8rem; opacity: 0.5; margin-top: 16px; }
.footer-credit { font-size: 0.75rem; opacity: 0.4; margin-top: 4px; font-style: italic; }

/* === Mobile === */
@media (max-width: 768px) {
  .deco-leaf-left, .deco-pot-right { display: none; }

  .nav-toggle { display: flex; }
  .nav-container > .lang-switcher { display: none; }
  .lang-switcher-mobile { display: list-item; list-style: none; padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.1); }
  .lang-switcher-mobile .lang-switcher { justify-content: center; margin: 0; }
  .lang-switcher-mobile .lang-btn { font-size: 0.82rem; padding: 6px 12px; }
  .nav-links {
    display: none; position: absolute; top: 70px; left: 0; right: 0;
    background: rgba(26,26,26,0.98); flex-direction: column;
    padding: 24px; gap: 20px; text-align: center;
  }
  .nav-links.active { display: flex; }

  .section { padding: 56px 0; }
  .two-col, .two-col-reverse { grid-template-columns: 1fr; gap: 32px; }
  .two-col-reverse .col-image { order: 0; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reservation-wrapper { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .reservation-form { padding: 24px; }
  .tearoom-highlights { grid-template-columns: 1fr; }

  .menu-tabs { gap: 6px; }
  .menu-tab { padding: 8px 14px; font-size: 0.8rem; }

  .photo-strip img { height: 140px; min-width: 200px; }

  .hero-logo { width: 90px; height: 90px; }
}

@media (max-width: 480px) {
  .hero-logo { width: 80px; height: 80px; }
  .menu-name small { display: inline; }
  .menu-name small::before { content: ' - '; }
}
