@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Sofia+Sans:ital,wght@0,1..1000;1,1..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

:root {
  --primary-color: #c96513;
  --primary-color-light: #fffcfa;
  --primary-color-dark: #c96513;
  --text-dark: #18181b;
  --text-light: #6b7280;
  --white: #ffffff;
  --max-width: 1200px;

  --clr-primary-400: 263 55% 52%;
  --clr-secondary-400: 217 19% 35%;
  --clr-secondary-500: 219 29% 14%;
  --clr-neutral-100: 0 10% 100%;
  --clr-neutral-200: 210 46% 95%;
  --clr-neutral-300: 0 0% 81%;

  --fw-400: 500;
  --fw-700: 600;

  --fs-300: 0.6875rem;
  --fs-400: 0.8125rem;
  --fs-500: 1.25rem;

  --card-height: 40vw;
  --card-margin: 4vw;
  --card-top-offset: 1em;
  --numcards: 4;
  --outline-width: 0px;

  --main-color: #dd9932;
}

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

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

.section__description {
  color: #616161;
  line-height: 1.75rem;
  text-align: center;
}

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

.btn:hover {
  background-color: var(--primary-color-light);
  color: var(--primary-color-dark);
  font-weight: 700;
}

.logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.logo a span {
  color: var(--text-dark);
}

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

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

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Sofia Sans", sans-serif;
  background-color: #fffbfbd5;
}

/* **************************** navbar ************************ */

.nav__container {
  position: fixed;
  top: 0;
  isolation: isolate;
  height: 120px;
  max-height: 120px;
  width: 100%;
  z-index: 9;
  box-shadow: rgba(152, 152, 152, 0.35) 0px 5px 15px;
  background-color: rgb(255, 255, 255); /* Fallback for Safari */
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px); /* Safari support */
}

.nav__header {
  width: 100%;
  height: 100%;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  width: auto;
}

.nav__logo a {
  color: var(--text-dark);
  font-size: 1.8rem;
}

.logo__wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo__wrapper span {
  width: 300px;
}

@media (max-width: 768px) {
  .logo__wrapper span {
    width: 95%;
    font-size: 3rem;
  }
}

.logo__image {
  width: 300px;
  height: auto;
  background: #fff;
  border-radius: 8px;
  margin-top: 3px;
}

.nav__menu__btn {
  font-size: 2rem;
  color: #000000;
  cursor: pointer;
  margin-right: 0.2rem;
}

.nav__links {
  position: absolute;
  top: 68px;
  left: 0;
  width: 100%;
  padding: 2rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3rem;
  background-color: var(--primary-color-light);
  transition: 0.5s;
  z-index: -1;
  transform: translateY(-100%);
}

.nav__links.open {
  transform: translateY(0);
  border-bottom: 2px solid var(--primary-color-dark);
}

.nav__links a {
  font-weight: 500;
  color: var(--text-dark);
  /* text-shadow: 0px 0px 6px #000000; */
  font-size: 1rem;
}

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

/* Active navigation link styles */
.nav__links a.nav-index,
.nav__links a.nav-menu,
.nav__links a.nav-about,
.nav__links a.nav-our-food,
.nav__links a.nav-catering,
.nav__links a.nav-reservation,
.nav__links a.nav-contact-us {
  position: relative;
}

.nav__links a.active {
  color: var(--primary-color);
  font-weight: 700;
}

.nav__links a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color-dark);
  border-radius: 2px;
}

.nav__btn {
  display: none;
}

.nav__btn-mobile {
  display: none;
}

@media (min-width: 768px) {
  .nav__links {
    z-index: auto;
  }
}

@media (max-width: 768px) {
  .nav__container {
    height: 85px;
    max-height: 120px;
  }

  .nav__header {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background-color: rgb(255, 255, 255); /* Fallback for Safari */
    height: 85px;
    backdrop-filter: blur(32px);
  }

  .nav__header .logo__wrapper img {
    width: 180px;
    height: auto;
    border-radius: 10px;
    margin-top: 1px;
  }

  .nav__links.open {
    /* background-color: #1d1d1d; */
    box-shadow: rgba(87, 87, 94, 0.5) 0px 7px 29px 0px;
    background-color: rgba(21, 21, 21, 0.96); /* Fallback for Safari */
    backdrop-filter: blur(12px);
  }

  .nav__links.open li a {
    font-size: 1.15rem;
    color: #fff;
    font-weight: 600;
  }

  .nav__btn-mobile {
    display: block;
  }

  .nav__btn-mobile a {
    font-size: 1rem;
    color: #fff;
    background-color: var(--primary-color-dark);
    font-weight: 600;
    padding: 0.5rem 1rem;
  }
}

/* **************************** navbar ************************ */

/*-- -------------------------- -->
<---         Home Hero          -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
  #home-hero {
    text-align: center;
    padding: clamp(12.5rem, 25.95vw, 18.75em) 1rem;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
}

/*********************************  popular dishes section *********************************/

/*********************************  popular dishes section *********************************/

/*********************************  explore dishes section *********************************/


/*********************************  explore dishes section *********************************/

/*********************************  FAQ section *********************************/

/*********************************  FAQ section *********************************/

/*********************************  Location section *********************************/

/*********************************  Location section *********************************/

/*********************************  footer section *********************************/

.footer {
  background-color: #1f1f1f;
}

.footer__container {
  display: grid;
  gap: 4rem 2rem;
}

.footer__logo__img {
  width: 180px;
  height: auto;
  margin-bottom: 1rem;
}

.footer__col {
  display: flex;
  flex-direction: column;
}

.footer__col .section__description {
  text-align: left;
  color: #b9b9b9;
}

.footer__col h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
}

.footer__links {
  display: grid;
  gap: 0.75rem;
}

.footer__links a {
  color: #b9b9b9;
}

.footer__links li {
  color: #b9b9b9;
}

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

.footer__bar,
.footer__policy {
  padding: 1.5rem;
  font-size: 0.9rem;
  color: rgb(163, 163, 163);
  text-align: center;
  background-color: #2f2f2f;
}

.footer__policy {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding-bottom: 0;
}

.footer__policy a {
  color: #fff;
  transition: 0.2s ease;
}

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

.social-icons-wrapper {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  text-decoration: none;
  color: grey;
  transition: 0.5s;
  font-size: 1.8rem;
}

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

.footer__company {
  padding: 1rem;
  font-size: 0.9rem;
  text-align: center;
  background-color: #2f2f2f;
}

.footer__company a {
  color: rgb(176, 176, 176);
}

.footer__company a span {
  color: var(--primary-color);
  transform: 0.2s ease;
}

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

@media (max-width: 768px) {
  .footer__company {
    padding-bottom: 6.5rem;
  }
}

/*********************************  footer section *********************************/

@media (width < 776px) {
  .header__content h1 {
    margin-left: 0;
  }

  .header__content .section__description {
    margin-left: 0;
  }
}

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

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

@media (width > 768px) {
  nav {
    position: static;
    padding: 1rem 1rem;
    max-width: 99%;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .nav__header {
    flex: 1;
    padding: 0;
    background-color: transparent;
  }

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

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    position: static;
    padding: 0;
    flex-direction: row;
    background-color: transparent;
    transform: none;
  }

  /* .nav__links a {
    color: #fff;
  } */

  /* .nav__links a:hover {
    color: #fff;
  } */

  .nav__links a.active::after {
    bottom: -8px;
  }

  .nav__btn {
    display: flex;
    flex: 1;
  }

  .nav__btn .btn {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
  }

  .nav__btn .btn:hover {
    font-size: 1.5rem;
    color: var(--primary-color-dark);
  }

  .header__container {
    grid-template-columns: 2fr 2fr;
    align-items: center;
  }

  .header__content h1 {
    font-size: 3rem;
  }

  .header__image {
    grid-area: 1/2/2/3;
  }
}

/*********************************  about section *********************************/

/*********************************  about section *********************************/

/*********************************  best dishes section *********************************/


hr {
  margin: 24px auto;
  width: 50px;
  border-top: 2px solid var(--primary-color-dark);
}


/*********************************  best dishes section *********************************/

/*********************************  menu heading section *********************************/

/*********************************  menu heading section *********************************/

/***************************************  menu section ************************************/


@keyframes appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.item-details {
  padding: 1rem;
}

.item-price {
  padding: 0.8rem 0;
  font-size: 1.1rem;
  color: rgb(37, 37, 37);
  opacity: 0.8;
}

.item-desc span {
  font-size: 12px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .item-details {
    padding: 0.5rem; /* Reduce padding */
  }

  .item-name {
    font-size: 1rem; /* Reduce font size */
  }

  .item-price {
    padding: 0.5rem 0;
    font-size: 0.9rem; /* Reduce font size */
  }

  .item-desc {
    font-size: 0.9rem; /* Reduce font size */
    line-height: 1.3; /* Reduce line height */
  }

  /* If you have images in your menu items, you might want to adjust their size too */

  .fixed-nav {
    position: fixed;
    top: 85px; /* height of the navbar */
    width: 100%;
    max-width: 100%;
    background-color: white;
    z-index: 4;
    left: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/******************************************  menu section ****************************************/

/***********************************  testimonials section ***********************************/

#testimonial-section {
  padding: 8.5rem 1rem;
}

@media (max-width: 768px) {
  #testimonial-section {
    padding: 6.5rem 1rem;
  }
}


/***********************************  testimonials section ***********************************/

/***********************************  gallery header section ***********************************/

@media only screen and (min-width: 0rem) {
  #gallery-header {
    /* centers button */
    text-align: center;
    /* 116px - 164px top */
    /* 60px - 100px  bottom */

    background-color: #fff6f6;
    overflow: hidden;
    position: relative;

    margin-top: 5.5rem;
    z-index: 1;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #gallery-header {
    text-align: left;
    background-color: #fffdf6;
  }

  @keyframes type {
    0% {
      width: 0;
    }
    1%,
    99% {
      border-right: 2px solid #08b319;
    }
    100% {
      border-right: none;
    }
  }

  @keyframes blink {
    50% {
      border-color: transparent;
    }
  }
}

@media only screen and (max-width: 768px) {
  #gallery-header {
    margin-top: 3.5rem;
  }
}

/***********************************  gallery header section ***********************************/

/*********************************  dish menu gallery *********************************/

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

@media (max-width: 768px) {
  #menu-choice-gallery {
    padding: 6.5rem 1rem;
  }
}

/*********************************  dish menu gallery *********************************/

/*********************************  dish category gallery *********************************/

#dish-card-gallery1,
#dish-card-gallery2,
#dish-card-gallery3,
#dish-card-gallery4,
#dish-card-gallery5,
#dish-card-gallery6 {
  padding: 8.5rem 1rem;
}

@media (max-width: 768px) {
  #dish-card-gallery1,
  #dish-card-gallery2,
  #dish-card-gallery3,
  #dish-card-gallery4,
  #dish-card-gallery5,
  #dish-card-gallery6 {
    padding: 6.5rem 1rem;
  }
}

/*********************************  dish category gallery *********************************/

/* Gallery page */

/*********************************  privacy policy and terms of use styles *********************************/

.privacy-policy-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 1rem;
}


.header__image .privacy__image {
  border-radius: 2rem;
  border: 2px solid #ffe8e8;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.privacy-main-desc {
  text-align: justify;
  font-weight: 100;
  color: #666666;
}

.privacy-content-lists {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.privacy-item {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.privacy-title {
  font-size: 2rem;
  font-weight: 600;
}

.privacy-desc {
  text-align: justify;
  font-weight: 400;
  color: #5a5a5a;
}

@media screen and (max-width: 768px) {
  .privacy-policy-content {
    padding: 1rem 2rem 4rem 2rem;
  }

  .privacy-title {
    font-size: 1.2rem;
  }

  .header__terms {
    padding: 5.5rem 1rem 1rem 1rem;
  }
}

/****************************  privacy policy and terms of use styles ******************************/

/* ****************** Contact us page ********************* */


/* ****************** Contact us page ********************* */

/* additional media queries */

@media only screen and (min-width: 767px) and (max-width: 918px) {
  .nav__btn .btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

/* floating order online */

.floating-btn-wrapper {
  display: none; /* Hidden by default */
}

@media screen and (max-width: 768px) {
  .floating-btn-wrapper {
    display: flex; /* Make it visible */
    position: fixed;
    bottom: 0;
    width: 100%;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background-color: rgb(
      255,
      255,
      255
    ); /* Optional: To make the button stand out */
    padding: 10px 0; /* Optional: Padding for better touch target */
    z-index: 2000;
  }

  .btn.order-float {
    background-color: var(--primary-color);
    color: #fff; /* Text color */
    border: none;
    padding: 5px 10px; /* Button padding */
    text-decoration: none;
    border-radius: 1rem; /* Rounded corners */
    text-align: center; /* Center text */
    font-size: 16px; /* Font size */
    font-weight: 700;
  }
}

/* Add these styles at the end of your existing CSS */

@media (max-width: 768px) {
  #menu-search {
    flex-grow: 1;
    margin-right: 10px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
  }

  .dropdown {
    position: relative;
    display: inline-block;
  }

  .dropbtn {
    background-color: var(--primary-color-dark);
    color: white;
    padding: 10px 15px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    max-height: 350px; /* Set a fixed height */
    overflow-y: auto; /* Enable vertical scrolling */
    scrollbar-width: thin; /* For Firefox */
    scrollbar-color: #888 #f1f1f1; /* For Firefox */
  }

  /* Styles for WebKit browsers (Chrome, Safari, etc.) */
  .dropdown-content::-webkit-scrollbar {
    width: 8px;
  }

  .dropdown-content::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  .dropdown-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
  }

  .dropdown-content::-webkit-scrollbar-thumb:hover {
    background: #555;
  }

  .dropdown-content a {
    color: black;
    padding: 8px 16px;
    text-decoration: none;
    display: block;
  }

  .dropdown-content a:hover {
    background-color: #f1f1f1;
  }

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

.category-header {
  background-color: var(--primary-color-light);
  color: var(--primary-color-dark);
  padding: 10px;
  margin-top: 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1.2rem;
  text-align: center;
  display: none; /* Hide by default */
}

@media (max-width: 768px) {
  .category-header {
    display: block; /* Show category headers on mobile */
  }
}

/* **************************** header section ************************ */

.header__container {
  display: grid;
  gap: 2rem;
  overflow: hidden;
  position: relative;
  border-radius: 2rem;
}

.header__terms {
  margin-top: 7.5rem;
}


.header__image {
  position: relative;
}


.header__image img {
  max-width: 600px;
  margin-inline: auto;
}

.header__content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 4rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  /* font-family: "Unna", serif; */
}

.header__content h1 span {
  color: var(--primary-color);
  background: -webkit-linear-gradient(
    var(--primary-color),
    var(--primary-color-dark)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}


@media screen and (max-width: 768px) {
  .header__container {
    margin-top: 2rem;
  }

  .header__content h1 {
    font-size: 2rem;
    line-height: 2.45rem;
    text-align: center;
  }

  .header__content p {
    font-size: 1rem;
    line-height: 1.2;
  }

  .header__image img:nth-child(1) {
    max-width: 350px;
    margin-inline: auto;
  }

  .header__image #main__image {
    max-width: 300px;
    margin-inline: auto;
  }

  .section__description span {
    display: none;
  }
}

@media screen and (max-width: 380px) {
  .header__content h1 {
    font-size: 1.8rem;
    padding-bottom: 0.5rem;
  }
}

/* ******************************* header section *************************** */

/*-- -------------------------- -->
<---         Why Choose         -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #our-story-container {
    /* Centers Button */
    text-align: center;
    padding: var(--sectionPadding);
    /* prevents the arrow from causing an overflow */
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin-top: 4rem;
  }
}

/*-- -------------------------- -->
<---          Gallery           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #about-gallery-container {
    padding: clamp(1.75rem, 4.82vw, 0.25rem) 1rem;
    margin-top: 5rem;
  }
}

/*-- -------------------------- -->
<---         Services           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #about-services {
    padding: var(--sectionPadding);
  }
}

/* New menu design for desktop */

@media (min-width: 769px) {
  .item-price {
    color: var(--primary-color-dark);
  }
}

/*  */

/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #about-section-hero {
    /* Centers button */
    text-align: center;
    /* changes on tablet */
    padding: 0 1rem;
    position: relative;
    z-index: 1;
    /* prevents overflow from the lines extending past the screen width */
    overflow: hidden;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #about-section-hero {
    /* 32px - 40px */
    padding: 0 clamp(2rem, 5vw, 2.5rem);
  }
}
/* Desktop Parallax Effect - 1300px */
@media only screen and (min-width: 81.25rem) {
  #about-section-hero {
    background: url("./assets/backgrounds/3.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
}

/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #contact-section-hero {
    /* Centers button */
    text-align: left;
    /* 144px - 300px - leaving extra space for the navigation */
    padding: clamp(9rem, 25.95vw, 18.75rem) 1rem 0;
    /* 130px - 200px */
    padding-bottom: clamp(8.125rem, 12.5vw, 25rem);
    position: relative;
    z-index: 1;
  }
}

/* Breadcrumb Navigation */

/* Add responsive image styling for SEO */


/* Improve Core Web Vitals - Reduce CLS */


/* Location-specific page styles */


/* Reviews section */


/* FAQ section */


/* CTA section */


/* Dish-specific page styles */

/* Location-specific page styles */
#downtown-location,
#downtown-delivery {
  background-color: var(--bg-shade);
}


/* Delivery and Takeout Page Styles */


/* Add at the end of your CSS file */


/* ===================================== */
/* Inline Style Replacements - Utility Classes */
/* ===================================== */

/* Text Color Utilities */
.text-gs-red {
  color: var(--gs-red);
}

.text-gs-red-bold {
  color: var(--gs-red);
  font-weight: 600;
}

.text-black-bold {
  color: #000000;
  font-weight: 600;
}

.text-white-border-white {
  color: #fff;
  border-color: #fff;
}

/* Border Utilities */
.border-none {
  border: 0;
}

/* Flexbox Alignment Utilities */
.justify-start {
  justify-content: flex-start;
}

.justify-start-ml-0 {
  justify-content: flex-start;
  margin-left: 0;
}

.justify-center {
  justify-content: center;
}

/* Spacing Utilities */
.mt-1-5 {
  margin-top: 1.5rem;
}

.mt-2 {
  margin-top: 2rem;
}

/* ===================================== */
/* End of Inline Style Replacements */
/* ===================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===================================== */
/* Dish-specific page styles (tags/dishes) */
/* ===================================== */

.page-wrapper {
  padding-top: 0;
}

/* Dish Hero */
.dish-hero {
  padding: 7rem 1rem 4rem;
  background-color: var(--primary-color-light);
}

.dish-hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 768px) {
  .dish-hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.dish-hero-tag {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.dish-hero-content h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.dish-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.dish-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.dish-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color-dark);
  border: 2px solid var(--primary-color-dark);
}

.btn-secondary:hover {
  background-color: var(--primary-color-light);
  color: var(--primary-color-dark);
}

.dish-hero-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.dish-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Dish Description Section */
.section.dish-description {
  padding: 4rem 0;
  background-color: var(--white);
}

.dish-description-container .section__header {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 2rem;
}

.dish-description-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .dish-description-grid {
    grid-template-columns: 1fr;
  }
}

.dish-description-text p {
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.dish-features {
  display: grid;
  gap: 1rem;
}

.feature-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background-color: var(--primary-color-light);
  border-radius: 10px;
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(201, 101, 19, 0.15);
  border-radius: 50%;
}

.feature-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.feature-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.feature-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

/* Reviews Section (dish pages) */
.section.reviews {
  padding: 4rem 0;
  background-color: #fafafa;
}

.section.reviews .section__header {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 2rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.review-stars {
  color: #f59e0b;
  margin-bottom: 0.75rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.review-author strong {
  display: block;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.review-author span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Location Section (dish pages) */
.section.location-section {
  padding: 4rem 0;
  background-color: var(--white);
}

.section.location-section .section__header {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section.location-section .section__description {
  margin-bottom: 2rem;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.location-box {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background-color: var(--primary-color-light);
  border-radius: 10px;
}

.location-icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.location-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.location-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0 0 0.5rem;
  line-height: 1.5;
}

.location-content a {
  color: var(--primary-color);
  font-weight: 500;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

/* CTA Section (dish pages) */
.section.cta {
  padding: 4rem 1rem;
  background-color: var(--primary-color);
  text-align: center;
}

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

.cta-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.cta-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-buttons .btn-secondary {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.cta-buttons .btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary-color-dark);
}

/* ============================================ */
/*   RESERVATION PAGE STYLES                    */
/* ============================================ */

/* Shared gs- design system variables */
:root {
  --gs-red: #c96513;
  --gs-red-dark: #f1c65e;
  --gs-red-light: rgba(196, 30, 30, 0.1);
  --gs-dark: #1a1a1a;
  --gs-text: #333333;
  --gs-text-light: #6b7280;
  --gs-white: #ffffff;
  --gs-bg: #fafafa;
  --gs-border: #e5e7eb;
}

/* gs- Typography */
.gs-section-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gs-red);
  margin-bottom: 0.75rem;
  display: block;
}

.gs-heading {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--gs-dark);
  line-height: 1.2;
}

.gs-heading-lg {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.gs-heading-md {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.gs-subtitle {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gs-text-light);
  font-size: 1.1rem;
  font-weight: 400;
}

/* gs- Decorative Divider */
.gs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.gs-divider-line {
  width: 60px;
  height: 2px;
  background: var(--gs-red);
}

.gs-divider-icon {
  color: var(--gs-red);
  font-size: 1rem;
}

/* gs- Buttons */
.gs-btn {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.gs-btn-primary {
  background: var(--gs-red);
  color: var(--gs-white);
  border: 2px solid var(--gs-red);
}

.gs-btn-primary:hover {
  background: var(--gs-red-dark);
  border-color: var(--gs-red-dark);
  transform: translateY(-2px);
}

.gs-btn-outline {
  background: transparent;
  color: var(--gs-red);
  border: 2px solid var(--gs-red);
}

.gs-btn-outline:hover {
  background: var(--gs-red);
  color: var(--gs-white);
}

/* gs- Icon Circle */
.gs-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gs-red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.gs-icon-circle i {
  font-size: 2rem;
  color: var(--gs-red);
}

/* gs- Floating Order Button */
.gs-floating-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.gs-floating-btn a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gs-red);
  color: var(--gs-white);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(196, 30, 30, 0.4);
  transition: all 0.3s ease;
}

.gs-floating-btn a:hover {
  background: var(--gs-red-dark);
  transform: translateY(-2px);
}

/* gs- Breadcrumb */
.gs-breadcrumb {
  background: var(--gs-bg);
  padding: 1rem 1.5rem;
}

.gs-breadcrumb-list {
  max-width: 1200px;
  margin: 0 auto;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
}

.gs-breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gs-breadcrumb-list a {
  color: var(--gs-text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.gs-breadcrumb-list a:hover {
  color: var(--gs-red);
}

.gs-breadcrumb-list li:last-child span {
  color: var(--gs-dark);
  font-weight: 500;
}

.gs-breadcrumb-list i {
  color: var(--gs-text-light);
  font-size: 0.8rem;
}

/* gs- Hero Section */
.gs-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 1.5rem;
  overflow: hidden;
}

.gs-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.gs-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.gs-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.gs-hero h1 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--gs-white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.gs-hero h1 .accent {
  color: var(--gs-red);
}

.gs-hero-text {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.gs-hero .gs-divider-line {
  background: var(--gs-red);
}

/* gs- CTA Section */
.gs-cta {
  position: relative;
  padding: 5rem 1.5rem;
  background: var(--gs-dark);
  overflow: hidden;
}

.gs-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('assets/backgrounds/3.webp') center/cover no-repeat;
  opacity: 0.3;
}

.gs-cta-inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

.gs-cta h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--gs-white);
  margin-bottom: 1rem;
}

.gs-cta p {
  font-family: 'Source Sans 3', sans-serif;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.gs-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.gs-cta .gs-btn-primary {
  background: var(--gs-red);
  border-color: var(--gs-red);
}

.gs-cta .gs-btn-outline {
  color: var(--gs-white);
  border-color: var(--gs-white);
}

.gs-cta .gs-btn-outline:hover {
  background: var(--gs-white);
  color: var(--gs-dark);
}

/* gs- Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gs-animate {
  animation: fadeInUp 0.8s ease forwards;
}

.gs-animate-delay-1 { animation-delay: 0.1s; }
.gs-animate-delay-2 { animation-delay: 0.2s; }
.gs-animate-delay-3 { animation-delay: 0.3s; }

/* Reservation Page - Booking Section */
.gs-reservation-section {
  padding: 5rem 1.5rem;
  background: var(--gs-white);
}

.gs-reservation-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.gs-reservation-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gs-reservation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.gs-reservation-iframe-wrapper {
  background: var(--gs-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  min-height: 600px;
}

.gs-reservation-iframe-wrapper iframe {
  width: 100%;
  height: 1100px;
  border: 0;
  display: block;
}

.gs-reservation-info {
  padding: 1rem 0;
}

.gs-reservation-info h3 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.75rem;
  color: var(--gs-dark);
  margin-bottom: 1rem;
}

.gs-reservation-info > p {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gs-text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.gs-reservation-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.gs-reservation-detail i {
  color: var(--gs-red);
  font-size: 1.25rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.gs-reservation-detail-content h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gs-text-light);
  margin-bottom: 0.25rem;
}

.gs-reservation-detail-content p,
.gs-reservation-detail-content a {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: var(--gs-dark);
}

.gs-reservation-detail-content a {
  color: var(--gs-red);
  text-decoration: none;
  font-weight: 600;
}

.gs-reservation-detail-content a:hover {
  text-decoration: underline;
}

.gs-reservation-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.gs-reservation-buttons .gs-btn {
  padding: 0.875rem 1.5rem;
  font-size: 0.85rem;
}

/* Reservation Page - Occasions Section */
.gs-occasions-section {
  padding: 5rem 1.5rem;
  background: var(--gs-bg);
}

.gs-occasions-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.gs-occasions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.gs-occasion-card {
  background: var(--gs-white);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gs-occasion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gs-occasion-card h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gs-dark);
  margin-bottom: 1rem;
}

.gs-occasion-card p {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gs-text-light);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.gs-occasion-card .gs-btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.8rem;
}

/* Reservation Page - Responsive */
@media (max-width: 900px) {
  .gs-reservation-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .gs-hero {
    min-height: 40vh;
    padding: 60px 1rem;
  }

  .gs-hero h1 {
    font-size: 1.75rem;
  }

  .gs-floating-btn {
    bottom: 1.5rem;
    right: 1rem;
  }

  .gs-floating-btn a {
    padding: 0.875rem 1.25rem;
    font-size: 0.85rem;
  }

  .gs-reservation-section,
  .gs-occasions-section {
    padding: 3rem 1rem;
  }

  .gs-reservation-iframe-wrapper iframe {
    height: 1000px;
  }

  .gs-reservation-buttons {
    flex-direction: column;
  }

  .gs-reservation-buttons .gs-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================ */
/*   CATERING PAGE STYLES                       */
/* ============================================ */

/* Catering Hero */
.gs-catering-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 1.5rem 80px;
  overflow: hidden;
}

.gs-catering-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.gs-catering-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.gs-catering-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.gs-catering-hero h1 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.gs-catering-hero h1 .accent {
  color: var(--primary-color);
}

.gs-catering-hero-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Catering Intro */
.gs-catering-intro {
  padding: 6rem 1.5rem;
  background: var(--white);
}

.gs-catering-intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.gs-catering-intro-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.gs-catering-intro-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.gs-catering-intro-images .gs-catering-intro-image:first-child {
  grid-row: 1 / 2;
  aspect-ratio: 3/4;
}

.gs-catering-intro-images .gs-catering-intro-image:last-child {
  grid-row: 1 / 2;
  aspect-ratio: 3/4;
  margin-top: 2rem;
}

.gs-catering-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gs-catering-intro-text h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.gs-catering-intro-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* Catering Services Grid */
.gs-catering-services {
  padding: 6rem 1.5rem;
  background: #fafafa;
}

.gs-catering-services-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.gs-catering-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.gs-catering-service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gs-catering-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gs-catering-service-card .gs-icon-circle {
  width: 70px;
  height: 70px;
}

.gs-catering-service-card .gs-icon-circle i {
  font-size: 1.75rem;
}

.gs-catering-service-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.gs-catering-service-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Catering Private Parties & Group Events */
.gs-catering-parties {
  padding: 6rem 1.5rem;
  background: var(--white);
}

.gs-catering-parties-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.gs-catering-parties-content h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.gs-catering-parties-content > p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.gs-catering-party-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2rem 0;
}

.gs-catering-party-type {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.gs-catering-party-type > i {
  font-size: 1.35rem;
  color: var(--primary-color);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.gs-catering-party-type h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.gs-catering-party-type p {
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.6;
}

.gs-catering-party-highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fef3e2;
  border-left: 4px solid var(--primary-color);
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 1.5rem;
}

.gs-catering-party-highlight > i {
  font-size: 1.5rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.gs-catering-party-highlight p {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

.gs-catering-parties-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.gs-catering-parties-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Catering Menu Highlights */
.gs-catering-menu {
  padding: 6rem 1.5rem;
  background: var(--white);
}

.gs-catering-menu-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.gs-catering-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.gs-catering-menu-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gs-catering-menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gs-catering-menu-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gs-catering-menu-item:hover img {
  transform: scale(1.05);
}

.gs-catering-menu-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 2rem 1.25rem 1.25rem;
}

.gs-catering-menu-overlay h3 {
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 0.25rem;
}

.gs-catering-menu-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

/* Catering How It Works */
.gs-catering-process {
  padding: 6rem 1.5rem;
  background: #fafafa;
}

.gs-catering-process-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.gs-catering-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.gs-catering-step {
  text-align: center;
}

.gs-catering-step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.gs-catering-step h3 {
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.gs-catering-step p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Catering FAQ */
.gs-catering-faq {
  padding: 6rem 1.5rem;
  background: var(--white);
}

.gs-catering-faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.gs-catering-faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gs-catering-faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 1.5rem 0;
}

.gs-catering-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 1rem;
}

.gs-catering-faq-question h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.gs-catering-faq-question i {
  color: var(--primary-color);
  font-size: 1.25rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.gs-catering-faq-item.active .gs-catering-faq-question i {
  transform: rotate(180deg);
}

.gs-catering-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.gs-catering-faq-item.active .gs-catering-faq-answer {
  max-height: 300px;
  padding-top: 1rem;
}

.gs-catering-faq-answer p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

.gs-catering-faq-answer a {
  color: var(--primary-color);
  font-weight: 600;
}

/* Catering Responsive */
@media (max-width: 992px) {
  .gs-catering-menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gs-catering-intro-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gs-catering-parties-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gs-catering-parties-image {
    order: -1;
  }

  .gs-catering-party-types {
    grid-template-columns: 1fr;
  }

  .gs-catering-steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 3rem auto 0;
  }
}

@media (max-width: 600px) {
  .gs-catering-hero {
    min-height: 40vh;
    padding: 80px 1rem 60px;
  }

  .gs-catering-hero h1 {
    font-size: 1.75rem;
  }

  .gs-catering-intro,
  .gs-catering-services,
  .gs-catering-parties,
  .gs-catering-menu,
  .gs-catering-process,
  .gs-catering-faq {
    padding: 3rem 1rem;
  }

  .gs-catering-intro-images {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .gs-catering-menu-grid {
    grid-template-columns: 1fr;
  }
}

/* Add at the end of your CSS file */
.popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  animation: fadeIn 0.3s ease-in-out;
}

.popup-content {
  position: relative;
  max-width: 550px;
  width: 80%;
  margin: 50px auto;
  background-color: rgba(255, 255, 255, 0.185);
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-50px);
  opacity: 0;
  animation: slideIn 0.5s ease-out forwards;
}

.popup-image {
  width: 100%;
  height: 700px;
  border-radius: 10px;
  display: block;
}

.close-popup {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 35px;
  height: 35px;
  background-color: #ff8225;
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.close-popup:hover {
  background-color: #fb773c;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .popup-content {
    width: 80%;
    margin: 150px auto;
  }
  .popup-image {
    height: 400px;
  }
}