﻿@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-color: #e23515;
  --primary-color-light: #fff5f3;
  --primary-color-dark: #e23515;
  --accent-yellow: #ffbd07;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --text-mid: #444444;
  --white: #ffffff;
  --border-color: #e0e0e0;
  --bg-light: #f9f9f9;
  --max-width: 1200px;

  --primary: #e23515;
  --bg-primary: #1a1a1a;
  --section-padding: 5rem 0;

  --fw-400: 400;
  --fw-600: 600;
  --fw-700: 700;
}

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

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", "Roboto", sans-serif;
  background-color: #ffffff;
  color: var(--text-dark);
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 4rem 1rem;
}

.section__header {
  margin-bottom: 0.5rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
  text-align: center;
}

.section__description {
  color: var(--text-light);
  line-height: 1.75rem;
  text-align: center;
  font-size: 0.95rem;
}

/* ===========================
   BUTTON STYLES
=========================== */

.btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  outline: none;
  border: 2px solid var(--primary-color-dark);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  color: #fff;
  background-color: var(--primary-color-dark);
  border-radius: 4px;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  background-color: #bf2c10;
  border-color: #bf2c10;
  color: #fff;
}

.btn-outline {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  outline: none;
  border: 2px solid var(--primary-color-dark);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  color: var(--primary-color-dark);
  background-color: transparent;
  border-radius: 4px;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn-outline:hover {
  background-color: var(--primary-color-dark);
  color: #fff;
}

/* ===========================
   TOP UTILITY BAR
=========================== */

.top-bar {
  background-color: #f0f0f0;
  border-bottom: 1px solid #ddd;
  padding: 0.4rem 1.5rem;
  font-size: 0.82rem;
}

.top-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Colored brand social icons */
.top-bar__social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  font-size: 0.85rem;
  color: #fff;
  transition: opacity 0.2s;
}

.top-bar__social a:hover {
  opacity: 0.85;
}

.top-bar__social a.social-fb   { background-color: #1877f2; }
.top-bar__social a.social-ig   { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.top-bar__social a.social-tt   { background-color: #000000; }

/* Dark pill badges for contact */
.top-bar__contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.top-bar__contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #222;
  color: #fff;
  padding: 0.28rem 0.85rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: background 0.2s;
}

.top-bar__contact a:hover {
  background-color: var(--primary-color);
}

.top-bar__contact a i {
  font-size: 0.85rem;
  color: #fff;
}

/* ===========================
   NAVBAR
=========================== */

.nav__container {
  position: static;
  width: 100%;
  z-index: 100;
  background: linear-gradient(180deg, #f8f8f8 0%, #ececec 100%);
  border-bottom: 3px solid var(--primary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1rem;
  gap: 1rem;
}

.nav__logo a {
  display: flex;
  align-items: center;
}

.logo__image {
  width: 250px;
  height: auto;
}

@media (max-width: 600px) {
  .logo__image {
    width: 150px;
  }
}

.nav__menu__btn {
  font-size: 1.6rem;
  color: var(--text-dark);
  cursor: pointer;
  display: none;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links > li > a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav__links > li > a:hover,
.nav__links > li > a.active {
  color: var(--primary-color);
}

.nav__links > li > a.active {
  border-bottom: 2px solid var(--primary-color);
}

/* Dropdown */
.location-dropdown {
  position: relative;
}

.location-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-top: 2px solid var(--primary-color);
  min-width: 200px;
  z-index: 200;
  list-style: none;
  padding: 0.5rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.location-dropdown:hover .dropdown-menu {
  display: block;
}

.location-dropdown .dropdown-menu li a {
  display: block;
  padding: 0.5rem 1.2rem;
  font-size: 0.88rem;
  color: var(--text-dark);
  transition: background 0.15s, color 0.15s;
}

.location-dropdown .dropdown-menu li a:hover {
  background-color: var(--primary-color-light);
  color: var(--primary-color);
}

.location-dropdown-mobile {
  display: none;
}

.nav__btn {
  display: flex;
  align-items: center;
}

.nav__btn .btn {
  font-size: 0.9rem;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
}

.nav__btn-mobile {
  display: none;
}

/* Mobile nav */
@media (max-width: 900px) {
  .nav__menu__btn {
    display: block;
  }

  .nav__btn {
    display: none;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    gap: 0.25rem;
    z-index: 99;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links > li {
    width: 100%;
  }

  .nav__links > li > a {
    display: block;
    padding: 0.6rem 0.5rem;
    font-size: 1rem;
    border-bottom: 1px solid #f0f0f0;
  }

  .location-dropdown {
    display: none;
  }

  .location-dropdown-mobile {
    display: block;
    width: 100%;
  }

  .location-dropdown-mobile > a {
    display: block;
    padding: 0.6rem 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
  }

  .location-dropdown-mobile .dropdown-menu {
    display: none;
    list-style: none;
    padding: 0;
    background-color: var(--bg-light);
  }

  .location-dropdown-mobile.open .dropdown-menu {
    display: block;
  }

  .location-dropdown-mobile .dropdown-menu li a {
    display: block;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    color: var(--text-mid);
    border-bottom: 1px solid #f0f0f0;
  }

  .location-dropdown-mobile .dropdown-menu li a:hover {
    color: var(--primary-color);
  }

  .nav__btn-mobile {
    display: block;
    width: 100%;
    margin-top: 0.5rem;
  }

  .nav__btn-mobile a {
    display: block;
    width: 100%;
    text-align: center;
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    font-size: 1rem;
  }

  .top-bar__contact {
    display: none;
  }
}

/* ===========================
   HERO / HOME BANNER
=========================== */

#home-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

#home-hero .cs-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#home-hero .cs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}

#home-hero .cs-slide.active {
  opacity: 1;
}

#home-hero .cs-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  z-index: 1;
}

#home-hero .cs-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#home-hero .cs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.38);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  padding: 0;
  line-height: 1;
}

#home-hero .cs-arrow:hover {
  background: rgba(226, 53, 21, 0.75);
  border-color: rgba(226, 53, 21, 0.8);
}

#home-hero .cs-prev {
  left: 1.5rem;
}

#home-hero .cs-next {
  right: 1.5rem;
}

#home-hero .cs-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6rem 1rem;
  text-align: center;
}

#home-hero .cs-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  margin: 0 auto 0.5rem auto;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  text-align: center;
}

#home-hero .cs-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: #ffbd07;
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}

#home-hero .cs-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #ffbd07;
  margin: 0.6rem auto 1rem;
}

#home-hero .cs-text {
  font-size: 1rem;
  color: #f0f0f0;
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

#home-hero .cs-button-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

#home-hero .cs-button-solid {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 4px;
  border: 2px solid var(--primary-color);
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}

#home-hero .cs-button-solid:hover {
  background-color: #bf2c10;
  border-color: #bf2c10;
}

/* Yellow "Our Menu" button — matches original site */
#home-hero .cs-button-yellow {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  background-color: #ffbd07;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 4px;
  border: 2px solid #ffbd07;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}

#home-hero .cs-button-yellow:hover {
  background-color: #e0a800;
  border-color: #e0a800;
}

#home-hero .cs-button-outline {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  background-color: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 4px;
  border: 2px solid #fff;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

#home-hero .cs-button-outline:hover {
  background-color: #fff;
  color: var(--primary-color);
}

/* cs-background support for individual location pages using #home-hero */
#home-hero .cs-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#home-hero .cs-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  z-index: 1;
}

#home-hero .cs-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===========================
   ABOUT / EXPLORE SECTIONS
=========================== */

.explore__container {
  display: grid;
  gap: 3rem;
  overflow: hidden;
  padding: 4rem 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .explore__container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.explore__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  object-fit: cover;
  max-height: 380px;
}

.explore__content .section__header {
  text-align: left;
  font-size: 1.75rem;
}

.explore__content .section__header span {
  color: var(--primary-color);
}

.explore__content .section__description {
  text-align: left;
  margin-bottom: 1.5rem;
}

.explore__btn {
  text-align: left;
}

.explore__btn a {
  color: #fff;
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 0.65rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.explore__btn a:hover {
  background-color: #bf2c10;
  border-color: #bf2c10;
  color: #fff;
}

/* ===========================
   SECTION DIVIDER / ACCENT
=========================== */

.section-accent-line {
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 0.5rem auto 1.5rem;
}

.section-accent-line.left {
  margin-left: 0;
}

/* ===========================
   POPULAR DISHES SECTION
=========================== */

.special__container {
  background-color: var(--bg-light);
  padding: 4rem 1rem;
}

.special__container :is(.section__header, .section__description) {
  max-width: 600px;
  margin-inline: auto;
}

.special__container .section__header {
  margin-top: 0;
}

.special__grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
  padding: 0;
}

@media (min-width: 540px) {
  .special__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .special__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.special__card {
  background: #fff;
  padding: 1.2rem;
  text-align: center;
  border-radius: 8px;
  border: 1px solid #ebebeb;
  transition: box-shadow 0.25s, transform 0.25s;
}

.special__card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.special__card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.special__card h4,
.special__card .special-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.special__card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.special__ratings {
  font-size: 0.9rem;
  color: #ffbd07;
}

.menu-btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  padding-bottom: 2rem;
}

.menu-btn-wrapper a {
  color: #fff;
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 0.65rem 1.8rem;
  border-radius: 4px;
  font-weight: 600;
}

.menu-btn-wrapper a:hover {
  background-color: #bf2c10;
  border-color: #bf2c10;
}

/* ===========================
   CTA BANNER SECTION
=========================== */

.cta-banner {
  position: relative;
  background-image: url(assets/backgrounds/bg3.webp);
  background-size: cover;
  background-position: center;
  padding: 5.5rem 1rem;
  text-align: center;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 0;
}

.cta-banner > * {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  line-height: 1.25;
}

.cta-banner h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background-color: var(--accent-yellow);
  margin: 0.75rem auto 0;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  max-width: 600px;
  margin-inline: auto;
  margin-top: 1.25rem;
  margin-bottom: 2rem;
}

/* Primary CTA button */
.cta-banner .btn-white {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 4px;
  border: 2px solid var(--primary-color);
  transition: background 0.2s, border-color 0.2s;
  margin: 0.3rem;
}

.cta-banner .btn-white:hover {
  background-color: #bf2c10;
  border-color: #bf2c10;
}

/* Ghost/outline secondary button */
.cta-banner .btn-outline-white {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  background-color: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  transition: background 0.2s, border-color 0.2s;
  margin: 0.3rem;
}

.cta-banner .btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

/* ===========================
   FAQ SECTION
=========================== */

.faq__container {
  padding: 4rem 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.faq__accordion {
  display: grid;
  gap: 2rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .faq__accordion {
    grid-template-columns: 1fr 1fr;
  }
}

.faq__category h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
}

.faq__item {
  border-bottom: 1px solid #e8e8e8;
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  cursor: pointer;
  gap: 1rem;
}

.faq__question h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}

.faq__icon {
  font-size: 1.1rem;
  color: var(--primary-color);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  display: none;
  padding: 0 0 0.85rem 0;
}

.faq__item.active .faq__answer {
  display: block;
}

.faq__answer p,
.faq__answer li {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

.faq__answer ul {
  margin-left: 1.2rem;
  list-style: disc;
  margin-top: 0.4rem;
}

.faq-tag-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.faq-tag-links a {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 99px;
  font-size: 0.8rem;
  color: #333;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.faq-tag-links a:hover {
  background: #e23515;
  color: #fff;
  border-color: #e23515;
}

/* ===========================
   FOOTER
=========================== */

.footer {
  background-color: #1a1a1a;
  color: #ccc;
}

.footer__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 540px) {
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .footer__container {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
  }
}

.footer__col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
}

.footer__logo__img {
  width: 140px;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 6px;
}

.footer__col .section__description {
  text-align: left;
  font-size: 0.85rem;
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer__col > a {
  color: var(--primary-color);
  font-size: 0.88rem;
  font-weight: 600;
}

.footer__col > a:hover {
  color: #ff6645;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  font-size: 0.85rem;
  color: #aaa;
  line-height: 1.5;
}

.footer__links a {
  color: #bbb;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--primary-color);
}

.footer__hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #aaa;
  padding: 0.25rem 0;
}

.footer__hours-row span:first-child {
  font-weight: 600;
  color: #ccc;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #aaa;
  margin-bottom: 0.6rem;
}

.footer__contact-item i {
  color: var(--primary-color);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer__contact-item a {
  color: #bbb;
  transition: color 0.2s;
}

.footer__contact-item a:hover {
  color: var(--primary-color);
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.footer__social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  transition: opacity 0.2s;
}

.footer__social a:hover { opacity: 0.8; }
.footer__social a.social-fb { background-color: #1877f2; }
.footer__social a.social-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.footer__social a.social-tt { background-color: #222; }

.footer__bottom {
  background-color: #111;
  padding: 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: #888;
  border-top: 1px solid #2a2a2a;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: center;
}

.footer__bottom a {
  color: #999;
  margin: 0 0.5rem;
  transition: color 0.2s;
}

.footer__bottom a:hover {
  color: var(--primary-color);
}

.footer__bottom .footer__company a {
  color: #888;
}

.footer__bottom .footer__company span {
  color: var(--primary-color);
}

.footer__policy {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0.5rem 1rem;
  background-color: #111;
}

.footer__policy a {
  color: #888;
  font-size: 0.8rem;
  transition: color 0.2s;
}

.footer__policy a:hover {
  color: #ccc;
}

.footer__bar {
  background-color: #111;
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: #666;
}

.footer__company {
  background-color: #111;
  padding: 0.5rem 1rem 1rem;
  text-align: center;
  font-size: 0.8rem;
}

.footer__company a {
  color: #666;
}

.footer__company a span {
  color: var(--primary-color);
}

/* ===========================
   FLOATING ORDER BUTTON
=========================== */

.floating-btn-wrapper {
  display: none;
}

/* ===========================
   BREADCRUMB
=========================== */

.breadcrumb-container {
  display: none;
}

/* ===========================
   ABOUT PAGE
=========================== */

.about-container {
  display: flex;
  justify-content: space-between;
  margin: auto;
}

.about-content {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.about-title h1 {
  font-weight: 700;
  font-size: 2rem;
}

.about-para p {
  font-size: 0.95rem;
  text-align: justify;
  line-height: 1.7;
  color: var(--text-mid);
}

.about-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-auto-rows: 260px;
  grid-auto-flow: dense;
  grid-gap: 16px;
  width: 100%;
}

.single-box {
  position: relative;
}

.single-box a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.single-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s;
  user-select: none;
}

.single-box a:hover img {
  transform: rotate(5deg) scale(1.4);
}

@media (max-width: 768px) {
  .about-para p {
    line-height: 1.6;
    margin: 0 4%;
  }

  .about-title h1 {
    font-size: 1.5rem;
  }
}

/* ===========================
   MENU PAGE
=========================== */

.menu-heading {
  margin: auto;
  padding: 0 1rem;
}

.menu-heading-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.menu-heading-wrapper .menu-title {
  font-size: 2.5rem;
  font-weight: 700;
}

@media only screen and (max-width: 600px) {
  .menu-heading-wrapper .menu-title {
    font-size: 1.8rem;
  }

  .menu-heading {
    padding-top: 5rem;
  }
}

.menu {
  margin: 0 auto;
}

.menu-container {
  gap: 30px;
  margin: 0 auto;
  max-width: 1300px;
  min-height: 600px;
  transition: min-height 0.5s ease;
}

.menu-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1.5rem 0;
  gap: 0.5rem;
}

.menu-button {
  font-size: 0.95rem;
  background: none;
  border: 1px solid #ddd;
  color: var(--text-mid);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
}

.menu-button:hover,
.menu-button.active-button {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

/* ===========================
   BEST DISHES / CARDS
=========================== */

.best-dishes {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 2px;
  margin: 1rem auto;
}

.best-dishes-header h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cards_item {
  display: flex;
  padding: 0.75rem;
  border-radius: 8px;
}

@media (min-width: 40rem) {
  .cards_item { width: 50%; }
}

@media (min-width: 56rem) {
  .cards_item { width: 33.3333%; }
}

.card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.card_image {
  position: relative;
  max-height: 220px;
}

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

.card_price {
  position: absolute;
  bottom: 8px;
  right: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 40px;
  border-radius: 4px;
  background: var(--primary-color);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.card_price span {
  font-size: 11px;
  margin-top: -2px;
}

.note {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 8px;
  border-radius: 4px;
  background-color: #fff;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-color);
}

.card_content {
  position: relative;
  padding: 14px 16px 24px;
  max-height: 260px;
  overflow-y: auto;
}

.card_title {
  margin: 0 0 20px;
  padding-bottom: 10px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  position: relative;
}

.card_title::after {
  position: absolute;
  display: block;
  width: 40px;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  content: "";
}

hr {
  margin: 20px auto;
  width: 40px;
  border-top: 2px solid var(--primary-color);
}

.card_text p {
  margin: 0 0 16px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-light);
}

/* ===========================
   PAGE HEADER BANNER
=========================== */

.page-banner {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

.page-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-banner__content {
  position: relative;
  z-index: 2;
  padding: 2rem 1rem;
}

.page-banner__content h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
}

/* ===========================
   LOCATION PAGES
=========================== */

.location-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .location-info-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* ===========================
   CONTACT PAGE
=========================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9rem;
  font-family: inherit;
  margin-bottom: 1rem;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-form button:hover {
  background-color: #bf2c10;
}

/* ===========================
   FRANCHISE / MISC SECTIONS
=========================== */

.franchise-section {
  padding: 4rem 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ===========================
   POPUP (hidden)
=========================== */

.popup-container {
  display: none !important;
}

/* ===========================
   CS SHARED COMPONENTS
   (used by about + other pages)
=========================== */

.cs-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Standalone button (pages other than home hero) */
.cs-button-solid {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 4px;
  border: 2px solid var(--primary-color);
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
  cursor: pointer;
}

.cs-button-solid:hover {
  background-color: #bf2c10;
  border-color: #bf2c10;
  color: #fff;
}

/* ===========================
   ABOUT PAGE — HERO
=========================== */

#about-section-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 5rem 0;
}

#about-section-hero .cs-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 2rem 1rem;
}

@media (min-width: 768px) {
  #about-section-hero .cs-container {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }
}

#about-section-hero .cs-flex-group {
  flex: 0 0 auto;
  max-width: 360px;
}

#about-section-hero .cs-flex-group .cs-topper {
  color: #ffbd07;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
}

#about-section-hero .cs-flex-group .cs-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

#about-section-hero .cs-picture {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#about-section-hero .cs-picture::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  z-index: 1;
}

#about-section-hero .cs-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hero number card list */
.cs-card-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

@media (min-width: 540px) {
  #about-section-hero .cs-card-group {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }
}

#about-section-hero .cs-item {
  flex: 1 1 200px;
}

#about-section-hero .cs-link {
  display: block;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 1.2rem;
  transition: background 0.2s;
  height: 100%;
}

#about-section-hero .cs-link:hover {
  background: rgba(226, 53, 21, 0.3);
  border-color: var(--primary-color);
}

#about-section-hero .cs-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

#about-section-hero .cs-item-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin: 0;
}

/* ===========================
   ABOUT PAGE — GALLERY
=========================== */

#about-gallery-container {
  padding: 3rem 0;
  background-color: var(--bg-light);
}

#about-gallery-container .cs-container {
  padding: 0 1rem;
}

.cs-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .cs-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cs-gallery .cs-image {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 3/4;
}

.cs-gallery .cs-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.cs-gallery .cs-image:hover img {
  transform: scale(1.05);
}

/* ===========================
   ABOUT PAGE — SERVICES
=========================== */

#about-services {
  padding: 4rem 0;
  background-color: #fff;
}

#about-services .cs-container {
  padding: 0 1rem;
}

#about-services .cs-card-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 540px) {
  #about-services .cs-card-group {
    grid-template-columns: repeat(3, 1fr);
  }
}

#about-services .cs-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid #ebebeb;
  border-radius: 8px;
  transition: box-shadow 0.25s, transform 0.25s;
}

#about-services .cs-item:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.cs-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.cs-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.cs-h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

#about-services .cs-item-text {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* ===========================
   TESTIMONIALS
=========================== */

#testimonial-section {
  padding: 4rem 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.testimonial-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 2.5rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial {
  border-radius: 10px;
  padding: 1.5rem;
  position: relative;
}

.grid-col-span-2 {
  grid-column: span 1;
}

@media (min-width: 600px) {
  .grid-col-span-2 {
    grid-column: span 2;
  }
}

/* Testimonial color variants */
.bg-primary-400 {
  background-color: var(--primary-color);
}

.bg-secondary-500 {
  background-color: #ffbd07;
}

.bg-neutral-100 {
  background-color: #f8f8f8;
  border: 1px solid #e8e8e8;
}

.text-neutral-100 {
  color: #fff;
}

.text-neutral-100 p {
  color: rgba(255, 255, 255, 0.9);
}

.text-secondary-400 {
  color: var(--text-dark);
}

.text-secondary-400 p {
  color: var(--text-light);
}

.testimonial .flex {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial .flex img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial .name {
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0 0 0.15rem;
}

.testimonial .position {
  font-size: 0.8rem;
  opacity: 0.8;
  margin: 0;
}

.testimonial > p {
  font-size: 0.9rem;
  line-height: 1.7;
  font-style: italic;
}

.flow > * + * {
  margin-top: 0;
}

/* ===========================
   MENU PAGE — HERO
=========================== */

#menu-hero-section {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 5rem 0;
}

#menu-hero-section .cs-container {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
}

#menu-hero-section .cs-content {
  max-width: 680px;
  margin: 0 auto;
}

#menu-hero-section .cs-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

#menu-hero-section .cs-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

#menu-hero-section .cs-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#menu-hero-section .cs-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

#menu-hero-section .cs-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===========================
   MENU PAGE — LOCATION CARDS
=========================== */

#location-section {
  padding: 3rem 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.select-location-wrapper {
  text-align: center;
  margin-bottom: 2rem;
}

.select-location-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-dark);
}

.select-location-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 0.6rem auto 0;
  border-radius: 2px;
}

.location-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 540px) {
  .location-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .location-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

.single-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.25s, transform 0.25s;
  cursor: pointer;
}

.single-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.img-area {
  position: relative;
  overflow: hidden;
  height: 180px;
}

.img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.single-card:hover .img-area img {
  transform: scale(1.05);
}

.img-area .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.single-card:hover .overlay {
  opacity: 1;
}

/* Touch devices: hide overlay, show buttons below image instead */
.card-mobile-btns {
  display: none;
}

@media (hover: none) {
  .img-area .overlay {
    display: none;
  }

  .card-mobile-btns {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.85rem;
    flex-wrap: wrap;
  }

  .card-mobile-btns .pickup-btn {
    flex: 1;
    text-align: center;
    min-width: 100px;
  }
}

.pickup-btn {
  display: inline-block;
  padding: 0.55rem 1.2rem;
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 4px;
  border: 2px solid var(--primary-color);
  transition: background 0.2s;
  text-decoration: none;
}

.pickup-btn:hover {
  background-color: #bf2c10;
  border-color: #bf2c10;
  color: #fff;
}

.single-card .info {
  padding: 1rem 1.1rem 1.2rem;
}

.single-card .info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.single-card .info .phone {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
  line-height: 1.4;
}

.single-card .info .phone a {
  color: var(--text-mid);
  transition: color 0.2s;
}

.single-card .info .phone a:hover {
  color: var(--primary-color);
}

.timings-wrapper {
  margin-top: 0.6rem;
  border-top: 1px solid #f0f0f0;
  padding-top: 0.6rem;
}

.timings {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0 0 0.2rem;
}

/* ===========================
   LOCATIONS PAGE — HERO
=========================== */

#locations-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 5rem 0;
}

#locations-hero .cs-container {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
}

#locations-hero .cs-content {
  max-width: 720px;
  margin: 0 auto;
}

#locations-hero .cs-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

#locations-hero .cs-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: #ffbd07;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

#locations-hero .cs-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 1.5rem;
}

#locations-hero .cs-button-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

#locations-hero .cs-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#locations-hero .cs-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

#locations-hero .cs-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===========================
   OUR-FOOD PAGE — GALLERY HEADER
=========================== */

#gallery-header {
  position: relative;
  padding: 4rem 1rem 0;
  background-color: #1a1a1a;
  overflow: hidden;
  max-width: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

#gallery-header .cs-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  #gallery-header .cs-container {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
}

#gallery-header .cs-content {
  flex: 1;
  max-width: 560px;
}

#gallery-header .cs-topper {
  color: #ffbd07;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
}

#gallery-header .cs-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

#gallery-header .cs-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

#gallery-header .cs-picture {
  flex: 0 0 auto;
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  overflow: hidden;
}

#gallery-header .cs-picture img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.cs-wave {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: -1px;
}

/* ===========================
   OUR-FOOD PAGE — DISH GALLERY
=========================== */

#menu-choice-gallery {
  padding: 3rem 1rem 4rem;
}

.dish-card-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.dish-content {
  width: 100%;
}

.dish-category-title {
  text-align: center;
  margin-bottom: 2rem;
}

.dish-category-title h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-dark);
  position: relative;
  display: inline-block;
}

.dish-category-title h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.dish-gallery {
  width: 100%;
}

.dish-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 540px) {
  .dish-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .dish-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===========================
   CONTACT PAGE — HERO
=========================== */

#contact-section-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 5rem 0;
  text-align: center;
}

#contact-section-hero .cs-container {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1rem;
}

#contact-section-hero .cs-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

#contact-section-hero .cs-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

#contact-section-hero .cs-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#contact-section-hero .cs-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

#contact-section-hero .cs-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===========================
   CONTACT PAGE — LOCATION SECTIONS
=========================== */

.contact-sections-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

.contact-wrapper-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-wrapper-header h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact-wrapper-header p {
  font-size: 1rem;
  color: var(--text-light);
}

.header__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid #efefef;
}

@media (min-width: 768px) {
  .header__container {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* Alternate layout: image right for even sections */
.contact-section-ne .map-container { order: 1; }
.contact-section-ne .header__contact__content { order: 2; }

@media (min-width: 768px) {
  .contact-section-ne .map-container { order: 2; }
  .contact-section-ne .header__contact__content { order: 1; }
}

.map-container {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 300px;
  display: block;
  border: 0;
}

@media (min-width: 768px) {
  .map-container iframe {
    height: 360px;
  }
}

.header__contact__content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
}

.contact__section__description {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-list li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-mid);
  transition: color 0.2s;
}

.contact-list li a:hover {
  color: var(--primary-color);
}

.contact-list li a i {
  color: var(--primary-color);
  font-size: 1rem;
  flex-shrink: 0;
  width: 20px;
}

/* ===========================
   FRANCHISE PAGE — HEADER
=========================== */

.header__container3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .header__container3 {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.header__image {
  border-radius: 10px;
  overflow: hidden;
}

.header__image .img2 {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  max-height: 420px;
  object-fit: cover;
}

.header__content h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.header__content .section__description {
  text-align: left;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.header__btn a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary-color);
  color: #fff;
  padding: 0.65rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  border: 2px solid var(--primary-color);
  transition: background 0.2s, border-color 0.2s;
}

.header__btn a:hover {
  background-color: #bf2c10;
  border-color: #bf2c10;
  color: #fff;
}

/* ===========================
   FRANCHISE PAGE — FORM & INFO
=========================== */

.catering__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1rem;
}

.franchise-form-wrapper {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.franchise-form-iframe {
  width: 100%;
  height: 700px;
  border: 0;
  display: block;
}

#reservation {
  background-color: var(--bg-light);
  padding: 3rem 0;
}

#franchise {
  padding: 3rem 0;
}

/* ===========================
   MISC MISSING CLASSES
=========================== */

/* Alias: section_container (single underscore) = same as section__container */
.section_container {
  max-width: var(--max-width);
  margin: auto;
  padding: 4rem 1rem;
}

/* franchise-info block inside catering container */
.franchise-info {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

.franchise-info h2 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-size: 1.6rem;
  font-weight: 700;
}

.franchise-info h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 700;
}

.franchise-info p {
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* border-primary-400 on testimonial icon images */
.border-primary-400 {
  border: 2px solid var(--primary-color);
  border-radius: 50%;
}

/* cta__container on places / service tag pages */
.cta__container {
  position: relative;
  max-width: 100%;
  width: 100%;
  background-image: url(assets/backgrounds/bg3.webp);
  background-size: cover;
  background-position: center;
  padding: 5.5rem 1rem;
  text-align: center;
  overflow: hidden;
  border-radius: 0;
}

.cta__container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 0;
}

.cta__container > * {
  position: relative;
  z-index: 1;
}

.cta__container .section__header {
  color: #fff;
  margin-bottom: 0;
}

.cta__container .section__header::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background-color: var(--accent-yellow);
  margin: 0.75rem auto 0;
}

.cta__container .section__description {
  color: rgba(255, 255, 255, 0.88);
  margin-top: 1.25rem;
  margin-bottom: 2rem;
}

/* explore__image with iframe (maps on location pages) */
.explore__image iframe {
  width: 100%;
  height: 380px;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  display: block;
}

/* ===========================
   MOBILE MENU CONTROLS
   (menu-park-st.html etc.)
=========================== */

.mobile-menu-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background-color: var(--bg-light);
  border-bottom: 1px solid #e0e0e0;
  flex-wrap: wrap;
  max-width: var(--max-width);
  margin: 0 auto;
}

.mobile-menu-controls input[type="text"] {
  flex: 1;
  min-width: 180px;
  padding: 0.55rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.mobile-menu-controls input[type="text"]:focus {
  border-color: var(--primary-color);
}

.mobile-menu-controls .dropdown {
  position: relative;
}

.dropbtn {
  padding: 0.55rem 1.2rem;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: inherit;
  transition: background 0.2s;
}

.dropbtn:hover {
  background-color: #bf2c10;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-top: 2px solid var(--primary-color);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 50;
}

.dropdown-content a,
.dropdown-content button {
  display: block;
  width: 100%;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  color: var(--text-dark);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s;
}

.dropdown-content a:hover,
.dropdown-content button:hover {
  background-color: var(--primary-color-light);
  color: var(--primary-color);
}

.dropdown.open .dropdown-content {
  display: block;
}

/* menu-items — container for dynamically populated menu items */
.menu-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 540px) {
  .menu-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .menu-items {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===========================
   DISH TAG PAGES
   (tags/dishes/*.html)
=========================== */

/* ---- Hero: full-width split panel ---- */
.dish-hero {
  width: 100%;
  max-width: 100%;
  padding: 0;
  overflow: hidden;
  background: #111;
}

.dish-hero .dish-hero-container {
  display: flex;
  min-height: 540px;
  max-width: none;
  margin: 0;
  padding: 0;
  gap: 0;
  align-items: stretch;
}

.dish-hero .dish-hero-content {
  flex: 1;
  padding: 4rem clamp(1.5rem, 4vw, 4rem) 4rem clamp(2rem, 7vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #1a1a1a;
  color: #fff;
}

.dish-hero .dish-hero-content h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.85rem;
  line-height: 1.2;
}

.dish-rating {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 0.9rem;
  color: #ffbd07;
  font-size: 1.05rem;
}

.rating-count {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 0.4rem;
}

.dish-description {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.78;
  margin-bottom: 1.5rem;
  max-width: 500px;
}

.dish-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.dish-detail {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.38rem 0.9rem;
  border-radius: 99px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.88);
}

.dish-detail i {
  color: #ffbd07;
  font-size: 0.85rem;
}

.dish-price {
  margin-top: 0.25rem;
}

.btn-dishes {
  display: inline-block;
  padding: 0.82rem 2.2rem;
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 4px;
  border: 2px solid var(--primary-color);
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}

.btn-dishes:hover {
  background-color: #bf2c10;
  border-color: #bf2c10;
  color: #fff;
}

/* Image panel — fills its half edge to edge */
.dish-hero .dish-hero-image {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  min-height: 340px;
}

.dish-hero .dish-hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

@media (max-width: 800px) {
  .dish-hero .dish-hero-container {
    flex-direction: column-reverse;
    min-height: unset;
  }
  .dish-hero .dish-hero-content {
    padding: 2.5rem 1.5rem;
  }
  .dish-hero .dish-hero-image {
    flex: none;
    height: 270px;
    min-height: unset;
  }
}

/* ---- About section ---- */
.dish-description-container {
  padding: 4rem 1rem;
  background: #fff;
}

.dish-description-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* ---- Reviews ---- */
.reviews-container {
  background: #f6f6f6;
  padding: 4rem 1rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 600px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.6rem;
  border: 1px solid #ebebeb;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s;
}

.review-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.11);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  gap: 0.5rem;
}

.reviewer-info h4 {
  font-size: 0.93rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.1rem;
}

.reviewer-info p {
  font-size: 0.78rem;
  color: #999;
  margin: 0;
}

.review-rating {
  display: flex;
  gap: 0.15rem;
  color: #ffbd07;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.review-text {
  font-size: 0.87rem;
  color: #555;
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.review-date {
  font-size: 0.75rem;
  color: #bbb;
  margin: 0;
}

/* ---- CTA banner ---- */
.cta-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  background-image: url(assets/backgrounds/bg3.webp);
  background-size: cover;
  background-position: center;
  padding: 5.5rem 1rem;
  text-align: center;
  overflow: hidden;
}

.cta-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 0;
}

.cta-container .cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  line-height: 1.25;
}

.cta-content h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #ffbd07;
  margin: 0.75rem auto 0;
}

.cta-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 1.25rem;
  margin-bottom: 2rem;
}

.cta-content .btn {
  margin: 0.3rem;
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.cta-content .btn:hover {
  background-color: #bf2c10;
  border-color: #bf2c10;
  color: #fff;
}

/* Map location box (dish pages) */
.map-location-box {
  padding: 0;
}

.map-location-inner {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background: #fff;
}

@media (min-width: 768px) {
  .map-location-inner {
    flex-direction: row;
  }
}

.map-location-map {
  flex: 1 1 350px;
}

.map-location-map iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

@media (min-width: 768px) {
  .map-location-map iframe {
    height: 100%;
    min-height: 280px;
  }
}

.map-location-details {
  flex: 0 0 auto;
  width: 100%;
  max-width: 320px;
  padding: 1.75rem 1.5rem;
  background: #fff;
}

.map-location-details h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
}

.map-location-details address {
  font-style: normal;
  margin-bottom: 1rem;
}

.map-location-details address p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.map-location-details address p i {
  color: var(--primary-color);
  flex-shrink: 0;
}

.map-location-details address p a {
  color: var(--text-mid);
  transition: color 0.2s;
}

.map-location-details address p a:hover {
  color: var(--primary-color);
}

.map-location-details h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.map-hours-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.map-hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-light);
  padding: 0.2rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.map-hours-list li span:first-child {
  font-weight: 600;
  color: var(--text-mid);
}

.map-cta-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.map-cta-row .btn {
  flex: 1;
  text-align: center;
  min-width: 120px;
  font-size: 0.88rem;
}

/* ===========================
   DELIVERY / TAKEOUT TAG PAGES
   (tags/sub-sandwich-delivery-*.html etc.)
=========================== */

/* Feature list in explore content */
.delivery-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.delivery-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text-mid);
}

.delivery-features li i {
  color: var(--primary-color);
  font-size: 1rem;
  flex-shrink: 0;
}

/* Delivery areas section */
.delivery-areas-container {
  background-color: var(--bg-light);
}

.delivery-areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 540px) {
  .delivery-areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.delivery-area-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid #e8e8e8;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.delivery-area-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
}

.delivery-area-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.delivery-area-card ul li {
  font-size: 0.88rem;
  color: var(--text-light);
}

.delivery-area-card ul li a {
  color: var(--text-mid);
  transition: color 0.2s;
}

.delivery-area-card ul li a:hover {
  color: var(--primary-color);
}

/* How to order / popular items section */
.how-to-order-container {
  padding: 3rem 1rem 4rem;
}

.how-to-order-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 540px) {
  .how-to-order-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .how-to-order-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.order-step {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  padding: 1.5rem;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
}

.order-step:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.order-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.order-step p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

.order-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

