/* ── Elm Diner — Main Stylesheet ─────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Open+Sans:wght@300;400;600&display=swap');
@import url('https://cdn.jsdelivr.net/npm/flag-icons@7.2.3/css/flag-icons.min.css');

/* ── English only — Spanish site is separate ──────────────────────────────── */
[data-lang="es"]:not(.lang-btn)      { display: none !important; }
[data-lang-inline="es"]              { display: none !important; }
[data-lang="en"]:not(.lang-btn)      { display: block; }
[data-lang-inline="en"]              { display: inline; }

/* ── Language Toggle ───────────────────────────────────────────────────────── */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(0,137,123,.12);
  border: 2px solid rgba(0,137,123,.25);
  border-radius: 50px;
  padding: 3px;
  overflow: hidden;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  background: transparent;
  border: none;
  color: #555;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: all .22s;
  white-space: nowrap;
}
.lang-btn .fi {
  width: 20px; height: 14px;
  border-radius: 2px;
  display: inline-block;
  vertical-align: middle;
  background-size: cover;
}
.lang-btn.active {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,137,123,.35);
}
.lang-btn:not(.active):hover {
  background: rgba(0,137,123,.15);
  color: var(--teal-dark);
}
.mobile-lang-toggle {
  display: flex;
  justify-content: center;
  padding: 14px 24px;
  border-top: 1px solid rgba(0,0,0,.08);
}
.mobile-lang-toggle .lang-toggle {
  background: rgba(0,137,123,.1);
  border-color: rgba(0,137,123,.2);
}

/* ── Coming Soon click popup ──────────────────────────────────────────────── */
#cs-popup {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: var(--dark);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0,0,0,.25);
  border-left: 4px solid var(--yellow);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  white-space: nowrap;
}
#cs-popup.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Coming Soon tooltip on ES button ─────────────────────────────────────── */
.lang-btn-soon {
  position: relative;
  cursor: default;
  opacity: .75;
}
.lang-btn-soon::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s;
  z-index: 999;
}
.lang-btn-soon::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--dark);
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s;
  z-index: 999;
}
.lang-btn-soon:hover::after,
.lang-btn-soon:hover::before { opacity: 1; }

/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:       #00897B;
  --teal-dark:  #00695C;
  --teal-light: #E0F2F1;
  --yellow:     #F59E0B;
  --yellow-dark:#D97706;
  --cream:      #FAFAF5;
  --light:      #F0F7F5;
  --dark:       #1A1A1A;
  --text:       #333333;
  --silver:     #777777;
  --border:     #DDE8E6;
  --white:      #FFFFFF;
  --font-head:  'Nunito', sans-serif;
  --font-body:  'Open Sans', sans-serif;
  --nav-h:      72px;
  --radius:     10px;
  --shadow:     0 4px 20px rgba(0,0,0,.08);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all .22s;
  text-decoration: none;
}
.btn-teal {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,137,123,.35);
}
.btn-teal:hover { background: var(--teal-dark); color: #fff; transform: translateY(-1px); }
.btn-yellow {
  background: var(--yellow);
  color: #fff;
  box-shadow: 0 4px 14px rgba(245,158,11,.35);
}
.btn-yellow:hover { background: var(--yellow-dark); color: #fff; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.75);
}
.btn-outline:hover { background: rgba(255,255,255,.15); color: #fff; }
.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline-teal:hover { background: var(--teal); color: #fff; }

/* ── Section Titles ───────────────────────────────────────────────────────── */
.section-title {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 10px;
}
.section-title.light { color: #fff; }
.section-divider {
  width: 60px; height: 4px;
  background: var(--yellow);
  border-radius: 2px;
  margin: 0 auto 36px;
}
.section-divider.teal { background: var(--teal); }

/* ── Top Bar ──────────────────────────────────────────────────────────────── */
.top-bar {
  background: var(--teal);
  color: #fff;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .8px;
  text-align: center;
  padding: 9px 24px;
  position: relative;
  z-index: 200;
}
.top-bar a { color: #fff; text-decoration: none; }
.top-bar a:hover { text-decoration: underline; }

/* ── Navigation ───────────────────────────────────────────────────────────── */
nav {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-logo img { height: 50px; width: auto; }
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--text);
  padding: 8px 10px;
  border-radius: 6px;
  transition: all .2s;
}
.nav-links a:hover { color: var(--teal); background: var(--teal-light); }
.nav-links .btn-teal { color: #fff; padding: 10px 20px; }
.nav-links .btn-teal:hover { color: #fff; }
.nav-links .lang-toggle { margin-left: 6px; }
.nav-lang-mobile { display: none; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .3s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 2px solid var(--teal-light);
  padding: 12px 0 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,.1);
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--dark);
  padding: 13px 28px;
  border-bottom: 1px solid var(--teal-light);
  transition: background .2s;
}
.mobile-menu a:hover { background: var(--teal-light); color: var(--teal); }
.mobile-menu .btn-teal {
  margin: 14px 24px 0;
  text-align: center;
  border-radius: 50px;
  color: #fff;
}
.mobile-menu .btn-teal:hover { color: #fff; }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,105,92,.78) 0%, rgba(0,0,0,.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  max-width: 760px;
}
.hero-tag {
  display: inline-block;
  background: var(--yellow);
  color: #fff;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.1;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.hero-sub {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 8px;
}
.hero-hours {
  font-size: .9rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 28px;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Services Strip ───────────────────────────────────────────────────────── */
.services-strip {
  background: var(--teal);
  padding: 20px 24px;
}
.services-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
}
.service-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}
.service-icon { font-size: 1.1rem; opacity: .85; }
.service-label {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── Daily Specials ───────────────────────────────────────────────────────── */
.specials-section {
  background: var(--cream);
  padding: 70px 24px;
}
.specials-intro {
  text-align: center;
  font-size: .9rem;
  color: var(--silver);
  margin-top: -24px;
  margin-bottom: 36px;
}
.specials-days {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.day-column {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--teal);
}
.day-column.today { border-top-color: var(--yellow); }
.day-header {
  background: var(--teal);
  color: #fff;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 14px;
  text-align: center;
}
.day-column.today .day-header {
  background: var(--yellow);
}
.day-specials { padding: 12px; display: flex; flex-direction: column; gap: 10px; }
.special-item {
  background: var(--light);
  border-radius: 8px;
  padding: 10px 12px;
}
.special-item img {
  width: 100%; height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 8px;
}
.special-name {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 3px;
}
.special-desc {
  font-size: .73rem;
  color: var(--silver);
  line-height: 1.4;
  margin-bottom: 4px;
}
.special-price {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 900;
  color: var(--teal);
}
.specials-note {
  text-align: center;
  font-size: .8rem;
  color: var(--silver);
  font-style: italic;
  margin-top: 8px;
}
.no-specials { text-align: center; color: var(--silver); padding: 20px; grid-column: 1/-1; }

/* ── Photo Strip ──────────────────────────────────────────────────────────── */
.photo-strip {
  display: flex;
  height: 200px;
  overflow: hidden;
}
.photo-strip-item { flex: 1; overflow: hidden; position: relative; }
.photo-strip-item.wide { flex: 2; }
.photo-strip-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.photo-strip-item:hover img { transform: scale(1.06); }

/* ── Menu Preview ─────────────────────────────────────────────────────────── */
.menu-preview { background: var(--light); padding: 70px 24px; }
.menu-cats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}
.menu-cat {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}
.menu-cat img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.menu-cat:hover img { transform: scale(1.06); }
.menu-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,105,92,.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.menu-cat-overlay span {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ── Hours Section ────────────────────────────────────────────────────────── */
.hours-section {
  background: var(--teal);
  padding: 70px 24px;
}
.hours-section .section-title { color: #fff; }
.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.hours-card {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  color: #fff;
}
.hours-card .icon { font-size: 2rem; margin-bottom: 14px; opacity: .85; }
.hours-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  color: var(--yellow);
}
.hours-card p { font-size: .9rem; line-height: 1.8; color: rgba(255,255,255,.88); }
.hours-card a { color: rgba(255,255,255,.88); }

/* ── About Strip ──────────────────────────────────────────────────────────── */
.about-strip {
  display: flex;
  min-height: 420px;
}
.about-strip-img { flex: 1; min-height: 300px; overflow: hidden; }
.about-strip-img img { width: 100%; height: 100%; object-fit: cover; }
.about-strip-content {
  flex: 1;
  background: var(--cream);
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-strip-content .section-title { text-align: left; }
.about-strip-content .section-divider { margin: 0 0 24px; }
.about-strip-content p {
  font-size: .95rem;
  color: var(--silver);
  margin-bottom: 14px;
}

/* ── Catering Banner ──────────────────────────────────────────────────────── */
.catering-banner {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.catering-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.catering-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,105,92,.88) 0%, rgba(0,0,0,.6) 100%);
}
.catering-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 60px 24px;
}
.catering-banner-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.catering-banner-content p {
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 28px;
  opacity: .9;
}

/* ── App Download Banner ──────────────────────────────────────────────────── */
.app-banner {
  background: var(--dark);
  padding: 50px 24px;
  text-align: center;
  border-top: 4px solid var(--yellow);
}
.app-banner-label {
  font-family: var(--font-head);
  font-size: .75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 6px;
}
.app-banner h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.app-badges { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000;
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid #333;
  transition: border-color .2s, transform .2s;
}
.app-badge:hover { border-color: var(--teal); transform: translateY(-2px); color: #fff; }
.app-badge-text { text-align: left; line-height: 1.2; }
.app-badge-text .small { font-size: .65rem; letter-spacing: 1px; opacity: .8; }
.app-badge-text .big { font-size: 1.3rem; font-weight: 600; }

/* ── Gallery Page ─────────────────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: 60px 24px;
  text-align: center;
  color: #fff;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 8px;
}
.page-hero p { opacity: .85; font-size: .95rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  padding: 50px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow);
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(0,105,92,.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i { color: #fff; font-size: 2rem; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.92);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox-close {
  position: absolute; top: 20px; right: 28px;
  color: #fff; font-size: 2.2rem; cursor: pointer;
  background: none; border: none; line-height: 1;
  transition: color .2s;
}
.lightbox-close:hover { color: var(--yellow); }
.lightbox-caption {
  position: absolute; bottom: 24px; left: 0; right: 0;
  text-align: center; color: rgba(255,255,255,.7);
  font-size: .9rem;
}

/* ── Menu Pages ───────────────────────────────────────────────────────────── */
.menu-section { padding: 60px 24px; }
.menu-section:nth-child(odd) { background: var(--light); }
.menu-category {
  max-width: 900px;
  margin: 0 auto 50px;
}
.menu-category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--teal-light);
}
.menu-category-header img {
  width: 90px; height: 60px;
  object-fit: cover;
  border-radius: 8px;
}
.menu-category-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--teal-dark);
}
.menu-items { display: flex; flex-direction: column; gap: 0; }
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  gap: 20px;
}
.menu-item-info { flex: 1; }
.menu-item-name {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
}
.menu-item-desc { font-size: .83rem; color: var(--silver); margin-top: 2px; }
.menu-item-price {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 800;
  color: var(--teal);
  white-space: nowrap;
}

/* ── Dual-Price (Regular / Deluxe) ───────────────────────────────────────── */
.menu-price-header {
  display: flex;
  justify-content: flex-end;
  gap: 0;
  padding: 4px 0 4px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}
.menu-price-header span {
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--silver);
  width: 62px;
  text-align: center;
}
.menu-item-dual {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  gap: 14px;
}
.menu-item-dual .menu-item-info { flex: 1; }
.dual-prices {
  display: flex;
  gap: 0;
  white-space: nowrap;
}
.dual-prices .p-reg,
.dual-prices .p-del {
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 800;
  width: 62px;
  text-align: center;
}
.dual-prices .p-reg { color: var(--silver); }
.dual-prices .p-del { color: var(--teal); }

/* ── Menu Sub-Section Header ──────────────────────────────────────────────── */
.menu-sub-header {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--teal-dark);
  background: var(--teal-light);
  padding: 6px 12px;
  margin: 12px 0 0 0;
  border-radius: 4px;
}
.menu-note {
  font-size: .78rem;
  color: var(--silver);
  font-style: italic;
  padding: 6px 0 10px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}
.menu-extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 6px 20px;
  padding: 8px 0;
}
.menu-extra-item {
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  color: var(--dark);
  padding: 4px 0;
  border-bottom: 1px dotted var(--border);
}
.menu-extra-item span:last-child {
  font-weight: 700;
  color: var(--teal);
  white-space: nowrap;
  margin-left: 8px;
}
.menu-single-price {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  color: var(--silver);
  white-space: nowrap;
}
.menu-single-price strong {
  color: var(--teal);
  font-size: .95rem;
}

/* ── Catering Page ────────────────────────────────────────────────────────── */
.catering-intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 24px 40px;
}
.catering-intro p { color: var(--silver); margin-bottom: 14px; }
.catering-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  padding: 0 24px 60px;
  max-width: 1000px;
  margin: 0 auto;
}
.catering-feature {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--teal);
}
.catering-feature i { font-size: 2rem; color: var(--teal); margin-bottom: 14px; }
.catering-feature h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  margin-bottom: 10px;
}
.catering-feature p { font-size: .88rem; color: var(--silver); }

/* ── About Page ───────────────────────────────────────────────────────────── */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}
.about-content p { color: var(--silver); margin-bottom: 18px; font-size: .95rem; }
.about-content h2 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--teal-dark);
  margin: 30px 0 12px;
}

/* ── Contact Page ─────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 24px;
}
.contact-info h2 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--teal-dark);
  margin-bottom: 20px;
}
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-detail i { color: var(--teal); font-size: 1.1rem; margin-top: 3px; }
.contact-detail p { font-size: .93rem; color: var(--text); line-height: 1.7; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
footer {
  background: var(--dark);
  color: #aaa;
  padding: 60px 24px 0;
}
.footer-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand img { height: 50px; margin-bottom: 16px; }
.footer-brand p { font-size: .88rem; line-height: 1.7; color: #888; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #aaa; font-size: .9rem;
  transition: all .2s;
}
.footer-social a:hover { background: var(--teal); color: #fff; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--yellow);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: #888; font-size: .88rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--teal); }
.footer-col p { font-size: .88rem; line-height: 1.8; color: #888; }
.footer-col a { color: #888; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
  font-size: .82rem;
  color: #555;
}
.footer-powered {
  text-align: center;
  padding: 12px 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.footer-powered span {
  font-family: var(--font-head);
  font-size: .65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #444;
}
.footer-powered img {
  height: 28px;
  opacity: .42;
  filter: brightness(1.5);
  transition: opacity .25s;
}
.footer-powered img:hover { opacity: .85; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .specials-days { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-lang-mobile { display: inline-flex; }
  .hero { height: 480px; }
  .about-strip { flex-direction: column; }
  .about-strip-content { padding: 40px 24px; }
  .specials-days { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .photo-strip { display: none; }
}

@media (max-width: 480px) {
  .specials-days { grid-template-columns: 1fr; }
  .hero { height: 420px; }
  .hero-content h1 { font-size: 2.4rem; }
}
