/* Theme: Red & Black inspired by Ichiban logo */
:root {
  --color-bg: #0b0b0b;
  --color-surface: #151515;
  --color-text: #f3f3f3;
  --color-muted: #c7c7c7;
  --color-primary: #e11b22; /* red */
  --color-brand-blue: #20a6ff; /* logo blue accent */
  --color-accent: #ff353d; /* bright red */
  --color-outline: rgba(225, 27, 34, 0.35);
  --max-w: 1200px;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(0,0,0,0.5);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  font-weight: 400;
}

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 600; }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 500; }

.section__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  text-align: center;
  margin-bottom: 2rem;
  color: var(--color-text);
}

.hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
}

/* Topbar */
.topbar { background: #0f0f0f; color: var(--color-muted); font-size: 14px; border-bottom: 1px solid #1f1f1f; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; padding: 8px 20px; }
.topbar a { color: var(--color-muted); text-decoration: none; }
.topbar .divider { opacity: 0.6; margin: 0 8px; }
.topbar__right { display: flex; align-items: center; gap: 8px; }
/* Logo-only delivery buttons */
.btn-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.8);
}

.btn-logo--ubereats:hover {
  border-color: rgba(0, 212, 170, 0.6);
  background: rgba(255, 255, 255, 0.8);
}

.btn-logo--doordash:hover {
  border-color: rgba(255, 48, 8, 0.6);
  background: rgba(255, 255, 255, 0.8);
}

.btn-logo__image {
  height: 42px;
  width: 42px;
  object-fit: contain;
  display: block;
}

/* Topbar logo buttons */
.topbar .btn-logo {
  padding: 4px;
  border-radius: 8px;
}

.topbar .btn-logo__image {
  height: 32px;
  width: 32px;
}

/* Header */
.header { position: sticky; top: 0; z-index: 1000; background: rgba(10,10,10,0.9); backdrop-filter: saturate(140%) blur(6px); border-bottom: 1px solid #1a1a1a; }
.header__inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--color-text); }
.brand__logo { width: 42px; height: 42px; object-fit: contain; }
.brand__logo--small { width: 28px; height: 28px; }
.brand__text { font-weight: 700; letter-spacing: 0.5px; }

.nav__toggle { display: none; background: transparent; color: var(--color-text); border: 1px solid #2a2a2a; border-radius: 8px; padding: 8px 10px; }
.nav__menu { display: flex; list-style: none; gap: 12px; margin: 0; padding: 0; }
.nav__menu a { color: var(--color-text); text-decoration: none; padding: 8px 12px; border-radius: 8px; transition: background .2s, color .2s; }
.nav__menu a:hover { background: #1a1a1a; color: var(--color-brand-blue); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 18px; border-radius: 999px; text-decoration: none; font-weight: 600; border: 1px solid transparent; transition: transform .05s ease, background .2s, border-color .2s; }
.btn--primary { background: var(--color-primary); color: #fff; }
.btn--primary:hover { background: var(--color-brand-blue); }
/* Make all button variants red by default and blue on hover */
.btn,
.btn--ghost,
.btn--outline {
  background: var(--color-primary);
  color: #fff;
  border-color: transparent;
}
.btn:hover,
.btn--ghost:hover,
.btn--outline:hover {
  background: var(--color-brand-blue);
  color: #fff;
  border-color: transparent;
}
.btn--ghost { background: transparent; border: 1px solid var(--color-primary); color: #fff; }
.btn--ghost:hover { background: transparent; border-color: var(--color-brand-blue); color: #fff; }
.btn--outline { background: transparent; border: 1px solid var(--color-primary); color: #fff; }
.btn--outline:hover { background: transparent; border-color: var(--color-brand-blue); color: #fff; }

/* Blue accent underline for links */
.link { color: var(--color-accent); text-decoration: none; }
.link:hover { text-decoration: underline; text-decoration-color: var(--color-brand-blue); color: var(--color-brand-blue); }

/* Hero */
.hero { position: relative; min-height: 72vh; display: grid; align-items: center; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; background-image: linear-gradient(0deg, rgba(0,0,0,0.62), rgba(0,0,0,0.62)), radial-gradient(1200px 600px at 50% 40%, rgba(225,27,34,0.15), rgba(0,0,0,0.9)), url('new_background.png'); background-size: cover, cover, cover; background-position: center center, center center, center 40%; filter: saturate(110%); z-index: -2; }
.hero__content { padding: 64px 0; }
.hero__grid { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 28px; }
.hero__copy { text-align: center; }
.hero__title { font-size: clamp(34px, 6vw, 56px); margin: 0 auto 10px; font-weight: 700; line-height: 1.2; }
.hero__title span { color: var(--color-primary); }
.hero__brand { display: block; width: clamp(280px, 36vw, 520px); height: auto; margin: 10px auto 18px; filter: drop-shadow(0 8px 26px rgba(0,0,0,0.6)); transform: none; }
.hero__subtitle { margin: 8px auto 22px; color: var(--color-muted); max-width: 800px; }
.hero__actions { 
  display: flex; 
  gap: 16px; 
  flex-wrap: wrap; 
  justify-content: center;
  margin-top: 2rem;
}

/* Sections */
.section { padding: 60px 0; background: var(--color-bg); }
.section--dark { background: var(--color-surface); }

.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card { background: #101010; border: 1px solid #1e1e1e; border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.card__title { margin-top: 0; }
/* Visit logo */
.visit { display: grid; grid-template-columns: 1fr; align-items: stretch; gap: 24px; }
.visit__content { display: flex; flex-direction: column; justify-content: center; }
.visit__brand { display: none; }
.visit__image { display: block; width: 100%; height: 100%; min-height: 200px; object-fit: cover; border-radius: 12px; border: 1px solid #1f1f1f; box-shadow: var(--shadow); }

@media (max-width: 960px) {
  .visit { grid-template-columns: 1fr; }
  .visit__brand { justify-content: flex-start; }
}

@media (min-width: 961px) {
  .visit { grid-template-columns: 1fr 1.1fr; align-items: stretch; }
  .visit__brand { display: flex; justify-content: stretch; align-items: stretch; }
  .visit__content { display: flex; flex-direction: column; justify-content: center; }
  .visit__image { height: 100%; min-height: 240px; width: 100%; }
}

/* Menu sections */
.menu-section { margin-bottom: 64px; }
.menu-section:last-child { margin-bottom: 0; }
.menu-section__title { 
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem); 
  margin: 0 0 32px; 
  color: var(--color-text); 
  font-weight: 600;
  text-align: center;
}

/* Menu pricing */
.menu-price { 
  display: block; 
  font-size: 18px; 
  font-weight: 700; 
  color: var(--color-accent); 
  margin-top: 8px; 
}

/* Menu grid layout */
.menu-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 16px; 
}

/* Menu items */
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #0f0f0f;
  border: 1px solid #1e1e1e;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.menu-item:hover {
  background: #1a1a1a;
  border-color: #2a2a2a;
}

.menu-item__name {
  color: var(--color-text);
  font-weight: 500;
}

.menu-item__price {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 16px;
}

/* Contact delivery section */
.contact__delivery {
  margin: 24px 0;
}

.contact__delivery h4 {
  margin: 0 0 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--color-text);
}

.contact__delivery-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-logo--contact {
  padding: 8px;
  border-radius: 12px;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 2rem;
}

.gallery__item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.gallery__image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.gallery__item:hover .gallery__image {
  transform: scale(1.05);
}

/* Reviews Section */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-top: 2rem;
}

.review-card {
  background: #101010;
  border: 1px solid #1e1e1e;
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.review__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.review__name {
  margin: 0 0 4px;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
}

.review__badge {
  margin: 0 0 4px;
  font-size: 14px;
  color: var(--color-muted);
  font-weight: 500;
}

.review__time {
  margin: 0;
  font-size: 12px;
  color: var(--color-muted);
  opacity: 0.8;
}

.review__rating .stars {
  font-size: 18px;
  color: #ffc107;
  letter-spacing: 2px;
}

.review__text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  margin: 16px 0;
  font-style: italic;
}

.review__source {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--color-muted);
  border-top: 1px solid #222;
  padding-top: 16px;
}

.review__source-logo {
  width: 16px;
  height: 16px;
}

/* Gallery Carousel */
.gallery-carousel-wrapper {
  position: relative;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 20px;
}

.gallery-carousel {
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: auto; /* Disabled for custom smooth scrolling */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  cursor: grab;
}

.gallery-carousel::-webkit-scrollbar {
  display: none; /* WebKit */
}

.gallery-track {
  display: flex;
  gap: 20px;
  padding: 10px 0;
}

.gallery__item {
  flex: 0 0 280px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
  cursor: pointer;
  will-change: transform;
}

.gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.gallery__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.gallery__item:hover .gallery__image {
  transform: scale(1.05);
}

/* Gallery Navigation */
.gallery-nav {
  flex: 0 0 auto;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  font-size: 24px;
  padding: 12px 16px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.gallery-nav:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.gallery-nav:active {
  transform: scale(1.05);
  transition-duration: 0.1s;
}

.gallery-carousel:active {
  cursor: grabbing;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.lightbox__container {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.8);
}

.lightbox__close {
  position: absolute;
  top: -50px;
  right: -10px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  font-size: 32px;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10001;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  font-size: 32px;
  padding: 16px 20px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10001;
}

.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.lightbox__prev {
  left: -80px;
}

.lightbox__next {
  right: -80px;
}

.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.card--feature { background: #0f0f0f; border: 1px solid #222; }

/* Buffet Hero Section */
.menu-hero-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.card--buffet-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 2px solid var(--color-primary);
  box-shadow: 0 0 30px rgba(225, 27, 34, 0.2);
  max-width: 800px;
  width: 100%;
  position: relative;
}

.card--buffet-hero::before {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--color-primary);
  color: #fff;
  padding: 6px 16px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(225, 27, 34, 0.3);
}

.buffet-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--color-text);
}

.additional-options {
  text-align: center;
  max-width: 700px;
}

.additional-options__text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-muted);
  margin: 0;
}

.additional-options__text strong {
  color: var(--color-text);
  font-weight: 600;
}

/* Pricing grid */
.pricing-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 24px; 
  margin-bottom: 32px;
}
.card--pricing { 
  background: #101010; 
  border: 1px solid #1e1e1e; 
  position: relative; 
  min-height: 200px;
  display: flex;
  flex-direction: column;
}
.card--pricing.card--featured { 
  background: linear-gradient(135deg, #1a1a1a 0%, #151515 100%); 
  border: 1px solid var(--color-primary); 
  box-shadow: 0 0 20px rgba(225, 27, 34, 0.15);
}
.card--pricing.card--featured::before {
  content: "Popular";
  position: absolute;
  top: -8px;
  right: 16px;
  background: var(--color-primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing__schedule { 
  color: var(--color-brand-blue); 
  font-weight: 600; 
  margin: 4px 0 16px; 
  font-size: 14px; 
}

.pricing__details { 
  display: flex; 
  flex-direction: column; 
  gap: 12px; 
  flex-grow: 1;
  justify-content: space-between;
}
.pricing__item { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  padding: 6px 0; 
  border-bottom: 1px dashed #242424; 
}
.pricing__item:last-child { border-bottom: none; }
.pricing__label { color: var(--color-muted); font-size: 14px; }
.pricing__price { 
  color: var(--color-text); 
  font-weight: 700; 
  font-size: 16px; 
  color: var(--color-accent); 
}

.list { padding-left: 18px; }
.list li { margin: 8px 0; color: var(--color-muted); }

/* Hours list */
.hours { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.hours li { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px dashed #242424; padding-bottom: 8px; }
.hours li span:first-child { color: #fff; font-weight: 600; }
.hours li span:last-child { color: var(--color-text); }

/* removed duplicate; consolidated above */

/* Footer */
.footer { background: #0a0a0a; border-top: 1px solid #1a1a1a; }
.footer__inner { padding: 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.footer__brand { display: inline-flex; align-items: center; gap: 10px; color: var(--color-muted); }

/* Responsive */
@media (max-width: 960px) {
  .grid--2 { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  /* Mobile gallery carousel adjustments */
  .gallery-carousel-wrapper { gap: 15px; }
  .gallery__item { flex: 0 0 250px; }
  .gallery__image { height: 180px; }
  .gallery-nav { font-size: 20px; height: 45px; width: 45px; }
  .nav__toggle { display: inline-flex; }
  .nav__menu { position: absolute; top: 100%; right: 20px; background: #0f0f0f; border: 1px solid #1f1f1f; border-radius: 10px; padding: 10px; display: none; flex-direction: column; min-width: 200px; box-shadow: var(--shadow); }
  .nav__menu.show { display: flex; }
  .hero__grid { flex-direction: column; text-align: center; }
  /* Center About Us and Visit Us content on mobile */
  .grid--2 > div { text-align: center; }
  .list { text-align: left; display: inline-block; }
  /* Center delivery buttons on mobile/tablet */
  .contact__delivery-buttons { justify-content: center; }
}

/* Tablet and small desktop */
@media (max-width: 768px) and (min-width: 641px) {
  .topbar__right { gap: 6px; }
  .topbar .btn-logo { padding: 3px; }
  .topbar .btn-logo__image { height: 28px; width: 28px; }
}

/* Small phones */
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .hero__content { padding: 40px 0; }
  .hero__title { font-size: clamp(28px, 8vw, 40px); }
  .hero__brand { width: clamp(200px, 60vw, 340px); margin: 8px auto 14px; }
  .hero__subtitle { font-size: 14.5px; line-height: 1.55; margin: 6px auto 18px; max-width: 92vw; }
  .hero__copy { text-align: center; }
  .hero__actions { flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
  .btn { padding: 12px 16px; }
  /* Center About Us and Visit Us on small mobile */
  .grid--2 > div { text-align: center; }
  .list { text-align: left; display: inline-block; }
  .topbar .container { padding: 6px 16px; flex-wrap: wrap; gap: 6px; }
  .topbar__right { flex-wrap: wrap; gap: 6px; }
  .topbar .btn-logo { padding: 3px; }
  .topbar .btn-logo__image { height: 26px; width: 26px; }
  /* Center delivery buttons on mobile */
  .contact__delivery-buttons { justify-content: center; }
  /* Hero delivery mobile adjustments */
  .hero__delivery { margin-top: 20px; }
  .hero__delivery-text { font-size: 15px; text-align: center; }
  .hero__delivery-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .btn-logo--ubereats-hero, .btn-logo--doordash-hero { 
    width: 100%; 
    max-width: 200px; 
    padding: 14px; 
  }
  .btn-logo__image--hero { height: 36px; }
  /* Menu section mobile adjustments */
  .menu-section { margin-bottom: 32px; }
  .menu-section__title { font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 20px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .card--pricing.card--featured::before { right: 12px; font-size: 11px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
  .review-card { padding: 20px; }
  /* Small mobile gallery carousel adjustments */
  .gallery-carousel-wrapper { gap: 10px; }
  .gallery__item { flex: 0 0 220px; }
  .gallery__image { height: 160px; }
  .gallery-nav { font-size: 18px; height: 40px; width: 40px; padding: 8px; }
  /* Mobile lightbox adjustments */
  .lightbox__prev { left: 10px; font-size: 28px; padding: 12px 16px; }
  .lightbox__next { right: 10px; font-size: 28px; padding: 12px 16px; }
  .lightbox__close { top: 20px; right: 20px; font-size: 28px; padding: 6px 10px; }
  .lightbox__container { max-width: 95vw; max-height: 85vh; }
  /* Exclusively mobile view adjustments */
  .desktop-only { display: none !important; }
}

@media (min-width: 641px) {
  .mobile-only { display: none !important; }
}

/* Menu Page Styles */
.menu-hero {
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-bg) 100%);
  padding: 80px 0 60px;
  text-align: center;
}

.menu-hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 16px;
  color: var(--color-text);
}

.menu-hero__subtitle {
  font-size: 18px;
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto 16px;
}

.menu-hero__description {
  max-width: 500px;
  margin: 0 auto;
}

.menu-hero__description p {
  font-size: 16px;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.5;
}

.menu-description {
  text-align: center;
  color: var(--color-muted);
  margin-bottom: 40px;
  font-size: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Lunch Specials Table */
.lunch-specials-table {
  background: #101010;
  border: 1px solid #1e1e1e;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.table-header {
  display: grid;
  grid-template-columns: 80px 1fr 100px 100px;
  background: #1a1a1a;
  color: var(--color-text);
  font-weight: 600;
  padding: 16px 20px;
  border-bottom: 2px solid var(--color-primary);
}

.table-row {
  display: grid;
  grid-template-columns: 80px 1fr 100px 100px;
  border-bottom: 1px solid #1e1e1e;
  padding: 12px 20px;
  transition: background 0.2s ease;
}

.table-row:hover {
  background: #1a1a1a;
}

.table-row:last-child {
  border-bottom: none;
}

.table-cell {
  display: flex;
  align-items: center;
  padding: 4px 0;
}

.table-cell:first-child {
  font-weight: 600;
  color: var(--color-accent);
}

.table-cell:nth-child(3),
.table-cell:nth-child(4) {
  font-weight: 600;
  color: var(--color-accent);
  justify-content: flex-end;
}

/* Responsive table */
@media (max-width: 768px) {
  .table-header,
  .table-row {
    grid-template-columns: 60px 1fr 80px 80px;
    padding: 12px 16px;
  }
  
  .table-cell {
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .table-header,
  .table-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .table-cell {
    padding: 4px 0;
  }
  
  .table-cell:first-child {
    font-weight: 700;
    color: var(--color-primary);
  }
  
  .table-cell:nth-child(3),
  .table-cell:nth-child(4) {
    justify-content: flex-start;
  }
}



