/* קפה ללוש — shared stylesheet */
:root {
  --primary: #b7a759;
  --primary-dark: #8a7c3e;
  --gold-light: #d0b770;
  --cream: #f2dea2;
  --accent: #ec1c24;
  --text: #4e3a00;
  --text-light: #6b5a2a;
  --bg: #ffffff;
  --surface: #faf7ee;
  --border: #e5ddc0;
  --hero-dark: #0a0a0a;
  --radius: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Assistant', 'Alef Hebrew', Arial, sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

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

a { color: inherit; }

h1, h2, h3, h4, h5 { font-family: inherit; }

.skip-link {
  position: absolute;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; top: 8px; right: 8px; width: auto; height: auto;
  padding: 10px 16px; margin: 0; overflow: visible; clip: auto; white-space: normal;
  background: var(--primary); color: #fff; z-index: 2147483002; font-weight: 700; text-decoration: none;
  border-radius: 8px;
}

:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; }

/* ===== Hero slider ===== */
.hero {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 24px;
}
.hero-content img { margin: 0 auto 12px; max-width: 260px; }
.hero-content .hero-phone {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: rgba(0,0,0,0.5);
  padding: 8px 20px;
  border-radius: 30px;
}
.hero-content .hero-phone:hover { background: var(--primary); }

/* ===== Intro + reservation section (dark) ===== */
.intro-section {
  background: var(--hero-dark);
  padding: 64px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.intro-section h1 {
  color: var(--gold-light);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 24px;
}
.intro-section .intro-text {
  color: var(--cream);
  max-width: 720px;
  margin: 0 auto 16px;
  font-size: 1.05rem;
}
.intro-section .intro-highlight {
  color: var(--accent);
  font-weight: 700;
  max-width: 720px;
  margin: 24px auto;
  font-size: 1.1rem;
}

/* ===== Forms (shared) ===== */
.cf-form {
  max-width: 640px;
  margin: 32px auto 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: right;
}
.cf-form.light {
  background: var(--surface);
  border-color: var(--border);
}
.cf-form h2, .cf-form .cf-title {
  color: var(--gold-light);
  font-size: 1.3rem;
  margin-bottom: 18px;
  text-align: center;
}
.cf-form.light .cf-title { color: var(--primary-dark); }
.cf-form .cf-subtitle { color: var(--cream); text-align: center; margin-bottom: 18px; font-size: 0.95rem; }
.cf-form.light .cf-subtitle { color: var(--text-light); }
.cf-field { margin-bottom: 14px; }
.cf-field input[type="text"],
.cf-field input[type="tel"],
.cf-field input[type="email"],
.cf-field input[type="number"],
.cf-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.95);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}
.cf-form.light .cf-field input,
.cf-form.light .cf-field textarea {
  border-color: var(--border);
  background: #fff;
}
.cf-field textarea { min-height: 90px; resize: vertical; }
.cf-seating { color: var(--cream); margin-bottom: 14px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.cf-form.light .cf-seating { color: var(--text); }
.cf-seating-options { display: flex; gap: 10px; }
.cf-seating-btn {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  font-family: inherit;
}
.cf-form.light .cf-seating-btn { color: var(--text); }
.cf-seating-btn.selected { background: var(--primary); color: #1a1200; font-weight: 700; }
.cf-submit {
  display: block;
  width: 100%;
  padding: 13px;
  border-radius: 8px;
  border: none;
  background: var(--primary);
  color: #1a1200;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.15s;
}
.cf-submit:hover { background: var(--gold-light); }
.cf-submit:disabled { opacity: 0.6; cursor: default; }
.cf-status { margin-top: 12px; text-align: center; font-size: 0.9rem; }

/* ===== Menu sections ===== */
.menu-section {
  padding: 56px 24px;
  background: var(--surface);
}
.menu-section h1 {
  text-align: center;
  color: var(--text);
  font-size: 2rem;
  margin-bottom: 36px;
}
.menu-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.menu-columns.ltr { direction: ltr; }
.menu-toggle {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
}
.menu-toggle-title {
  width: 100%;
  text-align: center;
  background: none;
  border: none;
  padding: 16px 18px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: inherit;
}
.menu-toggle-title .chev { transition: transform 0.2s; flex-shrink: 0; }
.menu-toggle.open .menu-toggle-title .chev { transform: rotate(180deg); }
.menu-toggle-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.menu-toggle.open .menu-toggle-content { max-height: 3000px; }
.menu-toggle-content-inner { padding: 0 18px 18px; }
.menu-toggle-content-inner img { border-radius: 8px; margin: 0 auto; }
.menu-toggle-content-inner p { margin-bottom: 10px; }
.menu-toggle-content-inner .dessert-note { font-weight: 700; }
.menu-pdf-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}
.menu-pdf-btn {
  display: inline-block;
  padding: 10px 22px;
  border: 2px solid var(--primary);
  border-radius: 6px;
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 700;
  background: #fff;
  transition: background 0.15s, color 0.15s;
}
.menu-pdf-btn:hover { background: var(--primary); color: #fff; }

/* ===== Gallery + contact + facebook row ===== */
.bottom-row {
  padding: 56px 24px;
  background: var(--bg);
}
.bottom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.gallery-slider {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.gallery-slide.active { opacity: 1; }
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; }

.fb-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 24px;
  background: var(--surface);
  border-radius: var(--radius);
}
.fb-block a.fb-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0000ff;
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
}
.fb-block a.fb-link svg { width: 36px; height: 36px; fill: #1877F2; }

.footer-blurbs {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer-blurb { text-align: center; }
.footer-blurb .icon-wrap { color: var(--accent); margin-bottom: 8px; }
.footer-blurb .icon-wrap svg { width: 34px; height: 34px; }
.footer-blurb h1 a { color: #000; text-decoration: none; font-size: 1.5rem; }
.footer-blurb h3, .footer-blurb h4 { color: #000; }
.footer-blurb h1 { font-size: 1.4rem; margin-bottom: 4px; }

@media (max-width: 900px) {
  .menu-columns { grid-template-columns: 1fr; }
  .bottom-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .bottom-grid { grid-template-columns: 1fr; }
  .intro-section h1 { font-size: 1.8rem; }
}

/* ===== Footer ===== */
.site-footer {
  padding: 32px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
}
.site-footer a { color: var(--primary-dark); text-decoration: underline; }

/* ===== FAB (WhatsApp + Call) ===== */
.fab-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 2147483000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}
.fab {
  pointer-events: auto;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.fab:hover { transform: scale(1.1); box-shadow: 0 6px 18px rgba(0,0,0,0.35); }
.fab:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
.fab.wa { background: #25D366; }
.fab.call { background: var(--primary-dark); }
.fab svg { width: 28px; height: 28px; fill: white; }
@media (max-width: 480px) {
  .fab { width: 48px; height: 48px; }
  .fab svg { width: 24px; height: 24px; }
}
@media print { .fab-container { display: none; } }

/* ===== 404 / accessibility page shared bits ===== */
.simple-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}
.simple-page .btn-home {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 28px;
  background: var(--primary);
  color: #1a1200;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}
