/* ---------- Tokens ---------- */
:root {
  --green: #2ea63a;
  --green-dark: #228429;
  --yellow: #ffd400;
  --yellow-dark: #e6bf00;
  --pink: #d63a92;
  --pink-dark: #b62a78;
  --black: #0a0a0a;
  --ink: #1a1a1a;
  --muted: #6b6b6b;
  --bg: #fdfaf3;
  --bg-alt: #fff7e1;
  --card: #ffffff;
  --border: #ececec;
  --shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 44px rgba(0, 0, 0, 0.14);
  --radius: 14px;
  --radius-lg: 22px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Nunito Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--pink); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { font-family: "Bebas Neue", Impact, sans-serif; letter-spacing: 0.5px; line-height: 1.05; margin: 0 0 0.4em; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.35rem; font-family: "Nunito Sans", sans-serif; font-weight: 800; letter-spacing: 0; }
p { margin: 0 0 1em; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.center-cta { text-align: center; margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.more-dishes-note { text-align: center; font-style: italic; font-weight: 800; font-size: 2.5rem; color: var(--yellow); margin-top: 40px; letter-spacing: 0.5px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); text-decoration: none; }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); }
.btn-yellow { background: var(--yellow); color: var(--black); }
.btn-yellow:hover { background: var(--yellow-dark); }
.btn-pink { background: var(--pink); color: #fff; }
.btn-pink:hover { background: var(--pink-dark); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  color: #fff;
  border-bottom: 4px solid var(--yellow);
}
.nav-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo {
  height: 56px;
  width: auto;
  background: var(--black);
  padding: 4px 6px;
  border-radius: 6px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.site-nav a {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-size: 0.95rem;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .15s ease, color .15s ease;
}
.site-nav a:hover { color: var(--yellow); border-color: var(--yellow); text-decoration: none; }
.site-nav a.active { color: var(--yellow); border-color: var(--yellow); }
.site-nav .nav-cta {
  background: var(--green);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
  border-bottom: none !important;
}
.site-nav .nav-cta:hover { background: var(--green-dark); border-color: transparent; }
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px auto;
  background: #fff;
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65)),
    radial-gradient(circle at 20% 0%, rgba(214, 58, 146, 0.18), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(255, 212, 0, 0.18), transparent 50%),
    url("images/hero.jpg") center/cover no-repeat,
    var(--black);
  color: #fff;
  padding: 80px 20px 100px;
  text-align: center;
  border-bottom: 6px solid var(--pink);
}
.hero-inner { max-width: 920px; margin: 0 auto; }
.hero-logo {
  width: min(560px, 90%);
  height: auto;
  margin: 0 auto 24px;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.5));
}
.hero-tag {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  letter-spacing: 1px;
  margin: 0 0 8px;
  color: var(--yellow);
}
.hero-sub { font-size: 1.1rem; color: #f5f5f5; margin-bottom: 32px; }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ---------- Page Hero (sub-pages) ---------- */
.page-hero {
  background: var(--black);
  color: #fff;
  padding: 50px 20px 56px;
  text-align: center;
  border-bottom: 6px solid var(--green);
}
.page-hero h1 { color: var(--yellow); }
.page-hero p { color: #efefef; max-width: 720px; margin: 0 auto 6px; }
.menu-note { font-size: 0.95rem; color: #cfcfcf; margin-top: 14px; }
.menu-note a { color: var(--yellow); }

/* ---------- Sections ---------- */
section { padding: 64px 0; }
.concept { background: var(--bg-alt); }
.concept .lead {
  font-size: 1.2rem;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: var(--ink);
}

/* ---------- Dish grid ---------- */
.featured h2, .reviews h2 { text-align: center; margin-bottom: 36px; }
.dish-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.dish-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
}
.dish-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.dish-card h3 { padding: 18px 18px 6px; }
.dish-card p { padding: 0 18px 22px; color: var(--muted); }

.dish-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green), #1f7c2a);
  overflow: hidden;
}
.dish-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.dish-card:hover .dish-photo img,
.menu-item:hover .dish-photo img { transform: scale(1.04); }
.dish-emoji {
  font-size: 5rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
}
.dish-emoji.big { font-size: 6.5rem; }

/* ---- Per-dish placeholder gradients (replaceable with real photos) ---- */
.photo-shawarma { background: linear-gradient(135deg, #d4844a, #a85a1c); }
.photo-tacos    { background: linear-gradient(135deg, #ffb347, #e87a00); }
.photo-hummus   { background: linear-gradient(135deg, #f3d180, #b88a36); }
.photo-baklava  { background: linear-gradient(135deg, #c98a3a, #7d4f1a); }
.photo-baba     { background: linear-gradient(135deg, #6f5fa3, #3f3068); }
.photo-falafel  { background: linear-gradient(135deg, #6db35f, #2e7a30); }
.photo-gyro     { background: linear-gradient(135deg, #c2502d, #7d2913); }
.photo-soup     { background: linear-gradient(135deg, #d65a3a, #882313); }
.photo-torta    { background: linear-gradient(135deg, #d8a061, #8c5a26); }
.photo-burrito  { background: linear-gradient(135deg, #b6772f, #6a3f0d); }
.photo-guac     { background: linear-gradient(135deg, #4caf50, #1f6e22); }
.photo-fusion   {
  background:
    linear-gradient(135deg, var(--green) 0%, var(--green) 50%, var(--pink) 50%, var(--pink) 100%);
}
.photo-cafe-stripes {
  background:
    linear-gradient(135deg, var(--green) 0%, var(--green) 33%, var(--yellow) 33%, var(--yellow) 66%, var(--pink) 66%, var(--pink) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-lg);
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.badge {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  vertical-align: middle;
  text-transform: uppercase;
}

/* ---------- Vegetarian band (Menu page) ---------- */
.veggie-band { padding: 36px 0; background: var(--bg-alt); }
.veggie-card {
  display: flex;
  align-items: center;
  gap: 22px;
  background: #fff;
  border-left: 6px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  box-shadow: var(--shadow-lg);
  max-width: 920px;
  margin: 0 auto;
}
.veggie-icon { font-size: 3rem; line-height: 1; flex-shrink: 0; }
.veggie-card h2 { margin: 0 0 6px; color: var(--green-dark); font-size: 1.6rem; }
.veggie-card p { margin: 0; color: var(--ink); }
@media (max-width: 600px) {
  .veggie-card { flex-direction: column; text-align: center; padding: 22px 18px; }
  .veggie-icon { font-size: 2.6rem; }
}

/* ---------- Catering note (About page) ---------- */
.catering-note {
  background: var(--bg-alt);
  border-left: 4px solid var(--yellow);
  padding: 14px 18px;
  border-radius: 6px;
  margin-top: 18px;
}
.catering-note a { color: var(--green-dark); font-weight: 800; }

/* ---------- Gallery (About page) ---------- */
.gallery-section { background: var(--bg-alt); }
.gallery-section h2 { text-align: center; margin-bottom: 8px; }
.gallery-sub { text-align: center; color: var(--muted); margin-bottom: 32px; font-size: 1.05rem; }
.gallery-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
}
.gallery-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: #ddd;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ---------- Menu photos (top of Menu page) ---------- */
.menu-photos { padding: 40px 0 20px; }
.menu-photos-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
  max-width: 1100px;
  margin: 0 auto;
}
.menu-photo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #fff;
}
.menu-photo-card img {
  width: 100%;
  height: auto;
  display: block;
}
/* First menu card spans both rows on the left; right column stacks the other two */
.menu-photo-card:nth-child(1) { grid-row: 1 / span 2; }
.menu-photo-card:nth-child(1) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 700px) {
  .menu-photos-grid { grid-template-columns: 1fr; }
  .menu-photo-card:nth-child(1) { grid-row: auto; }
  .menu-photo-card:nth-child(1) img { height: auto; }
}

/* ---------- Reviews ---------- */
.reviews { background: var(--black); color: #fff; }
.reviews h2 { color: var(--yellow); }
.rating-line { text-align: center; margin-bottom: 28px; font-size: 1.1rem; }
.rating-line .stars { color: var(--yellow); font-size: 1.3rem; letter-spacing: 2px; }
.review-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.review-grid blockquote {
  margin: 0;
  background: rgba(255,255,255,0.08);
  padding: 24px 22px;
  border-radius: var(--radius);
  border-left: 5px solid var(--pink);
  font-style: italic;
}
.review-grid blockquote p { margin: 0; color: #f0f0f0; }

/* ---------- Visit / hours block on home ---------- */
.visit { background: var(--bg-alt); }
.visit-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.address-line { font-size: 1.2rem; line-height: 1.5; }
.link-strong { color: var(--green-dark); font-weight: 800; }

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list li.closed { background: #faecec; color: #a32626; }

/* ---------- Menu page ---------- */
.menu-section { padding: 56px 0; }
.menu-section.alt { background: var(--bg-alt); }
.section-title {
  text-align: center;
  display: inline-block;
  position: relative;
  padding: 6px 24px;
  border-radius: 12px;
  margin: 0 auto 36px;
  display: block;
  width: fit-content;
}
.section-title-green  { background: var(--green); color: #fff; }
.section-title-yellow { background: var(--yellow); color: var(--black); }
.section-title-pink   { background: var(--pink); color: #fff; }

.menu-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.menu-grid-small {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}
.menu-item {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.menu-item h3 { padding: 16px 16px 4px; font-size: 1.15rem; }
.menu-item p { padding: 0 16px 18px; color: var(--muted); margin: 0; font-size: 0.96rem; }
.menu-item.small {
  text-align: center;
  padding: 18px 14px;
  font-weight: 800;
}
.menu-item.small h3 { padding: 0; font-size: 1rem; margin: 0; }

/* ---------- About page ---------- */
.story-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
}
.story-text p { font-size: 1.06rem; }
.story-text em { color: var(--pink-dark); font-style: italic; font-weight: 600; }

.values { background: var(--bg-alt); }
.values h2 { text-align: center; margin-bottom: 30px; }
.value-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.value-card {
  background: var(--card);
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.value-icon { font-size: 2.4rem; margin-bottom: 6px; }
.value-card h3 { margin-bottom: 6px; }
.value-card p { color: var(--muted); margin: 0; font-size: 0.96rem; }

.cta-band {
  background: var(--black);
  color: #fff;
  text-align: center;
}
.cta-band h2 { color: var(--yellow); }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.contact-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-card h2 { font-size: 1.6rem; margin-bottom: 6px; font-family: "Bebas Neue", sans-serif; }
.big-line { font-size: 1.15rem; margin: 0 0 6px; }
.big-line a { color: var(--ink); font-weight: 800; }
.contact-card .btn { align-self: flex-start; margin-top: 10px; }
.contact-card .btn + .btn { margin-left: 0; margin-top: 10px; }

.map-section { padding: 0; }
.map-wrap {
  width: 100%;
  height: 460px;
  border-top: 6px solid var(--yellow);
  border-bottom: 6px solid var(--pink);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: #f0f0f0;
  padding: 56px 0 22px;
}
.footer-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.site-footer h3 { color: var(--yellow); margin-bottom: 8px; font-family: "Bebas Neue", sans-serif; font-size: 1.4rem; letter-spacing: 1px; }
.site-footer a { color: #fff; font-weight: 700; }
.site-footer a:hover { color: var(--yellow); }
.footer-logo { height: 60px; margin-bottom: 12px; }
.copyright {
  text-align: center;
  margin: 30px 0 0;
  color: #9a9a9a;
  font-size: 0.9rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 800px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    border-bottom: 4px solid var(--yellow);
  }
  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav a {
    padding: 14px 22px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-align: left;
  }
  .site-nav a:hover, .site-nav a.active { border-color: rgba(255,255,255,0.08); border-left: 4px solid var(--yellow); padding-left: 18px; }
  .site-nav .nav-cta { margin: 14px 22px; padding: 12px 18px; text-align: center; border-radius: 999px; }

  .hero { padding: 40px 18px 60px; }
  .story-grid { grid-template-columns: 1fr; }
  .story-photo { order: -1; }

  section { padding: 48px 0; }
  .map-wrap { height: 360px; }
}

@media (max-width: 460px) {
  body { font-size: 16px; }
  .btn { padding: 12px 20px; font-size: 0.95rem; }
  .brand-logo { height: 44px; }
  .hero-ctas .btn { width: 100%; }
  .center-cta .btn { width: 100%; }
}
