/* ============================================================
   ZAYA — STYLESHEET
   Palette afgeleid van het interieur: crème wanden, warme
   amber gloed uit de boognis, espresso bruin, zachtgroen.
   ============================================================ */

:root {
  --cream:        #F3ECDD;
  --cream-light:  #FBF7EE;
  --espresso:     #3E2E23;
  --espresso-70:  rgba(62, 46, 35, 0.7);
  --terracotta:   #C97A3D;
  --amber:        #EFA855;
  --amber-soft:   #F6C687;
  --rust-dark:    #8A4E24;
  --sage:         #6E7D5C;
  --line:         rgba(62, 46, 35, 0.14);
  --shadow:       0 10px 30px rgba(62, 46, 35, 0.12);

  --font-display: "Anton", sans-serif;
  --font-body:    "Inter", sans-serif;
  --font-accent:  "Fraunces", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--espresso);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Arch motif (signature element) ---------- */
.arch-glow {
  position: relative;
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  background:
    radial-gradient(120% 100% at 50% 100%, var(--amber) 0%, var(--terracotta) 45%, rgba(201,122,61,0) 78%);
  filter: blur(2px);
  opacity: 0.9;
}

.arch-mini {
  width: 34px;
  height: 26px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: radial-gradient(120% 140% at 50% 100%, var(--amber) 0%, var(--terracotta) 55%, rgba(201,122,61,0) 85%);
  margin: 0 auto 14px;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(243, 236, 221, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 30px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-links::-webkit-scrollbar { display: none; }

.nav-links a {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--espresso-70);
  white-space: nowrap;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--rust-dark);
  border-color: var(--terracotta);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--espresso);
  color: var(--cream-light);
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: transform .15s ease;
}
.cart-btn:hover { transform: translateY(-1px); }

.cart-badge {
  background: var(--amber);
  color: var(--espresso);
  font-size: 11px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 92px 0 70px;
  text-align: center;
  overflow: hidden;
}

.hero-arch {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 560px;
  height: 460px;
  max-width: 90vw;
  z-index: 0;
  opacity: 0.55;
}

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

.hero-eyebrow {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--rust-dark);
  font-size: 17px;
  margin-bottom: 6px;
}

.hero-logo {
  width: min(480px, 78vw);
  height: auto;
  margin: 6px auto 26px;
}

.hero-desc {
  max-width: 460px;
  margin: 0 auto 34px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--espresso-70);
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
  padding: 14px 28px;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .15s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--espresso);
  color: var(--cream-light);
}
.btn-primary:hover { background: var(--rust-dark); }

.btn-ghost {
  background: transparent;
  border-color: var(--espresso);
  color: var(--espresso);
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--espresso-70);
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8AA06B;
}
.status-dot.closed { background: #B5563B; }

/* ---------- About strip ---------- */
.about {
  padding: 70px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.about-photo {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-kicker {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--rust-dark);
  font-size: 16px;
  margin-bottom: 10px;
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  margin: 0 0 18px;
  letter-spacing: 0.5px;
}

.about-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--espresso-70);
  margin-bottom: 26px;
  max-width: 480px;
}

.about-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.about-meta strong { color: var(--espresso); }

/* ---------- Menu ---------- */
.menu-section {
  padding: 80px 0 120px;
}

.menu-head {
  text-align: center;
  margin-bottom: 44px;
}

.menu-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 56px);
  margin: 0;
  letter-spacing: 0.5px;
}

.menu-sub {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--rust-dark);
  font-size: 16px;
}

.category-nav {
  position: sticky;
  top: 73px;
  z-index: 30;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 14px 0;
  margin-bottom: 30px;
  background: var(--cream);
  scrollbar-width: none;
}
.category-nav::-webkit-scrollbar { display: none; }

.pill {
  flex: none;
  border: 1.5px solid var(--line);
  background: var(--cream-light);
  color: var(--espresso-70);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s ease;
}
.pill:hover { border-color: var(--terracotta); }
.pill.active {
  background: var(--espresso);
  border-color: var(--espresso);
  color: var(--cream-light);
}

.category-block {
  margin-bottom: 56px;
  scroll-margin-top: 150px;
}

.category-heading {
  text-align: center;
  margin-bottom: 26px;
}

.category-heading h3 {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.5px;
  margin: 0;
}

.category-note {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 13px;
  color: var(--rust-dark);
  margin-top: 4px;
}

.item-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.item-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.item-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.item-info { flex: 1; min-width: 0; }

.item-name {
  font-weight: 700;
  font-size: 15.5px;
  margin: 0 0 4px;
  color: var(--espresso);
}

.item-desc {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 13px;
  line-height: 1.5;
  color: var(--espresso-70);
  margin: 0;
}

.item-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}

.item-price {
  font-weight: 700;
  font-size: 15px;
  color: var(--rust-dark);
  white-space: nowrap;
}

.add-btn {
  border: none;
  background: var(--espresso);
  color: var(--cream-light);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .15s ease;
}
.add-btn:hover { background: var(--terracotta); transform: scale(1.06); }

/* ---------- Floating cart button ---------- */
.fab-cart {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: none;
  align-items: center;
  gap: 10px;
  background: var(--espresso);
  color: var(--cream-light);
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(62,46,35,0.3);
}
.fab-cart.visible { display: inline-flex; }
.fab-cart .cart-badge { background: var(--amber); color: var(--espresso); }

/* ---------- Cart drawer ---------- */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(62,46,35,0.35);
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 420px;
  max-width: 92vw;
  background: var(--cream-light);
  z-index: 61;
  transform: translateX(100%);
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 40px rgba(0,0,0,0.15);
}
.drawer.open { transform: translateX(0); }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 22px 16px;
  border-bottom: 1px solid var(--line);
}
.drawer-head h3 {
  font-family: var(--font-display);
  margin: 0;
  font-size: 22px;
  letter-spacing: 0.5px;
}
.drawer-close {
  border: none;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  color: var(--espresso-70);
  line-height: 1;
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 22px;
}

.drawer-empty {
  text-align: center;
  color: var(--espresso-70);
  font-size: 14px;
  padding: 60px 20px;
}

.cart-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.cart-row-info { flex: 1; min-width: 0; }
.cart-row-name { font-weight: 700; font-size: 14px; margin: 0 0 2px; }
.cart-row-price { font-size: 12.5px; color: var(--espresso-70); margin: 0; }

.qty-control {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--cream);
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.qty-val { font-weight: 700; font-size: 13px; min-width: 16px; text-align: center; }

.drawer-foot {
  padding: 20px 22px 26px;
  border-top: 1px solid var(--line);
}

.drawer-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
}

.drawer-hint {
  font-size: 12px;
  color: var(--espresso-70);
  margin: 6px 0 16px;
  line-height: 1.5;
}

.whatsapp-btn {
  width: 100%;
  background: #3E7A4E;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 15px;
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background .2s ease;
}
.whatsapp-btn:hover { background: #316A40; }
.whatsapp-btn:disabled { background: #B7BCAF; cursor: not-allowed; }

/* ---------- Footer ---------- */
.footer {
  background: var(--espresso);
  color: var(--cream);
  padding: 56px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo-img {
  height: 46px;
  width: auto;
}

.footer h4 {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  color: var(--amber-soft);
  margin: 0 0 14px;
}

.footer p, .footer a {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(243,236,221,0.85);
  text-decoration: none;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  padding: 3px 0;
  color: rgba(243,236,221,0.85);
}
.hours-row.today { color: var(--amber-soft); font-weight: 700; }

.footer-bottom {
  border-top: 1px solid rgba(243,236,221,0.15);
  padding-top: 22px;
  font-size: 12.5px;
  color: rgba(243,236,221,0.55);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { aspect-ratio: 16/10; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .nav-links { display: none; }
}

@media (max-width: 560px) {
  .item-grid { grid-template-columns: 1fr; }
  .wrap { padding: 0 18px; }
  .hero { padding: 70px 0 50px; }
  .drawer { width: 100%; }
}
