/* assets/styles.css */

/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


:root {
  /* Core UI */
  --bg: #F9F5F5;
  /* Warmer, cleaner background */
  --card: #FFFFFF;
  --ring: #E6D4D4;
  /* base-200 */
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --line: #D7BBBB;

  /* Brand (source of truth) */
  --brand: #531616;
  /* Deep Brandy */
  --brand-d: #3B0F0F;
  /* Richer Dark Tone */
  --brand-soft: #F9F5F5;
  /* Warm Alabaster */

  /* Premium Accents */
  --accent-gold: #C5A028;
  /* Muted Gold for borders/highlights */
  --accent-gold-light: #E8D69A;

  /* Text */
  --ink: #2A0E0E;
  /* Warm Black */
  --muted: #704545;

  /* Utility */
  --neutral-warm: #F2EBEB;
  /* Refined section background */

  --max-width: 1400px;
  --c-width: 1280px;

  /* Aliases (semantic use) */
  --color-accent: var(--accent-gold);
  /* Switch accent to Gold */
  --color-burgundy: var(--brand);
  --color-dark-burgundy: var(--brand-d);

  /* Status Colors */
  --success: #2E6B4A;
  --success-light: #E6F2EC;
  --success-border: #9FC6B0;

  --error: #8B2C2C;
  --error-light: #F6E6E6;
  --error-border: #D9A3A3;
}


html {
  font-size: 106.25%;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  /* 16px */
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
}


h1,
h2 {
  font-family: 'Poppins', sans-serif;
  /* headlines */
  line-height: 1.4;
}

h3,
h4 {
  font-family: 'Cormorant Garamond', serif;
  /* maybe for something decorative */
}

h1 {
  font-size: 2.5rem;
  /* 40px */
  color: var(--color-burgundy);
}

h2 {
  font-size: 2rem;
  /* 32px */
  color: var(--color-dark-burgundy);
}

h3 {
  font-size: 1.5rem;
  /* 24px */
  color: var(--color-accent);
}

h4 {
  font-size: 1.25rem;
  /* 20px */
  color: var(--ink);
}

h5 {
  font-size: 1rem;
  /* 16px */
  font-weight: 600;
}

h6 {
  font-size: 0.875rem;
  /* 14px */
}

.italic {
  font-style: italic;
}

.center {
  text-align: center;
}

.small-words {
  font-size: .8rem !important;
}

.grid {
  display: grid;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.gap-4 {
  gap: 4rem;
}

.gap-5 {
  gap: 5rem
}

.border-bottom {
  border-bottom: 2px solid var(--color-burgundy);
}

.f-direction-column {
  flex-direction: column !important;
}

.j-start {
  justify-content: flex-start !important;
}

.j-center {
  justify-content: center;
}

.j-space-around {
  justify-content: space-around !important;
}

.j-space-bt {
  justify-content: space-between !important;
}

.align-c {
  align-items: center !important;
}

.align-start {
  align-items: flex-start !important;
}

.p0 {
  padding: 0 !important;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--error);
  background: var(--error-light);
  box-shadow: 0 0 0 3px rgba(139, 44, 44, 0.10);
}

.field-error {
  margin-top: 6px;
  color: var(--error);
  font-size: 0.85rem;
  line-height: 1.25;
}

.field-error::before {
  content: "⚠ ";
}

.spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--accent-gold-light);
  border-top: 2px solid var(--accent-gold);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-left: 8px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

button.loading .spinner {
  display: inline-block;
}

button.loading .btn-text {
  opacity: 0.7;
}

a {
  text-decoration: none;
}

.container {
  max-width: var(--c-width);
  margin: 4rem auto;
}

.full-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Hero Section */
.hero-editorial {
    background: #000;
    color: #fff;
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-editorial-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-editorial h1 {
    font-family: var(--serif);
    font-size: clamp(48px, 8vw, 84px);
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -2px;
    line-height: 1;
    color: var(--card);
}

.hero-editorial p {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(18px, 4vw, 28px);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
}

.swiper-button-next,
.swiper-button-prev {
  height: 40px !important;
}

.overlay-text .secondary-btn {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

.overlay-text .secondary-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #fff;
  color: #fff;
}

.btn,
.primary-btn,
.secondary-btn {
  margin-top: 0.5rem;
  /* padding: 0.7rem 1.25rem; */
  padding: 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
}

.btn {
  display: inline-block;
  text-decoration: none;
}

.secondary-btn {
  background: transparent;
  color: var(--brand);
  border: 1.5px solid var(--brand);
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}

.primary-btn:hover,
.secondary-btn:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.secondary-btn:hover {
  background: var(--brand-soft);
  color: var(--brand-d);
}

.secondary-btn:active {
  transform: translateY(0);
  box-shadow: none;
}


.swiper {
  width: 100%;
  height: 720px;
  /* stable, CLS-safe */
  position: relative;
  overflow: hidden;
}

.swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.50);
}

.overlay-text {
  position: absolute;
  left: 50%;
  top: 18%;
  /* anchored instead of shifting center */
  transform: translateX(-50%);
  /* only horizontal centering */
  color: white;
  text-align: left;
  /* background: linear-gradient(to top, rgba(17,17,17,.70), rgba(17,17,17,.20)); */
  padding: 1rem 2rem;
  border-radius: 8px;
  width: calc(100% - 2rem);
  /* prevents overflow on small screens */
  max-width: 768px;
  box-sizing: border-box;

  min-height: 240px;
  /* reserves space so font swap won't move anything */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.overlay-text .item-price {
  color: var(--bg);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .02em;

  background: rgba(0, 0, 0, .35);
  padding: .3em .7em;
  border-radius: 999px;
  display: inline-block;
}

.overlay-text h2,
.overlay-text h1 {
  color: var(--bg);
  margin: 2rem 0;
}

#backToTop {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--brand);
  color: #fff;

  border: none;
  border-radius: 50%;
  cursor: pointer;

  font-size: 1.25rem;
  line-height: 1;

  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);

  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
  z-index: 999;
}

#backToTop:hover {
  background: var(--brand-d);
}

#backToTop.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#elegant-bbq .item-price,#elegant-bbq h4 {
  color: var(--accent-gold-light);
}
#elegant-bbq h2,
#elegant-bbq h3 {color: var(--bg);}

.banquet-room h2,
#curbside,
#menuBanner h1,
footer a:hover .card-text-active,
.card-active,
#champions-meal-content h2,
#pizza-special-content h2,
#daily-specials h2,
#breakfast-menu.promo-section,
#togo h2,
#togo .item-price {
  color: var(--brand) !important;
}

.overlay-text h2,
.overlay-text h1 {
  font-size: 3rem;
}

.overlay-text p {
  margin: 0.5rem 0;
  font-size: 1.5rem;
}

#daily-special-content .item-price,
#champions-meal-content span,
#pizza-special-content span {
  color: var(--brand);
}

#daily-specials img {
  border-radius: 5%;
  box-shadow: var(--shadow);
}

/* Index Page Alternating Sections */

/* 1. Specials: Dark Brand */
#daily-specials {
  background-color: var(--brand);
  /* Dark Red */
  color: #ffffff;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-bottom: 4px solid var(--accent-gold);
}

/* 2. Promos: White */
#promos {
  background-color: #ffffff;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}

/* 3. To-Go: Warm Neutral (Handled below) */

/* 4. Banquet: White (Handled below) */

/* 5. Wedding Catering: Warm Neutral */
#wedding-catering {
  background-color: var(--neutral-warm);
  padding: 3rem 0;
  border-top: 1px solid var(--accent-gold);
  border-bottom: 1px solid var(--accent-gold);
}

#wedding-catering h2 {
  color: var(--brand-d);
}

/* 6. FB Feed: White (Handled below) */
#daily-special-content .flex {
  flex-wrap: nowrap;
}

#daily-special-content img {
  margin: 0 auto;
  width: 100%;
  max-width: 320px;
  max-height: 320px;
  height: 100%;
}

#special-buffet,
#a-la-carte,
.service-feature {
  background-color: var(--ring);
}

.promo-flyers {
  padding: 1.5rem;
}

.promo-flyers h2 {
  margin: 0 0 4rem 0;
  color: var(--color-dark-burgundy);
}

.promo-grid {
  justify-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 1rem;
}

.promo-card {
  background: var(--card);
  box-shadow: var(--shadow);
}

.promo-card {
  max-width: 480px;
  width: 100%;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.promo-card:hover {
  transform: translateY(-2px);
}

#togo {
  background-color: var(--neutral-warm);
  /* Alternating: Warm Neutral */
  color: var(--ink);
  /* Dark Text */
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-top: 1px solid var(--accent-gold);
  border-bottom: 1px solid var(--accent-gold);
}

#togo li,
#togo h2,
#togo h3,
#togo h4 {
  color: var(--brand-d) !important;
  /* Dark Brand Text for contrast */
}

#togo .container .flex img {
  max-height: 70vh;
  max-width: 100%;
  border: 2px solid var(--accent-gold);
  /* Gold border for image */
  border-radius: 8px;
}

#togo h2,
#togo h3,
#togo h4,
#togo ul {
  margin: 0 0 2rem 0;
}

#friday-buffet h2,
#friday-buffet h3 {
  margin-bottom: 2rem;
}

#friday-buffet img {
  width: 100%;
  margin: 0 auto;
  display: block;
  max-width: 640px;
  object-fit: contain;
}

/* Wedding Catering – Dedicated Service Section */
.service-feature {
  padding: 1.5rem;
}

.service-feature .flex {
  padding: 0;
  justify-content: left;
}

.service-feature a {
  width: 50%;
}

.service-grid {
  padding: 2rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.service-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.75rem;
  color: #5b0f1b;
  /* matches Rob’s burgundy tone */
}

.service-text p {
  max-width: 520px;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-text ul {
  margin: 1rem 0 1.5rem;
  padding-left: 1.2rem;
}

.service-text li {
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.service-text .btn,
.btn,
.cta-button-container a,
.inquiry-btn {
  background-color: var(--brand);
  color: var(--bg);
}

.service-text .btn:hover,
.btn:hover,
.cta-button-container a:hover,
.inquiry-btn:hover {
  background-color: var(--brand-d);
}

.cta-button-container a:hover {
  border: 0;
  color: var(--bg);
}

.service-text .btn {
  display: inline-block;
  padding: 0.65rem 1.4rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.service-text .btn:hover {
  transform: translateY(-1px);
}

#menu-main {
  min-height: 1000px;
}

/* Main Menu Alternating Sections */
.menu-category {
  padding: 0 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.menu-category:nth-of-type(even) {
  background-color: var(--neutral-warm);
}

/* Ensure alternating sections have seamless spacing */
.menu-content {
  gap: 0;
  /* Let margins handle it */
}

/* --- Section Backgrounds & Professional Polish --- */

/* Dark Brand Section (Champions) */
#champions-meal-deal {
  min-height: 480px;
}
#champions-meal-deal,
#pizza-special {
  background-color: var(--brand);
  color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  border: 2px solid var(--accent-gold);
  /* Premium Gold Border */
}

#champions-meal-deal h2,
#pizza-special h2,
#champions-meal-deal p,
#pizza-special p,
#champions-meal-deal span,
#pizza-special span {
  color: #ffffff !important;
}

/* Call to Action Buttons in Dark Sections */
#champions-meal-deal .cta-button-container a,
#pizza-special .cta-button-container a {
  background-color: var(--accent-gold);
  color: var(--brand-d);
  border: 1px solid var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

#champions-meal-deal .cta-button-container a:hover,
#pizza-special .cta-button-container a:hover {
  background-color: #ffffff;
  color: var(--brand);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* Light/Warm Sections */
#buffet {
  background-color: var(--card);
}
#breakfast-menu,
#buffet {
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* Refined Cards */
#buffet .menu-item {
  background-color: var(--card);
  box-shadow: var(--shadow);
  /* border: 1px solid rgba(0, 0, 0, 0.05); */
  /* Subtle definition */
  border-radius: 8px;
  padding: 1.5rem;

  width: 100%;
  max-width: 30%;
  border-top: 6px solid var(--brand);
}
#buffet .menu-item > p {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#buffet .menu-item .buffet-days p {
  display: flex;
  justify-content: space-between;
}

#breakfast-menu .card:hover,
#buffet .menu-item:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
  /* Gold highlight on hover */
  transition: all 0.3s ease;
}

/* Main Menu Alternating Sections */
.menu-category {
  border-radius: 8px;
  margin-bottom: 2rem;
  border: 1px solid transparent;
}

.menu-category:nth-of-type(even) {
  background-color: var(--neutral-warm);
  border-color: var(--ring);
}

.menu-category h2 {
  color: var(--brand-d);
  /* Deeper red for headers */
  border-bottom: 2px solid var(--accent-gold);
  /* Gold underline for headers */
  display: inline-block;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

/* Gold Accents for List Items */
.menu-list .item-price {
  font-weight: 700;
  color: var(--brand);
  /* Keep prices brand color or brand-dark */
}

/* --- End Professional Polish --- */


/* Image styling */
.service-image img {
  width: 100%;
  max-width: 440px;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .14);
  display: block;
  margin-left: auto;
}

#banquet-room {
  margin: -5px 0;
}

.banquet-room a {
  color: var(--accent-blue);
}

.banquet-room {
  padding: 2rem;
  text-align: center;
}

.banquet-room h2 {
  margin-bottom: 1rem;
}

.banquet-room p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.banquet-room a {
  transition: color .4s ease;
}

.banquet-room a:hover {
  color: var(--blue-700);
}

.banquet-content img {
  object-fit: contain;
  width: 100%;
  max-height: 640px;
}

#fb-feed,
#banquet-room {
  padding: 3rem 1.5rem;
  background-color: #ffffff;
  /* Alternating: White */
  border-top: 1px solid var(--line);
}

/* Ensure Banquet Text Colors */
.banquet-room h2 {
  color: var(--brand-d);
}

.fb-page {
  background: var(--card);
  border: 1px solid var(--ring);
  box-shadow: var(--shadow);
}


/* .fb-feed-container {
  max-width: 600px; /* or whatever you want */
/* margin: 0 auto;   /* center it */
/* width: 100%;
} */


/* Navigation Links */
#promos,
#navigation,
.tab,
.promo-section,
#breakfast-menu.promo-section {
  background-color: var(--bg);
}

#navigation {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-bottom: 3px solid var(--accent-gold);
  /* Gold navigation border */
}

#navigation .container {
  margin: 0 auto;
}

#navigation .flex {
  justify-content: space-around;
  align-items: center;
}

#navigation ul {
  list-style-type: none;
}


@media (min-width: 992px) {
  #navigation nav ul {
    display: flex;
    list-style: none;
    /* background: var(--color-bg); */
    padding: 0.5rem 1rem;
    /* box-shadow: 0 2px 4px rgba(0,0,0,0.1); */
  }
}

nav a {
  text-decoration: none;
  color: var(--ink);
  padding: 0.5rem 1rem;
  transition: color 0.2s ease;
}

nav a:hover {
  /* color: var(--color-burgundy); */
  background-color: var(--brand);
  color: white;
  box-shadow: inset 0px 0px 10px 0 var(--ink);
  /* padding: .6rem 1.25rem; */
  /* border-radius: 8px; */
  /* font-weight: 700; */
}

nav a.active {
  background-color: var(--brand);
  color: white;
  box-shadow: inset 0px 0px 10px 0 var(--ink);
  /* padding: .6rem 1.25rem; */
  /* border-radius: 8px; */
  /* font-weight: 700; */
  
}

.nav-toggle-wrapper {
  display: none;
  cursor: pointer;
  padding: 1rem;
  margin: -1rem;
  min-width: 48px;
  min-height: 48px;
  z-index: 1000;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}

.nav-list {
  display: flex;
  align-items: center;
  /* show normally in row */
  position: static;
  flex-direction: row;
  background: none;
  border: none;
  padding: 0;
}

.logo img {
  max-height: 96px;
}

/* End Navigation Links */

#curbside {
  padding: 4rem 0;
}

#curbside .curbside {
  align-items: center;
}

#menu {
  padding-top: 4rem;
}

#menuBannerHeader {
  min-height: 320px;
}

#menuBanner {
  background-color: var(--neutral-warm);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  border-bottom: 4px solid var(--accent-gold);
  /* Gold border for banner */
}

#menuBanner h1 {
  margin: 4rem 2rem;
}

.menu-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

/* Same width buttons */
.menu-actions .btn {
  min-width: 180px;
  text-align: center;
}

/* Jump links */
.menu-jumps {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.menu-jumps a {
  text-decoration: none;
  border: 1px solid var(--ring);
  border-radius: 999px;
  background: #fff;
  padding: 0.5rem 1rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.menu-jumps a:hover,
.menu-jumps a:focus-visible {
  border-color: var(--accent-gold);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}


.cta-button-container {
  justify-content: space-evenly !important;
}

.cta-button-container a {
  padding: 1rem 1.2rem;
  max-width: 320px;
  color: white;
  text-align: center;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  transition: background-color .3s ease, color .3s ease, box-shadow .3s ease-out, transform .3s ease;
}

.cta-button-container a:hover {
  transform: translateY(2px);
  /* box-shadow: 0 2px 0 var(--accent-green); */
}

.card .arrow-icon.rotate {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}


/* HEADER */
/* header {
  text-align: center;
  margin: 1.5rem 0;
}
header h1 {
  font-size: 2rem;
  color: var(--color-accent);
} */
/* CARD GRID */
.flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  /* ⬅️ prevent stretching to match height */
  justify-content: center;
  /* optional, centers your row of cards */
  /* gap: 5rem; */
  padding: calc(1rem) calc(1rem);
  /* margin: 2rem; */
}

.flex-column {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: .4rem;
}

.flex-item {
  flex: 1 1 calc(50% - 1rem);
  /* grow/shrink, base width 260px */
  max-width: 352px;
  /* optional cap so cards don’t get huge */
  display: flex;
  flex-direction: column;
}

.menu {
  justify-content: space-around !important;
}

.menu-header {
  margin: 0 auto;
}

.menu-header h2 {
  text-align: center;
  margin: 2rem 0;
}


/* EACH TAB */
.tab {
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 4px solid var(--accent-blue);
}

/* TAB HEADER: image + title */

/* Premium Card Styling */
.card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-text {
  position: relative;
  color: white;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-d) 100%);
  min-height: 3.5rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  border-top: 2px solid var(--accent-gold);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-text h3 {
  margin: 0;
  flex: 1;
}

.card-text a {
  color: inherit;
  text-decoration: none;
}

/* Hover Effects */
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  border-color: var(--accent-gold);
}

.card:hover .card-text {
  background: linear-gradient(135deg, var(--brand-d) 0%, var(--brand) 100%);
  border-top-color: var(--accent-gold);
  box-shadow: 0 -4px 12px rgba(197, 160, 40, 0.3);
}

.card-text-active {
  background: linear-gradient(135deg, var(--brand-d) 0%, var(--brand) 100%);
  border-top-color: var(--accent-gold);
}

.card:hover img {
  transform: scale(1.08);
}

/* Overlay a dark gradient for text legibility */
.inquiry-container {
  padding: 2rem;
}
.card-title {
  color: var(--bg);
  font-weight: bold;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  z-index: 1;
  /* above the gradient */
  transition: color 0.3s ease;
}

/* CONTENT PANEL */
.menu-section {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.menu-section.open {
  max-height: 2000px;
  padding: 1rem;
}

/* SECTION TITLE */
.menu-section h2 {
  margin-top: 0;
  /* font-size: 1.5rem; */
  color: var(--color-accent);
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 0.25rem;
}

/* DESCRIPTION TEXT */
.menu-section>p {
  margin: 0.5rem 0 1rem;
  font-size: 1rem;
  color: #555;
}

/* MENU LIST – no internal scroll */
.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
  gap: 2rem;
}

.menu-list li:last-child {
  border-bottom: none;
}

/* ITEM INFO */
.item-info {
  max-width: 70%;
}

.footer-content {
  border-bottom: 2px solid brown;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 calc(50% - 1rem);
  max-width: 320px;
  padding: calc(1rem) calc(1rem);
}

s .item-name {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-accent);
}

.item-desc {
  font-size: 0.9rem;
  color: #777;
  margin-top: 0.25rem;
}

/* PRICE */
.item-price {
  font-size: 1rem;
  /* font-weight: bold; */
  color: var(--color-accent);
  /* burgundy price */
  white-space: nowrap;
}

/* FULL-WIDTH PROMO SECTIONS */
#champions-meal-content h2,
#pizza-special-content h2,
#daily-specials h2 {
  margin: 0 0 4rem 0;
  /* font-size: calc(1.75rem + 1vw); */
}

#champions-meal-content span,
#pizza-special-content span {
  font-weight: bold;
}

#breakfast-menu,
#buffet,
#special-buffet,
#box-lunch {
  height: auto;
}

#breakfast-menu h2,
#buffet h2,
#special-buffet h2,
#box-lunch h2,
#special-events h2,
#elegant-bbq h2,
#weddings h2,
#about-us h2,
#contact h2,
#a-la-carte-content h2 {
  margin: 4rem 0;
}

#breakfast-menu.promo-section p,
#breakfast-menu.promo-section .item-name,
.banquet-room p {
  color: var(--ink);
}

#breakfast-menu .flex-item {
  max-width: 480px;
}

#breakfast-menu .card {
  height: 300px;
}

/* Keep promo text readable */
#champions-meal-deal.promo-section p,
#breakfast-menu.promo-section h3 {
  color: var(--bg);
}

.promo-section {
  /* height: 480px; */
  /* border-radius: 8px; */
  /* box-shadow: 0 2px 6px rgba(0,0,0,0.1); */
  /* margin: 2rem 1rem; */
  padding: 1.5rem;
}

.promo-section .item-price {
  font-size: 1.15rem;
  font-weight: 600;
}

.container,
.promo-header {
  height: 100%;
}

.promo-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}

.promo-header img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 4px;
}

.promo-header h2 {
  /* font-size: 1.75rem; */
  color: var(--color-burgundy);
  /* burgundy accent */
  margin: 0;
}

/* Promo text */
.promo-section p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
}

/* Headings within promo (e.g. A La Carte, Buffets) */
.promo-section h3 {
  /* font-size: 1.25rem; */
  color: var(--ink);
  margin: 1rem 0 0.5rem;
  padding-bottom: 0.25rem;
}

/* Reuse .menu-list styling for any lists */
.promo-section .menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.promo-section .menu-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.promo-section .menu-list li:last-child {
  border-bottom: none;
}
`n
#buffet .flex,
#special-buffet .flex {
  justify-content: space-evenly;
  align-items: stretch;
}

#buffet .menu-list,
#special-buffet .menu-list {
  max-width: 320px;
  width: 100%;
}

#pizza-special-content .menu-list li {
  text-align: start;
}

#pizza-special-content h3 {
  color: var(--gold)
}

#daily-special-content h3 {
  color: var(--ink);
}

#special-buffet .item-price,
#buffet .item-price {
  margin-right: .5rem;
}

/* Catering Page */
#corporateCatering .flex {
  gap: 1rem;
  border-radius: 30px;
}

#corporateCatering .flex img {
  border-radius: 30px;
}

.catering-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Catering Inquiry Form */
.catering-inquiry-section{
  background-color: var(--card);
}
#catering-inquiry {
  scroll-margin-top: 120px;
}

.inquiry-wrap {
  margin: 22px 0 0;
}

.inquiry-card {
  background: var(--brand-soft);
  border: 1px solid #f2dede;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.inquiry-head .h2 {
  margin-top: 0;
}

.inquiry-link {
  color: var(--brand);
  font-weight: 800;
  text-decoration: underline;
}

.inquiry-success {
  background: var(--success-light);
  color: var(--success);
  border-left: 6px solid var(--success-border);
  border-radius: 14px;
  padding: 12px 14px;
  margin: 12px 0 16px;
}
.alert-error {
  background: var(--error-light);
  color: var(--error);
  border-left: 6px solid var(--error-border);
  border-radius: 14px;
  padding: 12px 14px;
  margin: 12px 0 16px;
}

.inquiry-form {
  margin-top: 10px;
}

.inquiry-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.field label {
  display: block;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--ink);
}

.req {
  color: var(--brand);
  margin-left: 4px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--ring);
  background: var(--card);
  color: var(--ink);
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(83, 22, 22, 0.14);
}

.field-full {
  grid-column: 1 / -1;
}

.inquiry-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.inquiry-btn {
  padding: 12px 18px;
  border-radius: 12px;
  border: none;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  transition: background .2s ease, transform .15s ease;
}

.inquiry-btn:hover {
  transform: translateY(-1px);
}

.inquiry-note {
  margin: 0;
  font-size: 0.95rem;
}

/* Honeypot hidden offscreen */
.hp-field {
  position: absolute;
  left: -5000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.catering-left,
.catering-right {
  flex: 1 1 300px;
  /* Flex shrink/grow */
}

.catering-info p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 1rem;
}

#catering {
  background-image: url("../images/catering-main2.webp");
  height: 40vh;
  background-size: cover;
  background-attachment: fixed;
}

#catering h2 {
  color: var(--bg);
}

#box-lunch .container {
  max-width: 900px;
}

.catering-packages {
  margin: 2rem 0;
  display: flex;
}

.g-columns {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  padding: calc(1rem) calc(1rem);
}

#b-lunch-1 {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 3;
}

#b-lunch-2 {
  grid-column-start: 3;
  grid-column-end: 4;
  grid-row-start: 1;
  grid-row-end: 3;
}

#b-lunch-3 {
  grid-column-start: 1;
  grid-column-end: 4;
  grid-row-start: 3;
}

#box-lunch .menu-item {
  max-width: none;
  border: 2px solid var(--color-burgundy);
  box-shadow: 2px 2px 0 var(--ink);
  padding: 1rem;
}

#box-lunch h3 {
  color: var(--color-accent);
}

/* #box-lunch h4 {
  font-size: 1.05rem;
} */

#bargain-deals {
  padding:4rem 0;
}
#elegant-bbq-main,#box-lunch,#weddings-section,#bargain-deals {
  background-color: var(--card);
}
#weddings,#special-events {
  background-color: var(--brand-soft);
}

#special-events,
#weddings-section,
#togo {
  padding: 1.5rem;
}

#special-events #special-events-details h3,
#weddings {
  margin: 1rem;
}

#special-events #special-events-details ul {
  list-style: circle;
  line-height: 1.5rem;
}


#special-events .item-info {
  max-width: none;
}

#elegant-bbq {
  height: auto;
  background: url("../images/beef-brisket.webp");
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  /* background-color: var(--color-dark-burgundy); */
  /* background: linear-gradient(135deg, var(--color-dark-burgundy), var(--color-accent)); */
  /* background: linear-gradient(135deg, var(--color-burgundy), var(--color-peach)); */

}

#elegant-bbq .g-columns {
  justify-items: center;
}

.spread {
  display: flex;
}

#e-bbq-1 {
  grid-column: 1 / -1;
  max-width: none;
  border: none;
  box-shadow: none;
  border-bottom: 2px solid var(--bg);
  margin-bottom: 2rem;
}

#e-bbq-2,
#e-bbq-3,
#e-bbq-4,
#e-bbq-5,
#e-bbq-6 {
  border: 2px solid var(--color-dark-burgundy);
  box-shadow: 2px 2px 2px;
  background-color: var(--color-burgundy);
  border-radius: 12px;
}

#e-bbq-2:hover,
#e-bbq-3:hover,
#e-bbq-4:hover,
#e-bbq-5:hover,
#e-bbq-6:hover {
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

#elegant-bbq h4 {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

#elegant-bbq p,
#elegant-bbq ul {
  color: var(--neutral-warm);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

#elegant-bbq .menu-item {
  /* border: none; */
  justify-content: flex-start;
  min-width: 250px;
  width: 100%;
}

#elegant-bbq ul {
  list-style: none;
}

.custom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 equal columns */
  grid-template-rows: repeat(4, 200px);
  /* 4 equal rows */
  /* gap: 10px; */
  /* max-width: 1200px; */
  margin: auto;
  /* padding: 1rem; */
}

.custom-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* border-radius: 8px; */
}

/* Large images take 2 columns and 2 rows */
.custom-grid .large:nth-of-type(1) {
  grid-column: 1 / 3;
  /* spans columns 1-2 */
  grid-row: 1 / 3;
  /* spans rows 1-2 */
}

.custom-grid .large:nth-of-type(2) {
  grid-column: 1 / 3;
  /* spans columns 1-2 */
  grid-row: 3 / 5;
  /* spans rows 3-4 */
}

/* Small images stack in the last column */
.custom-grid .small:nth-of-type(3) {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.custom-grid .small:nth-of-type(4) {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

.custom-grid .small:nth-of-type(5) {
  grid-column: 3 / 4;
  grid-row: 3 / 5;
  /* slightly larger to fill rows 3-4 */
}

/*  About Us Section */
#about-us a {
  color: var(--swiper-theme-color);
}

#about-us h3,
#contact h3 {
  margin-bottom: 2rem;
}

#about-us img {
  display: block;
  margin: 2rem auto;
  width: 100%;
  object-fit: contain;
  max-height: 448px;
}

#contact,
#about-us {
  padding: 1.5rem;
}

.contact-info {
  padding: 1.5rem;
  width: 512px;
}

.contact-info a {
  color: var(--ink);
}

.contact-info ul {
  list-style-type: none;
}

.map-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 2px solid var(--color-accent);
}

.map-container iframe {
  width: 100%;
}



/* Footer Section */
footer {
  background-color: var(--ink);
  color: var(--bg);
  padding: 1.5rem;
}

footer .footer-content {
  flex: 1 1 200px;
  border: none;
}

footer .container {
  margin: 0 auto;
}

footer .logo img {
  filter: invert();
  max-width: 160px;
  max-height: 160px;
  width: 100%;
  margin: 0 auto;
}

footer a {
  color: var(--bg);
  transition: color .4s ease;
}

footer h3 {
  color: var(--peach);
}

footer ul {
  list-style: none;
}

/* #champions-meal-deal,
#breakfast-menu {
  transform: translateY(100%);
  transition: transform 0.5s ease-out;
} */

/* @media (max-width: 1180px) {
  .cta-button-container a {
    max-width: 320px;
  }
} */

/* styles.css */
.buffet-days {
  margin-bottom: 0.5rem;
}

.buffet-days p {
  margin: 0.2rem 0;
  font-size: 1rem;
  /* color: #800020; */
}

/* A la Carte Catering */
#a-la-carte {
  padding: 2rem 1rem;
  height: auto;
}

#a-la-carte .menu-list {
  max-width: 720px;
  margin: 0 auto;
}

#a-la-carte .menu-list li {
  justify-content: center;
}

#a-la-carte .item-desc {
  font-size: 0.95rem;
  color: #555;
}

#a-la-carte .extras {
  margin-top: 1.5rem;
}


@media (max-width:1024px) {
  html {
    font-size: 100%;
  }

  .overlay-text h2,
  .overlay-text h1 {
    font-size: 2rem;
  }

  .overlay-text p {
    font-size: 1rem;
  }

  footer .footer-content {
    flex: 1 1 400px;
  }
}

@media (max-width:991.98px) {
  #buffet .menu-item {
    max-width: 47%;
  }

  /* Basic mobile first styles */
  nav {
    width: 100%;
  }

  .nav-list {
    display: none;
    /* hide by default on small screens */
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    text-align: center;
  }

  /* Show when open */
  .nav-list.open {
    display: flex;
  }

  .swiper-button-next,
  .swiper-button-prev {
    height: 30px !important;
  }

  .service-feature .flex {
    padding: 0;
    justify-content: center;
  }

  /* Hamburger button wrapper for larger tap area */
  .nav-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Hamburger button */
  .nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    color: var(--brand);
  }

  .inquiry-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-image img {
    margin: 1rem auto 0;
    max-width: 360px;
  }

  .service-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-text ul {
    text-align: center;
    display: inline-block;
  }

}

@media (max-width:768px) {
  #buffet .menu-item {
    max-width: 100%;
  }

  #buffet .menu-item > p {
    justify-content: start;
    flex-wrap: wrap;
    gap: 1rem;
  }
  #buffet .menu-item .buffet-days p {
    justify-content: start;
    flex-wrap: wrap;
    gap: 1rem;
  }

  #champions-meal-deal {
    min-height: 460px;
  }
  #navigation .logo img {
    max-height: 72px;
  }

  #navigation .flex {
    gap: 1rem;
  }

  #navigation .flex .cta-button-container a {
    padding: .5rem 1rem;
  }

  /* Basic mobile first styles */
  .nav-list {
    display: none;
    /* hide by default on small screens */
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    text-align: center;
  }

  /* Show when open */
  .nav-list.open {
    display: flex;
  }

  /* Hamburger button */
  .nav-toggle-wrapper {
    display: flex;
  }

  .nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
  }

  #daily-special-content .flex {
    flex-wrap: wrap;
  }

  .overlay-text {
    text-align: center;
  }

  .overlay-text .overlay-buttons {
    justify-content: center !important;
  }

  .overlay-text h2,
  .overlay-text h1 {
    font-size: 2rem;
  }

  .overlay-text p {
    font-size: 1rem;
  }

  #b-lunch-1,
  #b-lunch-2,
  #b-lunch-3 {
    grid-column: auto;
    grid-row: auto;
  }

  #elegant-bbq .g-columns {
    grid-template-columns: 1fr 1fr;
  }

  #elegant-bbq .menu-item {
    align-items: center;
  }

  .spread {
    flex-wrap: wrap;
    justify-content: center;
  }

  .custom-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .custom-grid img {
    grid-column: auto;
    grid-row: auto;
    height: auto;
  }

  footer .footer-content {
    justify-content: start;
    flex: 1 1 100%;
    text-align: center;
  }

  footer .container .flex {
    flex-direction: column;
    align-items: center;
  }

  footer .container .social-icons {
    flex-direction: row;
    align-items: center;
  }

  footer .logo img {
    max-width: 192px;
    max-height: 192px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  html {
    font-size: 90%;
  }

  .nav-items {
    gap: 1.5rem;
  }

  .swiper {
    height: 80vh;
  }

  .swiper-button-next,
  .swiper-button-prev {
    height: 20px !important;
  }

  /* #navigation nav {
    display: none;
  } */

  .menu-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .menu-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .cta-button-container a {
    max-width: none;
    padding: 1rem 1.2rem;
  }

  .service-feature a {
    width: 100%;
  }

  s .promo-grid {
    gap: 12px;
  }

  .tab {
    flex: 1 1 100%;
    max-width: none;
  }

  .card-grid {
    padding: 0 1rem 2rem;
    margin: 1rem;
  }

  .flex-column {
    text-align: center;
  }

  .card-title {
    font-size: 1.4rem;
  }

  .arrow-icon {
    bottom: .9rem;
  }

  .menu-item,
  .footer-content {
    flex: 1 1 100%;
  }

  #elegant-bbq .g-columns {
    grid-template-columns: 1fr;
  }

  /* Footer Section */

  footer .footer-content {
    justify-content: start;
    /* flex: 0; */
    text-align: center;
  }

  footer .logo img {
    max-width: 128px;
    max-height: 128px;
  }

  footer .container .flex {
    flex-direction: column;
    align-items: center;
  }

  footer .container .social-icons {
    flex-direction: row;
    align-items: center;
  }

}




/* --- NEW MENU LAYOUT STYLES --- */
.menu-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  align-items: start;
  gap: 2.5rem;
  max-width: var(--c-width);
  margin: 0 auto;
  padding: 2rem 1rem 0;
}

.menu-layout > section {
  grid-column: 2;
}

.menu-wrapper {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
  position: relative;
}

.menu-sidebar {
  position: sticky;
  top: 120px;
  /* Adjust based on header */
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  padding-right: 1rem;
}

.menu-content {
  padding: 0;
}

.sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  border-left: 2px solid #e0e0e0;
}

.sidebar-nav li {
  margin-bottom: 0.5rem;
}

.sidebar-group-title {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin: 0 0 0.6rem 0;
}

.sidebar-nav a {
  display: block;
  padding: 0.5rem 0 0.5rem 1.5rem;
  color: #666;
  text-decoration: none;
  font-weight: 500;
  border-left: 3px solid transparent;
  margin-left: -2px;
  transition: all 0.2s ease;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  color: var(--color-burgundy);
  border-left-color: var(--color-burgundy);
  background: linear-gradient(to right, rgba(128, 0, 32, 0.05), transparent);
}

.menu-category {
  display: block;
  opacity: 1;
  animation: fadeIn 0.35s ease-out;
  scroll-margin-top: 150px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-category:last-child {
  border-bottom: none;
}

.category-title {
  font-size: 2rem;
  color: var(--color-burgundy);
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.section-desc {
  font-style: italic;
  color: #666;
  margin-bottom: 1.5rem;
}

.clean-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px dotted #ccc;
}

.clean-list li:last-child {
  border-bottom: none;
}

@media(min-width: 1024px) {
  .menu-category .clean-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 4rem;
    align-items: start;
  }

  .menu-category .clean-list li {
    border-bottom: 1px dotted #ccc;
    /* Ensure grid items have borders */
    margin-right: 1rem;
  }

  /* Remove border for last 2 items (approx) or let it be */
  .menu-category .clean-list li:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

.item-prices {
  display: flex;
  gap: 1rem;
  text-align: right;
  flex-direction: column;
}

.menu-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.menu-hub-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--ring);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.menu-hub-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
}

.menu-hub-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.menu-hub-card-body {
  padding: 1rem;
}

.menu-hub-card-body h3 {
  margin-bottom: 0.5rem;
}

.menu-hub-card-body p {
  margin: 0;
  color: var(--muted);
}

.menu-page-main {
  background: linear-gradient(180deg, #fff 0%, var(--neutral-warm) 100%);
  padding-bottom: 2rem;
}

.menu-page-toolbar-wrap {
  position: sticky;
  top: 82px;
  z-index: 920;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--ring);
}

.menu-page-toolbar {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0.65rem 1rem;
}

.menu-page-main .promo-section {
  padding-top: 0.75rem;
  padding-bottom: 1rem;
}

.menu-page-main .container {
  margin: 1rem auto;
}

.menu-page-panel {
  background: var(--card);
  border: 1px solid var(--ring);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 1rem 1.25rem;
}

.menu-page-header {
  margin-bottom: 0.75rem;
}

.menu-page-header h1 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.35rem);
}

.pizza-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--ring);
  box-shadow: var(--shadow);
  background: var(--card);
}

.pizza-hero img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.pizza-hero-text {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, var(--neutral-warm), #fff);
}

.pizza-hero-text h1 {
  margin-bottom: 0.5rem;
}

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

.pizza-special-grid .menu-item {
  background: var(--brand-soft);
  border: 1px solid var(--ring);
  padding: 1.2rem 1.1rem;
  border-radius: 12px;
}

.pizza-special-grid .menu-item h3 {
  margin-bottom: 0.55rem;
}

.pizza-special-grid .menu-item .item-desc {
  margin-bottom: 0.7rem;
}

.menu-page-main #buffet .menu-item,
.menu-page-main #special-buffet .menu-item {
  padding: 1.2rem 1.1rem;
  border-radius: 12px;
}

.menu-page-main #buffet .menu-item h3,
.menu-page-main #special-buffet .menu-item h3 {
  margin-bottom: 0.55rem;
}

.menu-page-main #buffet .menu-item .item-desc,
.menu-page-main #special-buffet .menu-item .item-desc {
  margin-bottom: 0.7rem;
}

.pizza-size-note {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.pizza-size-note span {
  background: var(--neutral-warm);
  border: 1px solid var(--ring);
  color: var(--brand-d);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
}

.menu-page-main #pizza .clean-list li {
  align-items: start;
}

.menu-page-main #pizza .item-prices {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 0.45rem;
  justify-content: end;
}

.menu-page-main #pizza .item-prices .item-price {
  background: var(--neutral-warm);
  border: 1px solid var(--ring);
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  font-size: 0.88rem;
  line-height: 1.2;
}

.menu-page-main #pizza .item-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand-d);
  letter-spacing: 0.01em;
}

.menu-page-main #pizza .item-desc {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
  max-width: 56ch;
}

.buffet-page .buffet-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--ring);
  box-shadow: var(--shadow);
  background: var(--card);
}

.buffet-page .buffet-hero img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.buffet-page .buffet-hero-text {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, var(--neutral-warm), #fff);
}

.buffet-page .buffet-panel {
  padding: 1.25rem;
}

.buffet-page .buffet-highlight-grid,
.buffet-page .buffet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.buffet-page .buffet-highlight-grid {
  margin-bottom: 0.9rem;
}

.buffet-page .buffet-card {
  background: #fff;
  border: 1px solid var(--ring);
  border-top: 4px solid var(--accent-gold);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 1.2rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.buffet-page .buffet-card-feature {
  background: var(--brand-soft);
}

.buffet-page .buffet-card h3 {
  margin: 0;
  color: var(--brand);
  font-size: 1.18rem;
  line-height: 1.2;
}

.buffet-page .buffet-time {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
}

.buffet-page .buffet-prices {
  margin-top: 0.15rem;
  font-weight: 700;
  color: var(--brand-d);
  line-height: 1.45;
  background: var(--neutral-warm);
  border: 1px solid var(--ring);
  border-radius: 10px;
  padding: 0.6rem 0.7rem;
}

.buffet-page .buffet-card .item-desc {
  margin: 0;
  color: var(--ink);
  line-height: 1.45;
  font-size: 0.97rem;
}

.buffet-page .buffet-card .small-words.italic {
  margin: 0.1rem 0 0;
  font-size: 0.86rem !important;
  line-height: 1.45;
}

.buffet-page .buffet-badges {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.buffet-page .buffet-badges span {
  background: var(--neutral-warm);
  border: 1px solid var(--ring);
  color: var(--brand-d);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Open-row buffet layout (non-boxed menu rows) */
.buffet-page .buffet-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.buffet-page .buffet-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 1rem;
  padding: 1rem 0.2rem 1rem 0;
  border-bottom: 1px dashed var(--line);
}

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

.buffet-page .buffet-row h3 {
  margin: 0 0 0.25rem;
  color: var(--brand);
  font-size: 1.2rem;
  line-height: 1.2;
}

.buffet-page .buffet-row .buffet-time,
.buffet-page .buffet-row .item-desc,
.buffet-page .buffet-row .small-words.italic {
  margin: 0.15rem 0;
  color: var(--muted);
  line-height: 1.5;
  max-width: 78ch;
}

.buffet-page .buffet-row .buffet-prices {
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
  text-align: right;
  max-width: 42ch;
}

.buffet-page .buffet-row .buffet-prices .item-price {
  background: var(--neutral-warm);
  border: 1px solid var(--ring);
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  font-size: 0.88rem;
  line-height: 1.2;
  color: var(--brand-d);
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .menu-page-toolbar-wrap {
    top: 62px;
  }

  .menu-page-toolbar {
    justify-content: stretch;
  }

  .menu-page-toolbar .btn {
    width: 100%;
    text-align: center;
    margin: 0;
  }

  .menu-page-main .container {
    margin: 0.75rem auto;
  }

  .pizza-hero {
    grid-template-columns: 1fr;
  }

  .pizza-special-grid {
    grid-template-columns: 1fr;
  }

  .buffet-page .buffet-hero {
    grid-template-columns: 1fr;
  }

  .buffet-page .buffet-card {
    padding: 1rem 0.95rem;
    gap: 0.6rem;
  }

  .buffet-page .buffet-card h3 {
    font-size: 1.08rem;
  }

  .buffet-page .buffet-row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    padding: 0.9rem 0 0.9rem 0;
  }

  .buffet-page .buffet-row h3 {
    font-size: 1.08rem;
  }

  .buffet-page .buffet-row .buffet-prices {
    text-align: left;
    max-width: none;
    margin-top: 0.15rem;
    justify-content: flex-start;
  }

  .menu-page-main #pizza .clean-list li {
    flex-direction: column;
    gap: 0.7rem;
  }

  .menu-page-main #pizza .item-prices {
    grid-template-columns: repeat(3, max-content);
    justify-content: start;
  }

  .menu-page-main #pizza .item-name {
    font-size: 1.03rem;
  }
}


/* --- FOOTER & CATERING GLOBAL STYLES --- */

.site-footer {
  background-color: var(--brand-d) !important;
  /* Deep Brand Footer */
  color: #ffffff;
  padding: 3rem 0;
  border-top: 4px solid var(--accent-gold);
}

.site-footer h3 {
  color: var(--accent-gold) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.site-footer a,
.site-footer p,
.site-footer li,
.footer-email ul li {
  color: #f0f0f0 !important;
}

.site-footer a:hover {
  color: var(--accent-gold) !important;
}

/* Catering Specific Styles */
.hero {
  background: linear-gradient(180deg, #ffffff, var(--neutral-warm)) !important;
  border: 1px solid var(--accent-gold) !important;
  box-shadow: var(--shadow-lg) !important;
}

.brandline {
  color: var(--brand) !important;
}

.brandline .dot {
  background: var(--accent-gold) !important;
}

/* Catering Tabs */
.tab-controls {
  border: 1px solid var(--ring) !important;
  color: var(--ink) !important;
  background: #fff;
  font-weight: 700 !important;
}

/* Catering Buttons */
.cta-primary {
  background: var(--brand) !important;
  color: #fff !important;
  border: 1px solid var(--brand) !important;
}

.cta-primary:hover {
  background: var(--brand-d) !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-secondary {
  padding: .8rem;
  background: #fff !important;
  color: var(--brand) !important;
  border: 2px solid var(--accent-gold) !important;
}

.cta-secondary:hover {
  background: var(--neutral-warm) !important;
  color: var(--brand-d) !important;
}

/* Wedding & Contact Adjustments */
.service-feature {
  background-color: var(--neutral-warm);
  border-top: 1px solid var(--line);
}

/* Contact Page Cards */
.contact-info {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--ring);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.2s;
  margin: 1rem;
}

.contact-info:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-lg);
}

/* --- Special Buffet Section Redesign --- */

#special-buffet {
  background-color: var(--neutral-warm);
  border-top: 1px solid var(--line);
}

.panel-cta-footer,
.deals-inquiry-box {
  margin: 2rem auto 3rem;
  padding: 2.5rem;
  background: var(--neutral-warm);
  border-radius: 16px;
  border: 2px dashed var(--accent-gold);
  text-align: center;
  max-width: 800px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.panel-cta-footer p,
.deals-inquiry-box p {
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brand-d);
}

/* Contact Page Enhancements */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contact-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--line);
  transition: transform 0.3s ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-link {
  color: var(--brand);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: block;
  overflow-wrap: anywhere;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  text-align: left;
  display: inline-block;
}

.hours-list li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.hours-list li span {
  font-weight: 700;
  color: var(--brand-d);
  width: 100px;
  display: inline-block;
}

.contact-inquiry-split {
  background: var(--neutral-warm);
  padding: 5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.inquiry-promo {
  margin-bottom: 3rem;
}

#special-buffet .promo-header h2 {
  color: var(--brand-d);
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

#special-buffet .promo-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-gold);
  margin: 0.5rem auto 0;
}

/* Grid Layout for Buffet Cards */
#special-buffet .flex {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: stretch;
  /* Ensure cards are same height */
}

/* Individual Buffet Card Styling */
#special-buffet .menu-item {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  /* Soft premium shadow */
  border-top: 5px solid var(--accent-gold);
  /* Gold Accent Top */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#special-buffet .menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

#special-buffet .menu-item h3 {
  color: var(--brand);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--ring);
  padding-bottom: 0.75rem;
}

#special-buffet .menu-item .item-desc {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  /* Pushes price to bottom */
}

/* Price Styling within Cards */
#special-buffet .menu-item p:last-child {
  background: var(--brand-soft);
  padding: 1rem;
  border-radius: 8px;
  margin-top: auto;
  border: 1px dashed var(--line);
}

#special-buffet .item-price {
  font-weight: 700;
  color: var(--brand-d);
  color: var(--brand);
}
`n
/* Global Navigation CTAs */
.nav-ctas {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-left: 1rem;
}

.nav-btn-primary,
.nav-btn-secondary {
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-btn-primary {
  background: var(--brand);
  color: #fff !important;
  border: 1px solid var(--brand);
}

.nav-btn-primary:hover {
  background: var(--brand-d);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.nav-btn-secondary {
  background: #fff;
  color: var(--brand) !important;
  border: 2px solid var(--accent-gold);
}

.nav-btn-secondary:hover {
  background: #fffafa;
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .menu-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem 0 0;
  }

  .menu-layout > section,
  .menu-layout > aside {
    grid-column: 1;
  }

  .menu-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .catering-cta-row {
    justify-content: center;
  }

  .menu-sidebar {
    position: sticky;
    top: 60px;
    /* Below navbar */
    z-index: 900;
    /* Reduced z-index to stay below main nav if needed */
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    /* Frosted glass effect */
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-left: 1rem;
    padding-right: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    max-height: none;
    overflow-y: hidden;
  }

  .sidebar-nav ul {
    border-left: none;
    display: flex;
    overflow-x: auto;
    gap: 0.75rem;
    padding-bottom: 0.25rem;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 1rem;
  }

  .sidebar-nav ul::-webkit-scrollbar {
    display: none;
  }

  .sidebar-nav li {
    margin: 0;
    scroll-snap-align: start;
    flex-shrink: 0;
  }

  .sidebar-nav a {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-left: none;
    border-bottom: none;
    margin: 0;
    background: #f1f3f5;
    border-radius: 99px;
    /* Fully rounded pills */
    color: #555;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 1px solid transparent;
  }

  .sidebar-nav a.active {
    background: var(--color-burgundy);
    color: white;
    border-color: var(--color-burgundy);
    transform: translateY(-1px);
  }

  .menu-category {
    scroll-margin-top: 200px;
    /* Adjusted for taller headers */
  }
  .nav-ctas {
    flex-direction: column;
    margin: 1rem 0;
    width: 100%;
  }

  .nav-btn-primary,
  .nav-btn-secondary {
    width: 100%;
    text-align: center;
  }
}

