@import url('https://fonts.googleapis.com/css2?family=Montserrat: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&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&display=swap');

:root {
  --primary-color: #DA1E13;
  --primary-color-light: #fffbf7;
  --primary-color-dark: #DA1E13;
  --text-dark: #050506;
  --text-light: #6b7280;
  --white: #ffffff;
  --max-width: 1200px;
    --title-font: "sans-serif";
  --heading-font: "Cormorant Garamond", serif;
  --body-font: "Montserrat", sans-serif;

  --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__container2 {
  max-width: var(--max-width);
  margin: auto;
  padding: 4rem 1rem 1rem 1rem;
}
@media screen and (max-width: 768px) {
  .section__container2 {
    padding: 5rem 1rem 1rem 1rem;
  }
  
}

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

.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;
}

.btn1 {
  padding: 0.6rem 1.5rem;
  outline: none;
  background-color: var(--primary-color-dark);
  color: var(--primary-color-light);
  border-radius: 10px;
  transition: 0.2s ease;
  cursor: pointer;
  font-weight: 400;
  white-space: nowrap;
}
.btn1:hover {
  background-color: var(--primary-color-light);
  border: 2px solid var(--primary-color-dark);
  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: var(--body-font);
  background-color: #fffbfbd5;
  font-weight: 300;
  letter-spacing: 0.2px;
}

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

.nav__container {
  position: fixed;
  top: 0;
  isolation: isolate;
  height: 100%;
  max-height: 110px;
  width: 100%;
  z-index: 9;
  background-color: var(--white); /* Fallback for Safari */
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px); /* Safari support */
}

/* Order Dropdown Styles */
.order-dropdown {
  position: relative;
  display: inline-block;
}

.order-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  border: none;
  outline: none;
}

.order-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 160px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.order-dropdown:hover .order-dropdown-menu,
.order-dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.order-dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
}

.order-dropdown-item:last-child {
  border-bottom: none;
}

.order-dropdown-item:hover {
  background-color: #f8f9fa;
  color: var(--primary-color);
}

.order-dropdown-item.halal-option {
  color: #28a745;
  font-weight: 600;
}

.order-dropdown-item.halal-option:hover {
  background-color: #e8f5e8;
  color: #218838;
}

.order-dropdown-item i {
  font-size: 14px;
}

.nav__header {
  width: 100%;
  height: 100%;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-color);
}
.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__wrapper .logo__title {
  display: none;
  font-size: 2rem;
  letter-spacing: 0.5px;
  color: var(--primary-color);
  background-clip: text;
  margin-left: 30px;
  /* font-family: "Unna", serif; */
}

.logo__image {
  width: 220px;
  height: auto;
  padding: 5px;
  border-radius: 8px;
  margin-top: 8px;
  display: block;
  max-width: 220px;
}

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

.nav__menu__btn {
  font-size: 1.5rem;
  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: 2rem;
  background-color: var(--primary-color-light);
  transition: 0.5s;
  z-index: -1;
  transform: translateY(-100%);
}

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

.nav__links a {
  font-family: var(--body-font);
  font-weight: 500;
  color: var(--text-dark);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav__links a:hover {
  font-weight: 900;
}

.nav__links a.active {
  font-weight: 900;
  position: relative;
}

.nav__links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
}

.nav__btn {
  display: none;
}

.nav__btn-mobile {
  display: none;
}

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

  .nav__links.open {
  border-bottom: none;
}
}

@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: var(--primary-color-light); /* Fallback for Safari */
    height: 85px;
    backdrop-filter: blur(32px);
  }

  .nav__header .logo__wrapper img {
    width: 170px;
    height: auto;
    border-radius: 0;
    margin-top: 0;
    padding: 5px;
    border-radius: 5px;
  }

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

  .nav__links.open li a {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
  }

  .nav__links.open li a.active {
    text-transform: none;
  }

  .nav__links.open li a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

  .nav__btn-mobile {
    display: block;
  }

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

  .nav__logo .logo__title {
    display: block;
    font-weight: 700;
    font-size: 1.4rem;
  }
}

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

/*-- -------------------------- -->
<---         Home Hero          -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
  #home-hero {
    text-align: center;
    padding: clamp(12.5rem, 25.95vw, 12.75em) 1rem;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #home-hero .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
  }
  #home-hero .cs-background:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.48;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
  }
  #home-hero .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #home-hero .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
  }
  #home-hero .cs-content {
    width: 100%;
    max-width: 42.375rem;
  }
  #home-hero .cs-topper {
    font-size: clamp(0.8125rem, 1.5vw, 1rem);
    line-height: 1.2em;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--secondary);
    display: inline-block;
    position: relative;
  }
  #home-hero .cs-title {
  font-family: var(--heading-font);
  font-size: clamp(2.75rem, 7vw, 4rem);
  font-weight: 600;
  line-height: 1.3em;
  text-align: center;
  max-width: 51.8125rem;
  color: #fff;
  position: relative;
  letter-spacing: 0.5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

  #home-hero .cs-subtitle {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 3rem;
    font-family: var(--title-font);
    font-weight: 400;
  }

  #home-hero .cs-text {
    font-size: clamp(1rem, 1.95vw, 1.25rem);
    line-height: 1.5em;
    text-align: center;
    width: 100%;
    max-width: clamp(29rem, 60vw, 38.785rem);
    margin: 0 auto 0;
    margin-bottom: 2rem;
    color: #f2f2f2;
  }
  #home-hero .cs-button-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  #home-hero .cs-button-solid {
    font-size: 1rem;
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    min-width: 12.5rem;
    padding: 0 1.5rem;
    background-color: var(--primary-color);
    border-radius: 0.5rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
  }
  #home-hero .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #ff3838;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
  }
  #home-hero .cs-button-solid:hover:before {
    width: 100%;
  }

 #home-hero .cs-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }
  #home-hero .cs-image img {
    width: 30px;
    height: 100%;
    object-fit: cover;
  }
  #home-hero .cs-button1 {
    background-color: var(--primary-color-dark);
    font-size: 1.2rem;
    letter-spacing: 1px;
    border: none;
  }
}


@media only screen and (max-width: 768px) {
  #home-hero{
    padding: clamp(6rem, 6.4vw, 8rem) 2rem;
  }
#home-hero .cs-subtitle{
  font-size: 1.9rem;
}
}
.flavor-hero {
  display: flex;
  align-items: center;
  justify-content:center;
  padding: 120px 0 0 40px;
  background: url("./assets/backgrounds/4.webp") no-repeat center center/cover;
  background-attachment: fixed;
}

.flavor-text {
  max-width: 600px;
  padding: 0 20px;
}

.flavor-tagline {
  font-size: 2.5rem;
  color: #333;
  font-weight: 800;
  margin-bottom: 25px;
  font-family: 'Poppins', sans-serif;
}

.accent-red {
  color: var(--primary-color);
}

.accent-white-text {
  color: white;
}
.flavor-subtext {
  color: #666;
  font-size: 1.3rem;
  margin-bottom: 35px;
}

.flavor-buttons a {
  padding: 16px 32px;
  margin-right: 18px;
  text-decoration: none;
  border-radius: 35px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.flavor-btn-order {
  background-color: #d32f2f;
  color: #fff;
}
.flavor-btn-order:hover {
  background-color: #b71c1c;
}

.flavor-btn-menu {
  background-color: #ffa000;
  color: #fff;
}
.flavor-btn-menu:hover {
  background-color: #ef6c00;
}

.flavor-image-section {
  min-width: 800px;
  width: 800px;
}

@media screen and (max-width: 1300px) {
  .flavor-hero {
    position: relative; /* Ensure the pseudo-element is positioned relative to this container */
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 150px 20px 40px 20px;
    background: url("./assets/backgrounds/6.webp") no-repeat center center/cover;
}

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

.flavor-hero * {
    position: relative; 
    z-index: 2; 
}

 
  .flavor-image-section {
    min-width: 100%;
    width: 100%;
    margin-top: 30px;
  }

  .flavor-tagline {
    font-size: 2.2rem;
  }

  .flavor-subtext {
    font-size: 1.2rem;
    margin-bottom: 25px;
  }

  .flavor-image-section {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .flavor-hero {
    padding: 120px 20px 40px 20px;
  }

  .flavor-tagline {
    font-size: 1.6rem;
  }

  .flavor-subtext {
    font-size: 0.9rem;
    width: 100%;
  }

  .flavor-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .flavor-btn-order,
  .flavor-btn-menu {
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
    margin: 5px;
  }

  .flavor-image-section {
    display: none;
  }
}

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

.special__container :is(.section__header, .section__description) {
  max-width: 800px;
  margin-inline: auto;
  margin-top: 2rem;
  
}



.special__container .section__header {
  font-family: var(--title-font);
  font-weight: 400;
  font-size: clamp(3.5rem, 7vw, 4rem);
  line-height: 1.2em;
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}

.special__container .section__sub__header {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.55rem;
  
}

.special__container .section__description {
  padding: 0 1rem;
}

.special__container .gluten-wrapper,
.special__container .vegan-wrapper {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 8px;
}

.special__container .gluten-wrapper img {
  width: 24px;
  height: auto;
}

.special__container .vegan-wrapper img {
  width: 24px;
}



.special__card {
  padding: 1rem;
  text-align: center;
  border-radius: 2rem;
  transition: 0.3s;
}

.special__card .special-card-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.special__card:hover {
  box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.1);
}

.special__card img {
  width: 350px; /* Fixed width */
  height: 250px; /* Fixed height */
  margin-inline: auto;
  margin-bottom: 1.3rem;
  border-radius: 1rem;
  filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.3));
  object-fit: cover; /* Ensures the image covers the area */
}
@media screen and (max-width: 768px) {
  .special__card img {
    width: 100%; /* Full width on mobile */
    max-width: 350px; /* Maximum width */
    height: auto; /* Maintain aspect ratio */
  }
}

.special__card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.special__card .card-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.special__card .card-title-wrapper .gluten {
  width: 24px;
  height: 24px;
  margin: 0;
}

.special__card .card-title-wrapper .vegan {
  width: 23px;
  height: 23px;
  margin: 0;
}

.special__card p {
  margin-bottom: 0.5rem;
  color: var(--text-light);
  line-height: 1.75rem;
}

.special__ratings {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: goldenrod;
}

.special__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.special__footer .price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.special__grid {
  margin: 4rem auto 0;
  display: grid;
  gap: 2rem;
  width: 100%;
  max-width: var(--max-width);
  padding: 0 1rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  justify-items: center;
}

.special__card {
  max-width: 350px;
  width: 100%;
  padding: 1.5rem;
  text-align: center;
  border-radius: 2rem;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.special__card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1.3rem;
  transition: transform 0.3s ease;
}

.special__card:hover img {
  transform: scale(1.03);
}

@media (min-width: 768px) {
  .special__grid {
    gap: 2.5rem;
    padding: 0 2rem;
  }
}

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

@media (min-width: 1280px) {
  .special__grid {
    gap: 3rem;
  }
}

@media only screen and (max-width: 768px) {
  .section__header {
    font-size: 1.6rem;
  }

  .special__card {
    box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.1);
  }
}

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

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

.explore__container {
  display: grid;
  gap: 2rem;
  overflow: hidden;
}

.leaf-icon {
  width: 30px;
  height: 30px;
  margin: 0;
}


.explore__image img {
  max-width: 500px;
  margin-inline: auto;
  border-radius: 1rem;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.3));
  transition: all 0.3s ease-in-out;
}


.explore__image img:hover{
  perspective: 1000px;
  transform-style: preserve-3d;
  transform: rotateY(10deg) rotateZ(-5deg);
}


.explore__content .section__description {
  margin-bottom: 2rem;
}

.explore__content .section__header {
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.explore__content .section__header span {
  color: var(--primary-color-dark);
  text-transform: none;
  font-family: var(--title-font);
  font-weight: 500;
  font-size: 3.5rem;

}

.explore__btn {
  text-align: center;
}

.explore__btn a {
  color: #fff;
  background-color: var(--primary-color-dark);
}

.explore__btn a:hover {
  color: var(--primary-color-dark);
  background-color: #fff;
  border: 2px solid var(--primary-color-dark);
}

@media only screen and (max-width: 768px) {
  .explore__container {
    padding: 2rem 2rem 5rem 2rem;
  }
  .explore__image img {
    max-width: 370px;
    margin-inline: auto;
  }
}

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

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

.faq__container {
  padding: 5rem 1rem;
  background-color: #f9f9f9;
}

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

.faq__category {
  background-color: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq__category h3 {
  font-size: 1.5rem;
  color: var(--primary-color-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color-light);
}

.faq__item {
  margin-bottom: 1rem;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 0.5rem;
}

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

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

.faq__icon {
  font-size: 1.2rem;
  color: var(--primary-color-dark);
  transition: transform 0.3s ease;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__item.active .faq__answer {
  max-height: 1000px;
  padding-bottom: 1rem;
}

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

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

.faq__answer ul {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
}

.faq__answer li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

@media only screen and (max-width: 768px) {
  .faq__accordion {
    grid-template-columns: 1fr;
  }
  
  .faq__category {
    padding: 1rem;
  }
}

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

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

.footer {
  background: linear-gradient(to right, #181818 0%, #3a120f 100%);
}

.footer__container {
  display: grid;
  gap: 2rem;
  padding: 3rem 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.footer__logo {
  margin-bottom: 1rem;
}

.footer__logo a span {
  color: #cfcfcf;
  font-size: 1rem;
}



.footer__col .section__description {
  text-align: justify;
  color: #d5d5d5;
}

.footer__col h4 {
  margin: 1.5rem 0 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__location .location-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__location .address,
.footer__location .phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.9rem;
  color: #b9b9b9;
}

.footer__location .address i,
.footer__location .phone i {
  color: var(--primary-color);
  font-size: 1rem;
}

.footer__location .order-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 5px;
  text-align: center;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
  max-width: fit-content;
}

.footer__location .order-btn:hover {
  background-color: var(--primary-color-dark);
  transform: translateY(-2px);
}

.footer__location .hours-compact {
  padding: 0.75rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  margin-top: 0.5rem;
}

.footer__location .hours-title {
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
  font-size: 0.85rem;
}

.footer__location .hours-compact p {
  margin: 0.25rem 0;
  font-size: 0.85rem;
  color: #b9b9b9;
}

.footer__links a {
  color: #b9b9b9;
}

.footer__links li {
  color: #b9b9b9;
}

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

.footer__bottom {
  background-color: #0f0f0f;
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__policy {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}

.footer__policy span {
  color: #555;
}

.footer__bar {
  text-align: center;
  font-size: 0.85rem;
  color: rgb(163, 163, 163);
  margin-bottom: 0.5rem;
}

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

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

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

.social-icons-wrapper a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-decoration: none;
  color: #b9b9b9;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-icons-wrapper a:hover {
  background-color: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
}

.footer__company {
  text-align: center;
  font-size: 0.85rem;
}

.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 only screen and (max-width: 768px) {
  .footer__logo span {
    font-size: 1.2rem;
  }

  .footer__company {
    padding-bottom: 6.5rem;
  }
}

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

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

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

  .header__btn {
    margin-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .header__btn {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    margin-top: 1.5rem;
  }

  .header__btn .btn {
    width: 100%;
    max-width: 200px;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    margin: 0;
  }

}

@media screen and (max-width: 480px) {
  .header__btn {
    padding: 0 1rem;
  }

  .header__btn .btn {
    max-width: 100%;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    border-radius: 18px;
  }
}

/* Mobile first - 2x2 grid for popular dishes */
@media (max-width: 540px) {
  .special__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .special__card {
    padding: 1rem;
    max-width: none;
  }

  .special__card img {
    height: 150px;
  }

  .special__card h4 {
    font-size: 1rem;
  }

  .special__card p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

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

  .footer__container {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .nav__header {
    flex: 1;
    padding: 0;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .nav__logo {
    display: block;
  }

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

  .logo__image {
    display: block !important;
    width: 270px !important;
    height: auto !important;
    max-width: 270px !important;
  }

  .logo a,
  .nav__logo a {
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
  }

  .nav__logo a .logo__wrapper {
    display: flex !important;
  }
  
  .logo a span,
  .logo__title {
    color: var(--primary-color) !important;
  }

  .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__btn {
    display: flex;
    flex: 1;
  }

  .nav__btn .btn {
    font-size: 0.85rem;
    font-weight: 600;
    background-color: var(--white);
    color: var(--primary-color);
    text-transform: uppercase;
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

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

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

  .header__content h1,
  .header__content .section__description,
  .header__btn {
    text-align: left;
  }

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

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

  .special__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .explore__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .explore__content .section__header {
    max-width: 500px;
  }

  .explore__content :is(.section__header, .section__description),
  .explore__btn {
    text-align: left;
  }

  .footer__container {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }

  .footer__main .section__description {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .footer__links {
    font-size: 0.9rem;
  }

  .footer__location {
    font-size: 0.9rem;
  }
}



@media (width > 1024px) {
  .special__grid {
    gap: 1rem;
  }

  .special__card {
    padding: 2rem;
    border-radius: 3rem;
  }
}

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

.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: 600;
  font-size: 32px;
}

.about-para p {
  font-size: calmp(0.875rem, 1.5vw, 1rem);
  text-align: justify;
  line-height: 1.6;
}

.about-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  /* min-height: 100vh; */
}

.wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-auto-rows: 280px;
  grid-auto-flow: dense;
  grid-gap: 25px;
  width: 100%;
}
.single-box {
  position: relative;
}
.single-box a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 1.2rem;
}
.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 only screen and (max-width: 600px) {
  .about-para p {
    text-align: justify;
    line-height: 1.4;
    margin: 0 4%;
  }

  .about-gallery {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (max-width: 768px) {
  .img-area {
    padding: 0;
  }
  .wrapper {
    max-width: 100%;
    padding: 0;
  }

  .about-title h1 {
    font-size: 24px;
    text-align: center;
    margin: 0 4%;
  }
}

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

/*********************************  best dishes section *********************************/
.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: 2rem;
  margin-bottom: 2rem;
}

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

.cards_item {
  display: flex;
  padding: 1rem;
  border-radius: 2rem;
}

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

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

.card_price {
  position: absolute;
  bottom: 8px;
  right: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 45px;
  border-radius: 0.25rem;
  background: #000;
  opacity: 0.9;
  border: 2px solid var(--primary-color-dark);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

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

.note {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 4px 8px;
  border-radius: 0.25rem;
  background-color: #fff;
  font-size: 14px;
  font-weight: 700;
}

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

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

@media screen and (max-width: 768px) {
  .card_image {
    position: relative;
    max-height: 250px;
  }

  .best-dishes {
    margin: 0 auto;
    padding: 1rem 1rem;
  }
}

@media only screen and (max-width: 769px) {
  .cards {
    gap: 20px;
  }
}

.card {
  background-color: white;
  border-radius: 1rem;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px,
    rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 48px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.card_content {
  position: relative;
  padding: 16px 12px 32px 24px;
  margin: 16px 8px 8px 0;
  max-height: 290px;
  overflow-y: scroll;
}

.card_content::-webkit-scrollbar {
  width: 8px;
}

.card_content::-webkit-scrollbar-track {
  box-shadow: 0;
  border-radius: 0;
}

.card_content::-webkit-scrollbar-thumb {
  background: #e7e7e7;
  border-radius: 15px;
}

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

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

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

.card_text p {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.5;
}

.card_text p:last-child {
  margin: 0;
}

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

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

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

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

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

.menu-btn-wrapper a {
  color: #fff;
  background-color: var(--primary-color-dark);
}

.menu-btn-wrapper a:hover {
  color: var(--primary-color-dark);
  background-color: #fff;
  border: 2px solid var(--primary-color-dark);
}

.menu-heading-wrapper .menu-title {
  font-size: 60px;
  font-weight: 700;
}

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

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

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

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

.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; /* Enable wrapping */
  justify-content: center;
  margin: 1.5rem 0;
  white-space: normal; /* Allow wrapping */
  gap: 10px; /* Add gap between buttons */
}

.menu-button {
  font-family: var(--Noto);
  font-size: 1.1rem;
  background: none;
  border: none;
  color: var(--lightgray);
  margin: 0 1rem;
  cursor: pointer;
  flex-shrink: 0;
}

.menu-button::after {
  content: "";
  margin-top: 0.5rem;
  display: block;
  width: 0;
  height: 2px;
  background: var(--primary-color-dark);
  transition: width 0.4s ease-out;
}

.menu-button:hover::after {
  width: 100%;
}

.menu-button:hover {
  opacity: 0.8;
}

.active-button {
  color: var(--primary-color-dark);
  opacity: 0.8;
  font-weight: bold;
}

.active-button:after {
  content: "";
  margin: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary-color-dark);
}

.menu-items {
  margin: 2rem 0;
  transition: all 0.5s ease;
}

.menu-item {
  border-radius: 4px;
  overflow: hidden;
  background: var(--lightgray);
  color: var(--text-color);
  margin: 0.7rem 0;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  animation: appear 2s;
}

@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 only screen and (min-width: 768px) {
  .menu-buttons {
    justify-content: center;
  }
}

@media only screen and (min-width: 600px) {
  .menu-item {
    display: grid;
    /* grid-template-columns: 25% auto; */
    align-items: center;
    padding: 1rem;
    column-gap: 1rem;
  }
  .item-details {
    padding: 0;
  }
}
@media only screen and (max-width: 768px) {
  .menu-item {
    padding: 0rem; /* Reduce padding */
  }

  .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 */
  .menu-item img {
    max-width: 80px; /* Reduce image size */
    height: auto;
  }
}
@media only screen and (max-width: 768px) {
  .navigation-arrows .left-arrow,
  .navigation-arrows .right-arrow {
    padding: 0.1rem 0.5rem;
    color: var(--primary-color-dark);
    border: 2px solid var(--primary-color-dark);
    border-radius: 50%;
    font-size: 1.2rem;
  }

  .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-buttons.fixed-nav {
    top: 82px;
    margin-top: 2.5px;
    padding-top: 12px;
    padding-bottom: 10px;
    background-color: #2d2d2d;
  }

  .menu-buttons.fixed-nav .menu-button {
    color: #fff;
  }

  .menu-buttons.fixed-nav .menu-button.active-button:after {
    margin-top: 3px;
    height: 3px;
  }
}

/* @media only screen and (min-width: 768px) {
  .menu-header p {
    width: 75%;
    margin: 0 auto;
  }
} */

@media only screen and (min-width: 992px) {
  /* .menu-header p {
    width: 55%;
  } */

  .menu-items {
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2rem;
  }
}

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

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

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

.flex {
  display: flex;
  gap: var(--gap, 1rem);
}

.flow > *:where(:not(:first-child)) {
  margin-top: var(--flow-spacer, 1em);
}

.bg-primary-400 {
  background: var(--primary-color-dark);
}
.bg-secondary-400 {
  background: linear-gradient(to right, rgb(0, 141, 0), rgb(0, 119, 0));
}
.bg-secondary-500 {
  background: #212013;
}

.bg-neutral-100 {
  background: hsl(var(--clr-neutral-100));
}

.text-neutral-100 {
  color: hsl(var(--clr-neutral-100));
}
.text-secondary-400 {
  color: hsl(var(--clr-secondary-400));
}
.testimonial-heading {
  font-size: 2.5rem;
}

.testimonial-grid {
  display: grid;
  gap: 1.5rem;
  grid-auto-columns: 1fr;
  grid-template-areas:
    "one"
    "two"
    "three"
    "four"
    "five";

  padding-block: 2rem;
  padding-bottom: 6rem;
  width: min(95%, 70rem);
  margin-inline: auto;
}

.testimonial {
  font-size: var(--fs-400);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 2.5rem 3.75rem 3rem -3rem hsl(var(--clr-secondary-400) / 0.25);
}

.testimonial:nth-child(1) {
  grid-area: one;
}
.testimonial:nth-child(2) {
  grid-area: two;
}
.testimonial:nth-child(3) {
  grid-area: three;
}
.testimonial:nth-child(4) {
  grid-area: four;
}
.testimonial:nth-child(5) {
  grid-area: five;
}

@media screen and (min-width: 33em) {
  .testimonial-grid {
    grid-template-areas:
      "one one"
      "two three"
      "five five"
      "four four";
  }
}

@media screen and (min-width: 38em) {
  .testimonial-grid {
    grid-template-areas:
      "one one"
      "two five"
      "three five"
      "four four";
  }
}

@media screen and (min-width: 54em) {
  .testimonial-grid {
    grid-template-areas:
      "one one two"
      "five five five"
      "three four four";
  }
}

@media screen and (min-width: 75em) {
  .testimonial-grid {
    grid-template-areas:
      "one one two five"
      "three four four five";
  }
}

@media screen and (max-width: 768px) {
  .testimonial-heading {
    font-size: 1.5rem;
    text-align: center;
  }

  .testimonial-grid {
    padding: 3rem 1rem;
    grid-template-areas:
      "one two"
      "three four"
      ". five";
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .testimonial {
    padding: 1.5rem;
    font-size: 0.9rem;
  }

  .testimonial .name {
    font-size: 0.95rem;
  }

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

  .testimonial > p:first-of-type {
    font-size: 0.9rem;
  }

  #testimonial-section {
    padding: 4rem 0.2rem;
  }
}

@media screen and (max-width: 480px) {
  .testimonial-grid {
    gap: 0.75rem;
    padding: 2rem 0.5rem;
  }

  .testimonial {
    padding: 1.25rem;
    font-size: 0.85rem;
  }

  .testimonial .name {
    font-size: 0.9rem;
  }

  .testimonial .position {
    font-size: 0.75rem;
  }

  .testimonial > p:first-of-type {
    font-size: 0.85rem;
    line-height: 1.3;
  }

  .testimonial img {
    width: 1.5rem;
  }
}

.testimonial.quote {
  background-image: url("./assets/testimonials/bg-pattern-quotation.svg");
  background-repeat: no-repeat;
  background-position: top right 10%;
}

.testimonial img {
  width: 1.75rem;
  aspect-ratio: 1;
  border-radius: 50%;
}

.testimonial .name {
  font-size: var(--fs-400);
  font-weight: var(--fw-400);
  line-height: 1;
}

.testimonial .position {
  font-size: var(--fs-300);
  opacity: 0.5;
}

.testimonial > p:first-of-type {
  font-size: var(--fs-500);
  line-height: 1.2;
}

.testimonial > p:last-of-type {
  opacity: 0.7;
}

/***********************************  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;
  }
  #gallery-header .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 3rem;
  }
  #gallery-header .cs-content {
    max-width: 39.375rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  #gallery-header .cs-topper {
    font-size: 1rem;
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    display: block;
  }
  #gallery-header .cs-title {
    /* 39px - 61px */
    font-size: clamp(1.8375rem, 5vw, 3.8125rem);
    font-weight: 900;
    line-height: 1.2em;
    text-align: center;
    max-width: 23ch;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
  }
  #gallery-header .cs-text {
    /* 16px - 20px */
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.5em;
    text-align: center;
    width: 100%;
    max-width: 33.1875rem;
    /* 28px - 40px */
    margin: 0 0 clamp(1.75rem, 3.92vw, 2.5rem) 0;
    color: var(--bodyTextColor);
  }
  #gallery-header .cs-button-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  #gallery-header .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #1e1e1e;
    border: 2px solid var(--primary-color-dark);
    min-width: 9.375rem;
    padding: 0 0.5rem;
    background-color: var(--primary);
    border-radius: 0.45rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
  }
  #gallery-header .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: var(--primary-color-dark);
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
  }

  #gallery-header .cs-button-solid:hover {
    color: #fff;
  }

  #gallery-header .cs-button-solid:hover:before {
    width: 100%;
    color: #fff;
  }
  #gallery-header .cs-picture {
    width: 100%;
    max-width: 35.625rem;
    height: clamp(25rem, 95vw, 44.5rem);
    border-radius: 0 clamp(6.25rem, 17vw, 12.5rem) 0
      clamp(6.25rem, 17vw, 12.5rem);
    box-shadow: 0px 4px 60px rgba(0, 0, 0, 0.16);
    overflow: hidden;
    display: block;
    position: relative;
  }
  #gallery-header .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
  }
  #gallery-header .cs-wave {
    width: 320%;
    height: auto;
    display: block;
    position: absolute;
    left: 50%;
    bottom: -1px;
    transform: translateX(-50%);
    z-index: -1;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #gallery-header {
    text-align: left;
    background-color: #fffdf6;
  }

  .cs-content span:nth-child(1) {
    font-weight: 800;
    font-size: 20px;
    margin: 0 0 0 35%;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    width: 170px;
    animation: type 2s steps(40, end) forwards;
  }

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

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

  #gallery-header .cs-container {
    flex-direction: row;
    justify-content: space-between;
  }
  #gallery-header .cs-content {
    width: 40vw;
    flex: none;
    align-items: flex-start;
    order: 2;
  }
  #gallery-header .cs-title,
  #gallery-header .cs-text {
    text-align: left;
  }
  #gallery-header .cs-picture {
    height: clamp(38.9375rem, 60vw, 50.875rem);
  }
  #gallery-header .cs-wave {
    width: 100%;
    left: 0;
    transform: scaleX(-1);
  }
}

@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;
}

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

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

.dish-menu-title h1 {
  font-weight: 600;
  font-size: 32px;
  display: flex;
  justify-content: center;
  text-shadow: 0px 3px 3px rgba(154, 154, 154, 0.9);
}

.dish-menu-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  /* min-height: 100vh; */
}

.dish-menu-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-auto-rows: 360px;
  grid-auto-flow: dense;
  grid-gap: 25px;
  width: 100%;
}
.dish-menu-wrapper .single-box {
  position: relative;
}
.dish-menu-wrapper .single-box a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 1.2rem;
}
.dish-menu-wrapper .single-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s;
  user-select: none;
  filter: brightness(70%);
}
.dish-menu-wrapper .single-box a:hover img {
  transform: rotate(5deg) scale(1.4);
  filter: brightness(90%);
}

.dish-category-name {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #212121;
  background-color: #fff;
  font-size: 1rem;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin: 0;
  border: 2px solid #fff;
  padding: 4px 10px;
  border-radius: 8px;
}

.dish-category-name:hover {
  color: #fff;
  background-color: var(--primary-color-dark);
  border: 2px solid var(--primary-color-dark);
}

.dish-category-name a {
  text-decoration: none;
  color: #212121;
}

.dish-category-name:hover a {
  text-decoration: none;
  color: #fff;
}

@media only screen and (max-width: 600px) {
  .dish-menu-gallery {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (max-width: 768px) {
  .img-area {
    padding: 0;
  }
  .dish-menu-wrapper {
    max-width: 100%;
    padding: 0;
  }

  .dish-menu-title h1 {
    font-size: 24px;
    text-align: center;
    margin: 0 4%;
  }

  .dish-menu-wrapper {
    grid-auto-rows: 290px;
  }

  #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;
}

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

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

.dish-category-title h1 {
  font-weight: 600;
  font-size: 32px;
  display: flex;
  justify-content: center;
  letter-spacing: 1px;
  text-shadow: 0px 2px 3px rgba(154, 154, 154, 0.9);
}

.dish-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  /* min-height: 100vh; */
}

.dish-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-auto-rows: 360px;
  grid-auto-flow: dense;
  grid-gap: 45px;
  width: 100%;
}
.dish-wrapper .single-box {
  position: relative;
}
.dish-wrapper .single-box a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 1.2rem;
}
.dish-wrapper .single-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s;
  user-select: none;
  filter: brightness(98%);
}
.dish-wrapper .single-box a:hover img {
  transform: rotate(5deg) scale(1.4);
}

.dish-card-name {
  /* position: absolute;
  bottom: 10px;
  left: 10px; */
  color: #212121;
  display: flex;
  justify-content: center;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin: 0;
  margin-top: 4px;
}

@media only screen and (max-width: 600px) {
  .dish-gallery {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (max-width: 768px) {
  .img-area {
    padding: 0;
  }
  .dish-wrapper {
    max-width: 100%;
    padding: 0;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    grid-auto-rows: 250px;
  }

  .dish-category-title h1 {
    font-size: 24px;
    text-align: center;
    margin: 0 4%;
  }

  #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 */

/*********************************  contact location cards *********************************/

.contact-locations-section {
  padding: 4rem 1rem;
  background-color: #fafafa;
}

.contact-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.contact-section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.location-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.location-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.location-card .map-container {
  height: 300px;
  width: 100%;
  overflow: hidden;
}

.location-card .map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-card .card-content {
  padding: 2rem;
}

.location-card h3 {
  font-size: 1.5rem;
  color:#aa0000;
  margin-bottom: 1.5rem;
  font-family: var(--body-font);
  text-align: center;
  text-transform: uppercase;
}

.location-details {
  margin-bottom: 2rem;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
}

.detail-item i {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-top: 2px;
  min-width: 20px;
}

.detail-item span,
.detail-item a {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.4;
  text-decoration: none;
}

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

.hours {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.order-btn {
  background: var(--primary-color);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .location-cards-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .location-card .card-content {
    padding: 1.5rem;
  }

  .contact-section-header {
    margin-bottom: 2rem;
  }

  .card-actions {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

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

@media (max-width: 480px) {
  .location-cards-container {
    grid-template-columns: 1fr;
    min-width: 300px;
  }

  .location-card .map-container {
    height: 250px;
  }
}

/*********************************  contact location cards *********************************/

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

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

.privacy-header-image {
  border-radius: 2rem;
}

.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 ********************* */
.header__contact__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.header__contact__content .contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.header__contact__content .contact-list li a {
  color: #18181b;
}

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

.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 50%;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media only screen and (max-width: 768px) {
  .header__contact__content h1 {
    font-size: 1.8rem;
  }
}
/* ****************** 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;
  }

  /* Floating dropdown styles */
  .floating-order-dropdown {
    position: relative;
    display: inline-block;
  }

  .floating-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    outline: none;
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 20px;
    border-radius: 1rem;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
  }

  .floating-dropdown-btn:hover {
    background-color: #b8180f;
  }

  .floating-dropdown-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
  }

  .floating-order-dropdown:hover .floating-dropdown-btn i {
    transform: rotate(180deg);
  }

  .floating-dropdown-menu {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    z-index: 2001;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    margin-bottom: 10px;
  }

  .floating-order-dropdown:hover .floating-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  .floating-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    font-weight: 500;
  }

  .floating-dropdown-item:last-child {
    border-bottom: none;
    border-radius: 0 0 12px 12px;
  }

  .floating-dropdown-item:first-child {
    border-radius: 12px 12px 0 0;
  }

  .floating-dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
  }

  .floating-dropdown-item.halal-option {
    color: #28a745;
    font-weight: 600;
  }

  .floating-dropdown-item.halal-option:hover {
    background-color: #e8f5e8;
    color: #218838;
  }

  .floating-dropdown-item i {
    font-size: 14px;
  }
}

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

@media (max-width: 768px) {
  .menu-buttons {
    display: none; /* Hide the original menu buttons on mobile */
  }

  .mobile-menu-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #f8f8f8;
    position: sticky;
    top: 85px; /* Adjust based on your navbar height */
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  #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;
  }
}

@media (min-width: 769px) {
  .mobile-menu-controls {
    display: none; /* Hide on desktop */
  }
}

.selected-category {
  text-align: center;
  font-size: 1.2rem;
  margin-top: 10px;
  color: rgb(255, 213, 102);
  display: none; /* Hide by default */
}

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

.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__container3 {
  margin-top: 7.5rem;
}

.header__image {
  position: relative;
}

.dish__card {
  position: absolute;
  bottom: -36px;
  right: -18px;
  width: 50%;
}

.dish__card2 {
  position: absolute;
  top: 10px;
  left: 45px;
  width: 30%;
}

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

.header__image .img2 {
  max-width: 600px;
  margin-inline: auto;
  border-radius: 1.2rem;
}

.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;
}



.header__btn {
  margin-top: 2rem;
}

.header__btn .btn {
  font-size: 1rem;
  border-radius: 22px;
  background-color: var(--primary-color-dark);
  color: #fff;
}

.header__btn .btn:hover {
  background-color: #fff;
  color: var(--primary-color-dark);
  border: 2px solid var(--primary-color-dark);
}

@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;
  }

  .main-btn {
    display: none;
  }

  .dish__card2 {
    position: absolute;
    top: 6px;
    left: 15px;
    width: 50%;
  }
}

@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;
  }
  #our-story-container .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
  }
  #our-story-container .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #our-story-container .cs-topper {
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    display: block;
  }
  #our-story-container .cs-title {
    font-size: var(--headerFontSize);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
  }
  #our-story-container .cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #our-story-container .cs-text {
    max-width: 62.5rem;
  }
  #our-story-container .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--primary);
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }
  #our-story-container .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
  }
  #our-story-container .cs-button-solid:hover:before {
    width: 100%;
  }
  #our-story-container .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* 16px - 20px */
    gap: clamp(1rem, 2vw, 1.25rem);
  }
  #our-story-container .cs-item {
    width: 100%;
    text-align: left;
    list-style: none;
    /* 20px - 32px */
    padding: clamp(1.25rem, 2.3vw, 2rem);
    background-color: #fffdf9;
    border-radius: 1rem;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    grid-column: span 6;
    position: relative;
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
  }
  #our-story-container .cs-icon {
    width: 3rem;
    height: auto;
    margin: 0 0 1.25rem 0;
    display: block;
  }
  #our-story-container .cs-h3 {
    font-size: 1.25rem;
    line-height: 1.5em;
    margin: 0 0 0.75rem 0;
    color: var(--headerColor);
    transition: color 0.3s;
  }
  #our-story-container .cs-item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1.1rem);
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
    transition: color 0.3s;
  }
  #our-story-container .cs-floater {
    width: 21.9375rem;
    height: auto;
    display: none;
    position: absolute;
    top: -13.75rem;
    right: -3.75rem;
    transform: rotate(-66deg);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #our-story-container .cs-container {
    max-width: 80rem;
  }
  #our-story-container .cs-item {
    grid-column: span 2;
  }
  #our-story-container .cs-floater {
    display: block;
  }
}

/*-- -------------------------- -->
<---          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;
  }
  #about-gallery-container .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
  }
  #about-gallery-container .cs-content {
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.5rem;
  }
  #about-gallery-container .cs-title {
    margin: 0;
  }
  #about-gallery-container .cs-gallery {
    width: 100%;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(19.0625rem, 1fr));
    /* 16px - 20px */
    gap: clamp(1rem, 1.5vw, 1.25rem);
    position: relative;
  }
  #about-gallery-container .cs-image {
    /* 260px - 360px */
    min-height: clamp(16.25rem, 60vw, 20rem);
    border-radius: 1rem;
    /* clips the image corners */
    overflow: hidden;
    display: block;
    position: relative;
  }
  #about-gallery-container .cs-image img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* makes it act like a background image */
    object-fit: cover;
    transition: transform 0.9s;
  }

  #about-gallery-container .cs-image img:hover {
    transform: rotate(5deg) scale(1.4);
  }
}

/* Mobile specific layout for gallery - 2x2 grid */
@media only screen and (max-width: 768px) {
  #about-gallery-container {
    padding: clamp(1.5rem, 4vw, 2rem) 0.75rem;
  }

  #about-gallery-container .cs-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    max-width: 100%;
  }

  #about-gallery-container .cs-image {
    min-height: clamp(8rem, 25vw, 12rem);
    border-radius: 0.75rem;
  }
}

@media only screen and (max-width: 480px) {
  #about-gallery-container {
    padding: 1rem 0.5rem;
  }

  #about-gallery-container .cs-gallery {
    gap: 0.5rem;
  }

  #about-gallery-container .cs-image {
    min-height: clamp(6rem, 22vw, 10rem);
    border-radius: 0.5rem;
  }
}

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #about-services {
    padding: var(--sectionPadding);
  }
  #about-services .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #about-services .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }

  #about-services .cs-title {
    max-width: 18ch;
  }
  #about-services .cs-card-group {
    margin: 0;
    padding: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.25rem;
  }
  #about-services .cs-item {
    width: 100%;
    text-align: left;
    list-style: none;
    margin: 0;
    /* 24px - 32px */
    padding: clamp(1.5rem, 3vw, 2rem);
    background-color: #fff;
    box-shadow: 0px 12px 80px 0px rgba(26, 26, 26, 0.08);
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    grid-column: span 12;
    grid-row: span 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    z-index: 1;
  }
  #about-services .cs-icon-wrapper {
    width: 3.45rem;
    height: 3.45rem;
    margin: 0 0 1.5rem 0;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 50%;
  }
  #about-services .cs-icon {
    width: 2.2rem;
    height: auto;
  }
  #about-services .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
    line-height: 1.2em;
    font-weight: bold;
    text-align: inherit;
    margin: 0 0 0.75rem 0;
    color: var(--headerColor);
  }
  #about-services .cs-item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    max-width: 28.125rem;
    margin: 0;
    padding: 0;
    color: var(--bodyTextColor);
  }
}

@media only screen and (min-width: 48rem) {
  #about-services .cs-item {
    grid-column: span 4;
  }
}
/* New menu design for desktop */
@media only screen and (min-width: 768px) {
  .menu-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
  }

  .menu-buttons {
    flex-direction: column;
    width: 25%;
    position: sticky;
    top: 85px;
    margin: 0;
    padding: 1.4rem 0;
    gap: 5px;
    border-radius: 18px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px,
      rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
  }

  .menu-button {
    font-size: 0.9rem;
    text-align: left;
    padding: 0.2rem 0.8rem;
    background-color: var(--lightgray);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
  }

  .menu-items {
    flex-grow: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.5rem;
    row-gap: 1rem;
    margin: 0;
  }

  .menu-item {
    border-radius: 0.6rem;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    margin-top: 0;
  }
  .menu-item {
    transition: all 0.3s ease-in-out;
  }

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

  .item-price {
    color: var(--primary-color-dark);
  }

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

  @media only screen and (min-width: 1200px) {
    .menu-buttons {
      width: 30%;
    }

    .menu-button {
      width: 95%;
    }
  }
}

/* .menu-item .item-details .item-desc span{
  color: #08b319;
} */

/*-- -------------------------- -->
<---           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;
  }
  #about-section-hero .cs-picture {
    /* Background Image */
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
  }
  #about-section-hero .cs-picture:before {
    /* Black Color Overlay */
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 1;
    /* prevents the cursor from interacting with it */
    pointer-events: none;
  }
  #about-section-hero .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* Makes image act like a background-image */
    object-fit: cover;
  }
  #about-section-hero .cs-container {
    width: 100%;
    max-width: 80rem;
    /* we put the padding top and bottom on the container instead of #Hero so the pseudo element lines go to the top and bottom of the section */
    /* 144px - 300px - leaving extra space for the navigation */
    /* changes on tablet */
    padding: clamp(9rem, 25.95vw, 18.75rem) 0 0;
    /* 60px - 200px */
    padding-bottom: clamp(3.75rem, 12.5vw, 25rem);
    margin: auto;
    position: relative;
  }
  #about-section-hero .cs-container:before {
    /* Left Line */
    content: "";
    width: 1px;
    height: 100%;
    background: -moz-linear-gradient(
      top,
      rgba(250, 251, 252, 0.5) 0%,
      rgba(250, 251, 252, 0) 100%
    );
    background: -webkit-linear-gradient(
      top,
      rgba(250, 251, 252, 0.5) 0%,
      rgba(250, 251, 252, 0) 100%
    );
    opacity: 1;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
  }
  #about-section-hero .cs-flex-group {
    /* 60px - 220px */
    margin-bottom: clamp(3.75rem, 15.5vw, 13.75rem);
    /* changes on tablet */
    margin-left: 1rem;
    width: 80vw;
    /* 464px - 562px */
    max-width: clamp(29rem, 60vw, 35.125rem);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    box-sizing: border-box;
  }
  #about-section-hero .cs-topper {
    /* 13px - 16px */
    font-size: clamp(0.8125rem, 1.6vw, 1rem);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: left;
    letter-spacing: 0.1rem;
    font-weight: 700;
    color: var(--primary-color-light);
    margin-bottom: 1rem;
    display: block;
  }
  #about-section-hero .cs-title {
    /* 39px - 61px */
    font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
    font-weight: 900;
    line-height: 1.2em;
    text-align: left;
    width: 100%;
    /* 32px - 40px */
    margin: 0 auto clamp(2rem, 4vw, 2.5rem) 0;
    color: var(--primary-color-light);
    position: relative;
  }
  #about-section-hero .cs-text {
    /* 16px - 20px */
    font-size: clamp(1rem, 1.95vw, 1.25rem);
    line-height: 1.5em;
    text-align: left;
    width: 100%;
    /* 32px - 40px */
    margin: 0 auto clamp(2rem, 4vw, 2.5rem) 0;
    /* 40px - 48px */
    margin-bottom: clamp(2.5rem, 4vw, 3rem);
    color: var(--primary-color-light);
  }
  #about-section-hero .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    width: 11.25rem;
    text-decoration: none;
    font-weight: 700;
    margin: 0 1.25rem 1rem 0;
    color: #fff;
    padding: 0;
    background-color: var(--primary-color-dark);
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  #about-section-hero .cs-button-solid:before {
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #about-section-hero .cs-button-solid:hover:before {
    width: 100%;
  }
  #about-section-hero .cs-button-transparent {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    width: 11.25rem;
    /* 46px - 56px */
    height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    margin: 0;
    color: #fff;
    padding: 0;
    background-color: transparent;
    border: 1px solid var(--bodyTextColorWhite);
    box-sizing: border-box;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  #about-section-hero .cs-button-transparent:before {
    content: "";
    position: absolute;
    display: block;
    background: #000;
    opacity: 1;
    /* so it sits on top of the border */
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    z-index: -1;
    transform-origin: left;
    /* this is what creates the grow affect on hover */
    transform: scaleX(0);
    transition: transform 0.3s;
  }
  #about-section-hero .cs-button-transparent:hover:before {
    transform: scaleX(1);
  }
  #about-section-hero .cs-button-transparent .cs-img {
    display: block;
    margin-right: 0.75rem;
  }
  #about-section-hero .cs-card-group {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  #about-section-hero .cs-item {
    list-style: none;
    position: relative;
    box-sizing: border-box;
    /* Add blur background effect */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px); /* For Safari support */
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  #about-section-hero .cs-item:before {
    /* Top Line */
    content: "";
    width: 100vw;
    height: 1px;
    background: -moz-linear-gradient(
      left,
      rgba(250, 251, 252, 0.5) 0%,
      rgba(250, 251, 252, 0) 100%
    );
    /* FF3.6-15 */
    background: -webkit-linear-gradient(
      left,
      rgba(250, 251, 252, 0.5) 0%,
      rgba(250, 251, 252, 0) 100%
    );
    /* Chrome10-25,Safari5.1-6 */
    opacity: 1;
    position: absolute;
    display: block;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  #about-section-hero .cs-item:last-of-type:after {
    /* Bottom line on last card */
    content: "";
    width: 100vw;
    height: 1px;
    background: -moz-linear-gradient(
      left,
      rgba(250, 251, 252, 0.5) 0%,
      rgba(250, 251, 252, 0) 100%
    );
    /* FF3.6-15 */
    background: -webkit-linear-gradient(
      left,
      rgba(250, 251, 252, 0.5) 0%,
      rgba(250, 251, 252, 0) 100%
    );
    /* Chrome10-25,Safari5.1-6 */
    opacity: 1;
    position: absolute;
    display: block;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  #about-section-hero .cs-link {
    text-align: left;
    text-decoration: none;
    /* changes on tablet */
    padding: 1.75rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
  }
  #about-section-hero .cs-link:hover:before {
    opacity: 0.4;
  }
  #about-section-hero .cs-link:before {
    /* Hover Box */
    content: "";
    width: 100%;
    height: 100%;
    background: var(--primary);
    opacity: 0;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: -1;
    transition: opacity 0.3s;
  }
  #about-section-hero .cs-number {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2vw, 1.5625rem);
    line-height: 1.2em;
    font-weight: 900;
    /* 24px - 32px */
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    color: var(--primary-color-light);
    display: block;
  }
  #about-section-hero .cs-h2 {
    /* 16px - 20px */
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 900;
    line-height: 1.2em;
    padding: 0;
    margin: 0;
    margin-bottom: 1rem;
    color: var(--primary-color-light);
    position: relative;
    z-index: 10000;
  }
  #about-section-hero .cs-item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 3vw, 1.2rem);
    font-weight: 500;
    margin: 0;
    padding: 0;
    max-width: 31.25rem;
    color: var(--primary-color-light);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #about-section-hero {
    /* 32px - 40px */
    padding: 0 clamp(2rem, 5vw, 2.5rem);
  }
  #about-section-hero .cs-container {
    padding-bottom: 4rem;
  }
  #about-section-hero .cs-container:after {
    /* Right Line */
    content: "";
    width: 1px;
    height: 100%;
    background: -moz-linear-gradient(
      top,
      rgba(250, 251, 252, 0) 0%,
      rgba(250, 251, 252, 0.5) 100%
    );
    /* FF3.6-15 */
    background: -webkit-linear-gradient(
      top,
      rgba(250, 251, 252, 0) 0%,
      rgba(250, 251, 252, 0.5) 100%
    );
    /* Chrome10-25,Safari5.1-6 */
    opacity: 1;
    position: absolute;
    display: block;
    top: 0;
    right: 0;
  }
  #about-section-hero .cs-flex-group {
    /* 44px - 88px */
    margin-left: clamp(2.75rem, 5.9vw, 5.5rem);
  }
  #about-section-hero .cs-button-solid {
    margin-bottom: 0;
  }
  #about-section-hero .cs-card-group {
    flex-direction: row;
    position: relative;
  }
  #about-section-hero .cs-card-group:before {
    /* Top Line */
    content: "";
    /* make it extend past the left and right of the screen */
    width: 150vw;
    height: 1px;
    background: -moz-linear-gradient(
      left,
      rgba(250, 251, 252, 0.5) 0%,
      rgba(250, 251, 252, 0) 100%
    );
    /* FF3.6-15 */
    background: -webkit-linear-gradient(
      left,
      rgba(250, 251, 252, 0.5) 0%,
      rgba(250, 251, 252, 0) 100%
    );
    /* Chrome10-25,Safari5.1-6 */
    opacity: 1;
    position: absolute;
    display: block;
    top: 0;
    /* these two properties center the line horizontally */
    left: 50%;
    transform: translateX(-50%);
  }
  #about-section-hero .cs-item:before {
    width: 1px;
    height: 100vh;
    background: -moz-linear-gradient(
      top,
      rgba(250, 251, 252, 0) 0%,
      rgba(250, 251, 252, 0.5) 100%
    );
    /* FF3.6-15 */
    background: -webkit-linear-gradient(
      top,
      rgba(250, 251, 252, 0) 0%,
      rgba(250, 251, 252, 0.5) 100%
    );
    /* Chrome10-25,Safari5.1-6 */
    top: auto;
    left: auto;
    right: 0;
    bottom: -4rem;
  }
  #about-section-hero .cs-item:nth-of-type(1) {
    /* makes the first line under the buttons shorter */
  }
  #about-section-hero .cs-item:nth-of-type(1):before {
    height: 39.375rem;
  }
  #about-section-hero .cs-item:last-of-type:before,
  #about-section-hero .cs-item:last-of-type:after {
    display: none;
  }
  #about-section-hero .cs-link {
    /* 44px - 64px top & bottom, 48px - 88px left & right */
    padding: clamp(2.75rem, 5.9vw, 5.5rem) clamp(3rem, 5.9vw, 5.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;
  }
  #about-section-hero .cs-picture img {
    display: none;
  }
}


/*-- -------------------------- -->
<---      Catering Section      -->
<--- -------------------------- -*/

/* Hero Section Container */
#catering-hero-section {
    position: relative;
    display: inline-block;
    text-align: left;
    margin-top: 100px;
  }
  
  /* Background Image (natural size) */
  #catering-hero-bg {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    z-index: 0;
  }
  
  /* Red Overlay */
  #catering-hero-section .red-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(142 2 2 / 79%);
    pointer-events: none;
    z-index: 1;
  }


  /* Hero Content Layout (Side by Side) */
  #catering-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    z-index: 2;
    max-width: 90%;
    flex-wrap: wrap;
  }
  
  /* Title Styling */
  #catering-title {
    flex: 1;
    font-size: 3rem;
    font-weight: 800;
    color: #f2cc26;
    text-align: right;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  }
  
  /* Description Styling */
  #catering-description {
    flex: 2;
    font-size: 0.8rem;
    line-height: 1.6;
    color: #fff;
    text-align: left;
    max-width: 800px;
  }

  /* Optional width modifier for catering hero content */
  .catering-hero-content-wide {
    max-width: 100%;
    width: 100%;
  }

  /* Container section */
.party-pack-section {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 200px;
    background-color: #fff;
    z-index: 0;
  }

  /* Lines image styling */
  .lines-image {
    position: absolute;
    top: -94.5px;
    left: 50px;
    height: 320px;
    width: auto;
    transform: rotate(-90deg);
    object-fit: contain;
    z-index: -1;
    pointer-events: none;
  }

  /* Lines image styling */
  .lines-image1 {
    position: absolute;
    top: 224.5px;
    left: -28px;
    height: 320px;
    width: auto;
    transform: rotate(-90deg);
    object-fit: contain;
    z-index: -1;
    pointer-events: none;
  }
  
  .lines-image2{
    display: none;
  }

  .pricing-cards-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 80px;
    margin-bottom: 40px;
  }  

  /* Pricing cards container */
  .pricing-cards {
    display: flex;
    gap: 100px;
    margin-left: -50px;
  }  
  
  /* Each pricing card */
  .pricing-card {
    background-color: #b82926;
    color: #f2cc26;
    padding: 30px 40px;
    width: 350px;
    height: 250px;
    box-sizing: border-box;
    text-align: center;
    font-weight: 700;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  /* People text */
  .pricecard-people {
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
  }
  
  /* Price styling */
  .pricecard-price {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 6px;
    font-weight: 900;
    letter-spacing: 1px;
  }
  
  /* GST text */
  .pricecard-gst {
    font-size: 1rem;
    color: #fff;
    font-weight: 400;
    letter-spacing: 1px;
  }
  
  /* Party pack description */
  .party-pack-description {
    max-width: 600px;
    font-size: 1rem;
    color: #000;
    font-weight: 500;
    line-height: 1.6;
    margin-left: 300px;
    margin-top: 20px;
  }
  
  /* Bold labels */
  .party-pack-description strong {
    color: #b82926;
    font-weight: 700;
    font-size: 17px;
  }
  
  .party-pack-head {
    font-size: 25px;
  }

  .party-pack-des{
    font-size: 17px;
  }

  /* Highlighted text */
  .highlight {
    color: #b82926;
    font-weight: 600;
  }  


/* === Pricing Cards === */
#pricing-card {
  display: inline-block;
  text-align: center;
  width: 150px;
  margin: 1rem;
  padding: 1rem;
  border: 2px solid #a4161a;
  border-radius: 8px;
  background: #fffaf9;
  color: #a4161a;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
}

#pricing-card:hover {
  background-color: #a4161a;
  color: #fff;
  transform: scale(1.05);
}


.placeholder-content {
    height: 300px; 
    width: 100%;
    position: relative; 
    margin-bottom: -50px;
    margin-top: -102px;
}

/* Container to hold the two buildings side-by-side */
.building-container {
    display: flex;
    gap: 20px;
    position: absolute;
    right: 5%;
    bottom: 19px;
    align-items: flex-end;
    width: auto;
}

/* Styling for the individual images */
.building-image {
    width: 150px;
    height: auto;
    object-fit: contain;
    margin-right: 60px;
}

/* --- Call to Action Banner Styling --- */
.call-to-action-banner {
    background-color: #993325;
    padding: 10px 8%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    margin-top: 31px;
}

.cta-text {
    color: #ffd700;
    font-size: 1.8em;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 10px 20px;
}

/* Container for the Buttons */
.location-buttons {
    display: flex;
    gap: 20px;
    margin-right: 20px;
}

/* Individual Location Button Styling */
.location-btn {
    background-color: #ef3825;
    color: #ffffff;
    padding: 8px 18px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    white-space: nowrap;
    border-radius: 20px;
    box-shadow: 0 4px #993325;
    border: none;
    display: flex;
    align-items: center;
    transition: background-color 0.3s;
}

/* Phone Icon Styling */
.location-btn .fas.fa-phone {
    margin-right: 8px;
    font-size: 1.1em;
}

/* Hover effect */
.location-btn:hover {
    background-color: #ff7062;
    cursor: pointer;
}

.menu-image {
    width: 1400px;
    height: auto;
    object-fit: contain;
    margin-right: 60px;
    margin-top: 50px;
}

/* @media (max-width: 1100px) {
  font-size: 0.7px;
} */


@media (max-width: 1024px) {
    /* --- Hero Section --- */
    #catering-hero-section {
        margin-top: 80px;
    }

    #catering-hero-content {
        gap: 3rem;
        max-width: 95%;
    }

    #catering-title {
        font-size: 2.5rem;
        text-align: center;
    }

    #catering-description {
        /* font-size: 1rem; */
        max-width: 90%;
        text-align: center;
    }
    
    /* --- Party Pack Section --- */
    .party-pack-section {
        padding-left: 50px;
        padding-right: 50px;
    }

    .lines-image,
    .lines-image1 {
        left: 5px;
        height: 250px;
    }
    .lines-image {
        top: -60px;
    }
    .lines-image1 {
        top: 150px;
    }

    .pricing-cards {
        gap: 50px;
        margin-left: 0;
        justify-content: center;
        flex-wrap: wrap;
    }

    .pricing-card {
        width: 300px;
        height: auto;
        padding: 20px 30px;
    }
    
    /* Center and constrain description */
    .party-pack-description {
        margin-left: auto;
        margin-right: auto;
        max-width: 500px;
        text-align: center;
        margin-top: 30px;
    }

    /* --- Building Container/Placeholder --- */
    .placeholder-content {
        height: 200px;
        margin-top: -80px;
    }

    .building-container {
        right: 2%;
        bottom: 10px;
    }

    .building-image {
        width: 100px;
        margin-right: 30px;
    }

    /* --- Call to Action Banner --- */
    .call-to-action-banner {
        padding: 15px 5%;
        justify-content: center;
    }
    
    .cta-text {
        font-size: 1.5em;
        margin: 10px 0;
        text-align: center;
        width: 100%;
    }

    .location-buttons {
        margin: 10px 0;
        justify-content: center;
        width: 100%;
    }

    .location-btn {
        padding: 8px 15px;
        font-size: 0.9em;
    }
}

@media (width: 1024px), (width: 768px) {
  .lines-image {
    display: none;
  }
}


@media (max-width: 768px) {
    /* --- Hero Section --- */
    #catering-hero-section {
        margin-top: 60px;
    }

    /* Force content to stack vertically */
    #catering-hero-content {
        flex-direction: column; 
        gap: 1.5rem;
        text-align: center;
    }

    #catering-title {
        font-size: 2rem;
        text-align: center;
    }

    #catering-description {
        font-size: 0.5rem;
        max-width: 80%;
        text-align: center;
    }

    #catering-hero-bg {
      display: block;
      width: auto;
      height: 200px;
      max-width: 100%;
    }
    
    /* --- Party Pack Section --- */
    .party-pack-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Hide the decorative lines */
    .lines-image {
        margin-left: 26px;
        margin-top: 8px;
    }

    .lines-image1 {
      display: none;
    }

    .lines-image2 {
        display: block;
        height: 120px;
        width: auto;
        margin-top: -50px;
        margin-bottom: -50px;
        z-index: -1;
    }

    .lines-image-rotate{
      transform: rotate(90deg); 
      z-index: -10;
      position: relative;
      position: relative;
      top: -150px;
      left: 130px;
    }

    /* Stack pricing cards vertically */
    .pricing-cards-container {
        margin-top: 40px;
    }

    .pricing-cards {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .pricing-card {
        width: 100%;
        max-width: 350px;
    }
    
    .party-pack-description {
        margin-top: 20px;
        margin-bottom: 50px;
    }

    .party-pack-head{
       font-size: 16px;
    }

    .party-pack-des{
       font-size: 14px;
    }

    /* --- Building Container/Placeholder --- */
    .placeholder-content {
        height: 150px;
        margin-top: -60px;
    }

    .building-container {
        right: 0; 
        left: 0;
        justify-content: center;
        gap: 10px;
        bottom: 5px;
    }

    .building-image {
        width: 75px;
        margin-right: 0;
    }

    /* --- Call to Action Banner --- */
    .cta-text {
        font-size: 1.2em;
    }

    .location-buttons {
        flex-direction: column;
        gap: 10px;
        width: 80%;
        max-width: 300px;
    }

    .location-btn {
        width: 100%;
        justify-content: center;
    }
    
    .menu-image {
        width: 100%;
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    #catering-title {
        font-size: 1.75rem;
    }

    .pricecard-price {
        font-size: 3rem;
    }
    
    .cta-text {
        font-size: 1.5em; 
    }

    .building-image {
        width: 75px;
        margin-right: 0;
        margin-bottom: 13px;
    }

    .menu-image {
      content: url("./assets/catering/entree_mobile.webp");
      margin-bottom: 20px;
    }
}


/*-- -------------------------- -->
<---           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;
  }
  #contact-section-hero .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
  }
  #contact-section-hero .cs-background:before {
    /* Overlay */
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.7;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 1;
    /* prevents the cursor from interacting with it */
    pointer-events: none;
  }
  #contact-section-hero .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #contact-section-hero .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
  }
  #contact-section-hero .cs-title {
    /* 39px - 61px */
    font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
    font-weight: 700;
    line-height: 1.2em;
    text-align: left;
    max-width: 51.8125rem;
    /* 16px - 24px */
    margin: 0 auto clamp(1rem, 4vw, 1.5rem) 0;
    color: #fff;
    position: relative;
  }
  #contact-section-hero .cs-text {
    /* 16px - 20px */
    font-size: clamp(1rem, 1.95vw, 1.25rem);
    line-height: 1.5em;
    text-align: left;
    width: 100%;
    /* 464px - 622px */
    max-width: clamp(29rem, 60vw, 38.785rem);
    margin: 0 auto 0 0;
    /* 40px - 48px */
    margin-bottom: clamp(2.5rem, 4vw, 3rem);
    color: #fff;
  }
  #contact-section-hero .cs-button-solid {
    font-size: 1rem;
    line-height: 3.5rem;
    text-decoration: none;
    font-weight: 700;
    margin: auto;
    color: #fff;
    padding: 0 1.5rem;
    background-color: var(--primary-color-dark);
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  #contact-section-hero .cs-button-solid:before {
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
  }
  #contact-section-hero .cs-button-solid:hover:before {
    width: 100%;
  }
}

/* Breadcrumb Navigation */
.breadcrumb-container {
  background-color: #f8f8f8;
  padding: 10px 0;
  border-bottom: 1px solid #eaeaea;
}

.breadcrumb-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: #666;
}

.breadcrumb li:not(:last-child)::after {
  content: ">";
  margin: 0 8px;
  color: #999;
}

.breadcrumb a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--primaryLight);
}

@media (max-width: 768px) {
  .breadcrumb-container {
    padding: 8px 0;
  }
  
  .breadcrumb li {
    font-size: 12px;
  }
}

/* Add responsive image styling for SEO */


/* Improve Core Web Vitals - Reduce CLS */
.special__card img,
.explore__image img {
  aspect-ratio: 16/9;
  object-fit: cover;
}



/* Improve mobile experience */
@media (max-width: 768px) {
  .cs-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  
  .section__header {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
  }
}

/* Location-specific page styles */
.delivery-areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.delivery-area {
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.delivery-area h3 {
  color: var(--primaryLight);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.delivery-area ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.delivery-area ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.delivery-area ul li:last-child {
  border-bottom: none;
}

.delivery-note {
  text-align: center;
  margin-top: 2rem;
  font-style: italic;
  color: #666;
}

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

.review-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-stars {
  color: var(--primaryLight);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.reviewer-name {
  font-weight: bold;
  text-align: right;
}

/* FAQ section */
.faq-wrapper {
  max-width: 800px;
  margin: 2rem auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.faq-answer {
  line-height: 1.6;
  color: #666;
}

/* CTA section */
.cta__container {
  text-align: center;
  padding: 4rem 1rem;
  background-color: #f9f9f9;
}

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

.btn-secondary {
  background-color: #fff;
  color: var(--primaryLight);
  border: 2px solid var(--primaryLight);
}

.btn-secondary:hover {
  background-color: var(--primaryLight);
  color: #fff;
}

@media (max-width: 768px) {
  .delivery-areas-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Dish-specific page styles */
.dish-hero {
  background-color: var(--bg-shade);
}

.dish-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.dish-hero-content h1 {
  font-size: 2.5rem;
  color: var(--primary-color-dark);
  margin-bottom: 1rem;
}

.dish-rating {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.dish-rating span {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.rating-count {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-left: 0.5rem;
}

.dish-description {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.dish-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.dish-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.dish-detail i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.dish-price {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color-dark);
}

.dish-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dish-description-container {
  padding: 5rem 1rem;
}

.dish-description-content h3 {
  font-size: 1.5rem;
  color: var(--primary-color-dark);
  margin: 2rem 0 1rem;
}

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

.ingredients-list h4,
.nutrition-info h4 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.ingredients-list ul,
.nutrition-info ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.ingredients-list li,
.nutrition-info li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.nutrition-info p small {
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
}

.reviews-container {
  background-color: var(--bg-shade);
  padding: 5rem 1rem;
}

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

.review-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.reviewer-info h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.reviewer-info p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.review-rating span {
  color: var(--primary-color);
  font-size: 1rem;
}

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

.review-date {
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: right;
}

.related-dishes-container {
  padding: 5rem 1rem;
}

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

.related-dish-card {
  text-align: center;
  padding: 1rem;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.related-dish-card:hover {
  transform: translateY(-5px);
}

.related-dish-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.related-dish-card h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.related-dish-card h3 a {
  color: var(--text-dark);
  text-decoration: none;
}

.related-dish-card h3 a:hover {
  color: var(--primary-color);
}

.related-dish-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.btn-small {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 5px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

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

.cta-container {
  background-color: var(--primary-color-dark);
  padding: 4rem 1rem;
  text-align: center;
}

.cta-content h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.cta-content .btn {
  background-color: #fff;
  color: var(--primary-color-dark);
  font-size: 1.1rem;
  padding: 0.8rem 2rem;
}

.cta-content .btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

@media screen and (max-width: 768px) {
  .cta-container {
    padding: 3rem 0.75rem;
  }

  .cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .cta-content h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .cta-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    padding: 0 10px;
  }

  .cta-content .btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    min-width: 110px;
    margin: 0 5px !important;
  }

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

  .dish-hero-content {
    order: 2;
  }

  .dish-hero-image {
    order: 1;
  }



  .dish-ingredients {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 480px) {
  .cta-content .btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    min-width: 100px;
  }

  .cta-content h2 {
    font-size: 1.3rem;
  }
}

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

.testimonial__container {
  padding: 5rem 1rem;
}

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

.testimonial__card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial__content {
  padding: 2rem;
}

.testimonial__content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial__rating {
  margin-bottom: 1rem;
}

.testimonial__rating span {
  color: var(--primary-color);
  font-size: 1rem;
}

.testimonial__author h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.testimonial__author p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
  font-style: normal;
}

/* Delivery and Takeout Page Styles */
.delivery-features,
.takeout-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.delivery-features li,
.takeout-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: var(--text-light);
  font-size: 1rem;
}

.delivery-features li i,
.takeout-features li i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-right: 0.75rem;
}

.delivery-areas-container {
  padding: 5rem 1rem;
  background-color: var(--bg-shade);
}

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

.delivery-area-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.delivery-area-card h3 {
  font-size: 1.5rem;
  color: var(--primary-color-dark);
  margin-bottom: 1.5rem;
}

.delivery-area-card ul {
  list-style: none;
  padding: 0;
}

.delivery-area-card li {
  margin-bottom: 0.75rem;
  color: var(--text-light);
  font-size: 1rem;
}

.delivery-area-card li a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.delivery-area-card li a:hover {
  color: var(--primary-color-dark);
  text-decoration: underline;
}

.delivery-area-card p {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-light);
}

.how-to-order-container {
  padding: 5rem 1rem;
}

.how-to-order-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.order-step {
  text-align: center;
  padding: 1.5rem;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

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

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

.order-step p {
  font-size: 0.95rem;
  color: var(--text-light);
}

.order-cta {
  text-align: center;
  margin-top: 3rem;
}

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

.package-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.package-card h3 {
  font-size: 1.5rem;
  color: var(--primary-color-dark);
  margin-bottom: 1rem;
}

.package-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.package-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 1.5rem;
}

.package-card li {
  margin-bottom: 0.75rem;
  color: var(--text-light);
  font-size: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.package-card li:before {
  content: "✓";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 0;
}

.package-note {
  font-size: 0.95rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 768px) {
  .how-to-order-steps {
    grid-template-columns: 1fr;
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
  }
}


.catering__container {
  padding: 5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.catering__container img{
  width: 100%;
  max-width: 1200px;
  height: auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


@media screen and (max-width: 768px) {
  .catering__container {
    padding:1rem;
  }
  
}

/* Popup Styles */
.popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  animation: fadeIn 0.3s ease-in-out;
}

.popup-content {
  position: relative;
  max-width: 700px;
  width: 90%;
  margin: 80px auto;
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-50px);
  opacity: 0;
  animation: slideIn 0.5s ease-out forwards;
}

.popup-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #333;
  font-weight: 600;
}

.popup-locations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.popup-card {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #e0e0e0;
}

.popup-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
}

.popup-card p {
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: #000000;
}

.popup-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.popup-btn {
  padding: 0.5rem;
  font-size: 0.8rem;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: 500;
  text-align: center !important;
}

.popup-btn.order-btn {
  background-color: var(--primary-color);
  color: white;
}

.popup-btn.order-btn:hover {
  background-color: #3b3b3b;
}

.popup-btn.menu-btn {
  background-color: var(--primary-color);
  color: white;
}

.popup-btn.menu-btn:hover {
  background-color: #555;
}

.close-popup {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 32px;
  height: 32px;
  background-color: #ff8225;
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  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: 90%;
    margin: 20px auto;
    padding: 1.5rem;
  }

  .popup-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .popup-locations {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .popup-card {
    padding: 0.75rem;
  }

  .popup-card h4 {
    font-size: 0.95rem;
  }

  .popup-card p {
    font-size: 0.7rem;
  }

  .popup-btn {
    font-size: 0.75rem;
    padding: 0.45rem;
  }
}



.nav__dropdown {
    position: relative;
  }
  
  .nav__dropdown:hover .dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .dropdown__menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin: 1rem 0;
  }
  
  .dropdown__inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .dropdown__item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: 6px;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.9);
  }
  
  .dropdown__item:hover {
    background: #f8f8f8;
    transform: translateX(5px);
  }
  
  .dropdown__icon {
    margin-right: 15px;
    font-size: 20px;
    color: var(--primary-color);
  }
  
  .dropdown__content h4 {
    margin: 0;
    font-size: 16px;
    color: #333;
    font-weight: 600;
  }
  
  .dropdown__content p {
    margin: 3px 0 0;
    font-size: 13px;
    color: #666;
  }
  
  .nav__dropdown > a i {
    transition: transform 0.3s ease;
  }
  
  .nav__dropdown:hover > a i {
    transform: rotate(180deg);
  }

  @media screen and (max-width: 768px) {
    .dropdown__menu,
    .location__icon {
      display: none;
    }
  }


#our-locations,
#locations {
  scroll-margin-top: 100px;
}


@media screen and (max-width: 768px) {
#our-locations,
#locations {
  scroll-margin-top: 85px;
}

  .explore__contact {
    text-align: center;
}
}



.explore__contact {
  margin-top: 2rem;
}

.explore__contact a {
  text-decoration: none;
  color: var(--primary-color);
}
.dualLocationShowcase {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #fef8f8 50%, #ffffff 100%);
  position: relative;
}

.dualLocationShowcase .heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 40px;
  padding: 0 20px;
}

.dualLocationShowcase .heading h2 {
  font-size:clamp(2.5rem, 5vw, 3rem);
  font-weight: 100;
  color: var(--primary-color);
  font-family: var(--title-font);
  margin-bottom: 10px;
  line-height: 1.3;
}

.dualLocationShowcase .heading .leaf-icon {
  width: 20px;
  height: auto;
  margin: 10px 0;
  animation: floatLeaf 4s ease-in-out infinite;
}

.dualLocationShowcase .heading p {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

@keyframes floatLeaf {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.dualLocationShowcase .locations {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.dualLocationShowcase .location-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  max-width: 360px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(227, 24, 55, 0.05);
}

.dualLocationShowcase .location-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(227, 24, 55, 0.15);
}

.dualLocationShowcase .image-wrapper {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.dualLocationShowcase .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.dualLocationShowcase .location-card:hover .image-wrapper img {
  transform: scale(1.1) rotate(1deg);
}

.dualLocationShowcase .image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.299);
  z-index: 2; 
}
.dualLocationShowcase .overlay-buttons {
  padding: 20px 10px 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.dualLocationShowcase .btn.order {
  background: var(--primary-color);
  color: #fff;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 0.8rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.dualLocationShowcase .btn.order:hover {
  background: #ffffff;
  color: var(--primary-color-dark);
  border: 2px solid var(--primary-color-dark);
}

.dualLocationShowcase .btn.menu-btn {
  background: #fff;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 0.95rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

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

.dualLocationShowcase .image-wrapper::before {
  display: none;
}

.dualLocationShowcase .btn.location {
  background: #fff;
  color: #222;
  border: 1px solid #ccc;
}

.dualLocationShowcase .btn.location:hover {
  background: #f1f1f1;
}

.dualLocationShowcase .card-content {
  padding: 20px;
  text-align: left;
}

.dualLocationShowcase .card-content h3 {
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: #ff4141;
}

.dualLocationShowcase .card-content p {
  font-size: 0.95rem;
  font-weight: 500;
  margin: 5px 0;
  color: #555;
}

.dualLocationShowcase .card-content a {
  color: #c62828;
  text-decoration: none;
}

.dualLocationShowcase .card-content a:hover {
  text-decoration: underline;
}


@media (max-width: 768px) {
  .dualLocationShowcase {
    padding: 50px 15px;
    background: linear-gradient(135deg, #fff 0%, #fef6f6 100%);
  }

  .dualLocationShowcase .locations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 0 5px;
  }

  .dualLocationShowcase .location-card {
    max-width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(227, 24, 55, 0.1);
  }

  .dualLocationShowcase .heading h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
  }

  .dualLocationShowcase .heading p {
    font-size: 0.95rem;
    padding: 0 10px;
    color: #666;
  }

  .dualLocationShowcase .heading .leaf-icon {
    width: 18px;
    filter: hue-rotate(10deg);
  }

  .dualLocationShowcase .image-wrapper {
    height: 100px;
    position: relative;
  }

  .dualLocationShowcase .image-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(227, 24, 55, 0.3) 100%);
    z-index: 1;
  }

  .dualLocationShowcase .overlay-buttons {
    padding: 12px 5px 8px;
    gap: 15px;
  }

  .dualLocationShowcase .btn.order,
  .dualLocationShowcase .btn.menu-btn {
    padding: 6px 10px;
    font-size: 0.75rem;
    letter-spacing: 0.3px;
  }

  .dualLocationShowcase .card-content {
    
    text-align: center;
    padding: 12px 3px;
  }

  .dualLocationShowcase .card-content h3 {
    font-size: 0.7rem;
    margin-bottom: 6px;
    font-weight: 700;
    letter-spacing: 0.3px;
  }

  .dualLocationShowcase .card-content p {
    font-size: 0.75rem;
    margin: 15px 0;
    line-height: 1.3;
  }

  .dualLocationShowcase .card-content i {
    font-size: 0.85rem;
    margin-right: 2px;
  }
}

@media (max-width: 480px) {
  .dualLocationShowcase .locations {
    gap: 10px;
  }

  .dualLocationShowcase .heading h2 {
    font-size: 1.6rem;
  }

  .dualLocationShowcase .image-wrapper {
    height: 80px;
  }

  .dualLocationShowcase .btn.order,
  .dualLocationShowcase .btn.menu-btn {
    padding: 5px 8px;
    font-size: 0.8rem;
  }

  .dualLocationShowcase .card-content h3 {
    font-size: 0.8rem;
    font-weight: 600;
  }

  .dualLocationShowcase .card-content p {
    font-size: 0.7rem;
    font-weight: 600;
  }
}

/* Mobile Dropdown Menu Styles */
.mobile__dropdown__menu {
  display: none;
  margin-top: 1rem;
  width: 100%;
}

.mobile__dropdown__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  width: 100%;
  padding: 0 1rem;
}

.mobile__dropdown__item {
  width: 100%;
  max-width: 280px;
  text-align: center;
  padding: 1rem;
  background-color: var(--primary-color-light);
  border-radius: 8px;
  transition: all 0.3s ease;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.mobile__dropdown__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.mobile__dropdown__content h4 {
  font-size: 1rem;
  color: var(--primary-color);
  margin: 0;
  text-align: center;
  width: 100%;
}

.mobile__dropdown__content p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  text-align: center;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .nav__dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav__dropdown > a {
    text-align: center;
    width: 100%;
  }

  .dropdown__menu {
    display: none;
  }
  
  .mobile__dropdown__menu {
    display: block;
    width: 100%;
  }
  
  .nav__links.open .mobile__dropdown__menu {
    animation: fadeIn 0.3s ease forwards;
  }
  
  .mobile__dropdown__item {
    animation: slideIn 0.3s ease forwards;
  }

  .nav__links li {
    width: 100%;
    text-align: center;
  }
}
/* Compact Footer Styles for Large Screens */
@media (min-width: 1200px) {
  .footer__container {
    padding: 2.5rem 2rem 1.5rem;
  }

  .footer__col h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .footer__main .section__description {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }

  .footer__links {
    gap: 0.35rem;
  }

  .footer__links li a {
    font-size: 0.85rem;
  }

  .footer__location .location-info {
    gap: 0.5rem;
  }

  .footer__location .address,
  .footer__location .phone {
    font-size: 0.85rem;
  }

  .footer__location .hours-compact p {
    font-size: 0.8rem;
  }

  .footer__bottom {
    padding: 0.75rem;
  }
}

/*********************************  location info section - individual pages *********************************/

.location-info-section {
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.location-info-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.location-map-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  background: white;
}

.map-frame {
  height: 500px;
  width: 100%;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%) contrast(1.1);
  transition: filter 0.3s ease;
}

.map-frame:hover iframe {
  filter: grayscale(0%) contrast(1.2);
}

.location-details-wrapper {
  background: white;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.location-header {
  margin-bottom: 2rem;
}

.location-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-family: var(--heading-font);
  line-height: 1.2;
}

.location-badge {
  display: block;
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.location-description {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.location-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}

.detail-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.5rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.detail-card:hover {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.detail-icon {
  width: 45px;
  height: 45px;
  background: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-icon i {
  color: white;
  font-size: 1.2rem;
}

.detail-content h4 {
  font-size: 1rem;
  color: var(--text-dark);
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.detail-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.4;
}

.detail-content a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.location-actions {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

.order-btn-primary {
  flex: 1;
  background: var(--primary-color);
  color: white;
  padding: 15px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.order-btn-primary:hover {
  background: var(--primary-color-dark);
  border-color: var(--primary-color-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(224, 148, 36, 0.3);
  color: white;
}

.call-btn {
  background: white;
  color: var(--primary-color);
  padding: 15px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  min-width: 140px;
}

.call-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(224, 148, 36, 0.3);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .location-info-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .location-details-wrapper {
    padding: 2rem;
  }

  .location-details-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .detail-card {
    padding: 1.2rem;
  }

  .location-actions {
    flex-direction: column;
  }

  .map-frame {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .location-info-section {
    padding: 2rem 1rem;
  }

  .location-details-wrapper {
    padding: 1.5rem;
  }

  .detail-card {
    padding: 1rem;
  }

  .detail-icon {
    width: 40px;
    height: 40px;
  }

  .detail-icon i {
    font-size: 1rem;
  }

  .map-frame {
    height: 300px;
  }

  .order-btn-primary,
  .call-btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
}

/*********************************  location info section - individual pages *********************************/

/* ============================================ */
/*                Blog Styles                   */
/* ============================================ */

/* Blog Listing Page */
.blog-intro {
  margin-bottom: 3rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card.hidden {
  display: none !important;
}

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

.blog-card-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary-color);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.blog-meta i {
  color: var(--primary-color);
}

.blog-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  font-family: var(--heading-font);
}

.blog-card-excerpt {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.blog-read-more {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.blog-read-more:hover {
  gap: 0.8rem;
}

/* Blog Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}

.pagination-btn {
  padding: 0.75rem 1.5rem;
  background: white;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pagination-btn:hover:not(:disabled) {
  background: var(--primary-color);
  color: white;
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-numbers {
  display: flex;
  gap: 0.5rem;
}

.pagination-number {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 2px solid #e5e7eb;
  background: white;
  color: var(--text-dark);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-number:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.pagination-number.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

/* Blog Article Page */
.blog-article-hero {
  position: relative;
  height: 500px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.blog-article-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-article-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
  display: flex;
  align-items: flex-end;
  padding: 3rem;
}

.blog-article-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.blog-article-category {
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.blog-article-title {
  color: white;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: var(--heading-font);
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-article-meta {
  display: flex;
  gap: 2rem;
  font-size: 1rem;
  color: white;
  flex-wrap: wrap;
}

.blog-article-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-article-meta i {
  color: var(--primary-color);
}

/* Article Content */
.blog-article-content {
  max-width: 900px;
  margin: 0 auto;
}

.article-body {
  line-height: 1.8;
  color: var(--text-dark);
}

.article-intro {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  border-left: 4px solid var(--primary-color);
}

.article-body h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.article-body h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-family: var(--heading-font);
}

.article-body p {
  margin-bottom: 1.5rem;
  color: #616161;
}

.article-body ul,
.article-body ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.article-body li {
  margin-bottom: 0.75rem;
  color: #616161;
  line-height: 1.7;
}

.article-body strong {
  color: var(--text-dark);
  font-weight: 600;
}

.article-featured-image {
  margin: 2.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.article-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.image-caption {
  padding: 1rem;
  background: #f8f9fa;
  color: var(--text-light);
  font-size: 0.9rem;
  text-align: center;
  font-style: italic;
}

/* Article CTA */
.article-cta {
  background: linear-gradient(135deg, var(--primary-color-light), #fff);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  margin-top: 3rem;
}

.article-cta h3 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  font-family: var(--heading-font);
}

.article-cta p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

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

/* Related Posts */
.related-posts-section {
  background: #f8f9fa;
  padding: 4rem 1rem;
  margin-top: 4rem;
}

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

.back-to-blog {
  text-align: center;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-article-hero {
    height: 400px;
  }

  .blog-article-hero-overlay {
    padding: 2rem 1rem;
  }

  .blog-article-meta {
    gap: 1rem;
  }

  .pagination-btn span {
    display: none;
  }

  .pagination-numbers {
    display: none;
  }

  .article-cta {
    padding: 2rem 1.5rem;
  }

  .article-cta-buttons {
    flex-direction: column;
  }

  .related-posts-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .blog-card-image {
    height: 200px;
  }

  .blog-article-hero {
    height: 300px;
  }

  .article-body h2 {
    font-size: 1.6rem;
  }

  .article-body h3 {
    font-size: 1.3rem;
  }
}



/* ============================================ */


/* ===================================
   RESET & BASE STYLES
   =================================== */

   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none !important;
}

html, body {
    overflow-x: hidden !important;
    -webkit-tap-highlight-color: transparent !important;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #232323;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
    position: relative;
    background-image: url('assets/backgrounds/4.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    z-index: 1;
    padding-top: 120px;
    padding-bottom: 150px;
}

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

/* Desktop only - darker background */
@media screen and (min-width: 1025px) {
    .hero-section::before {
        background: rgba(0, 0, 0, 0);
    }
    .hero-section {
      position: relative;
      background-image: url('assets/backgrounds/4.webp');
      background-position: center center;
      background-repeat: no-repeat;
      background-size: cover;
      background-attachment: fixed;
      z-index: 1;
      padding-top: 120px;
      padding-bottom: 150px;
  }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Header/Navigation */
.header-container {
    background: #fff;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.075);
    margin: 50px 20px 0;
    padding: 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-circle {
    background: #fff;
    border-radius: 100px;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.075);
    width: 125px;
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -35px 10px -35px 0;
}

.logo-icon {
    width: 100%;
}

.logo-text {
    width: 100px;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 30px;
    color: #232323;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #232323;
    padding: 15px 0;
    transition: color 200ms ease-in-out;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #DA2028;
}

.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #fff;
    box-shadow: 0px 10px 25px -10px rgba(0, 0, 0, 0.075);
    min-width: 200px;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 150ms ease-in-out;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
}

.dropdown li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.075);
}

.dropdown li:last-child {
    border-bottom: none;
}

.dropdown a {
    display: block;
    padding: 15px 20px;
    font-size: 14px;
    border-radius: 10px;
}

.dropdown a:hover {
    background: #DA2028;
    color: #fff;
}

/* Hero Main Content */
.hero-main {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px 150px;
    position: relative;
    z-index: 3;
    min-height: 500px;
}

.hero-text {
    max-width: 800px;
    text-align: left;
}

.hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -1.5px;
    margin-bottom: 30px;
    text-align: left;
    color: #fff;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.9);
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
}

.hero-subtitle {
    font-size: 20px;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.5;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    text-align: left;
}

.text-yellow {
    color: rgb(243, 204, 38);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    font-size: 22px;
}

.text-white{
    line-height: 1.1em;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-size: 62px;



}

.hero-buttons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-image .meat-overlay {
    max-width: 100%;
}

.mobile-only {
    display: none;
}

/* Hero Gallery */
.hero-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1160px;
    margin: -119px auto -100px;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    animation: zoom 10s infinite ease-in-out alternate;
    transform-origin: center center;
}

@keyframes zoom {
    0% { transform: scale(1.0); }
    100% { transform: scale(1.2); }
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 12.5px 37.5px;
    border-radius: 100px 100px 0 100px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    flex-direction: row-reverse;
}

.btn i {
    font-size: 1.3em;
}

.btn-primary {
    background: #DA2028;
    color: #fff;
    box-shadow: 0px 10px 30px -10px rgba(217, 32, 40, 0.50);
}

.btn-primary:hover {
    background: #ffffff;
    box-shadow: 0px 10px 30px -10px rgba(195, 28, 36, 0.50);
}

.btn-secondary {
    background: #fff;
    color: #DA2028;
    box-shadow: 0px 10px 30px -10px rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover {
    background: #DA2028;
    color: #fff;
    box-shadow: 0px 10px 30px -10px rgba(217, 32, 40, 0.50);
}

.btn-white {
    background: #fff;
    color: #DA2028;
    box-shadow: 0px 10px 30px -10px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    background: #DA2028;
    color: #fff;
    box-shadow: 0px 10px 30px -10px rgba(217, 32, 40, 0.50);
}

.btn-transparent {
    background: #DA2028;
    color: #fff;
}

.btn-transparent:hover {
    color: #DA2028;
}

.btn-halal {
    background: #28a745;
    color: #fff;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 12.5px 37.5px;
    border-radius: 100px 100px 0 100px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .btn-halal {
    background: #28a745;
    color: #fff;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 100px 100px 0 100px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    flex-direction: row-reverse;
    padding-left: 80px;
}
}

.btn-halal:hover {
    background: #218838;
    color: #fff;
}

.btn-halal i:first-child {
    font-size: 16px;
}

/* ===================================
   WELCOME SECTION
   =================================== */

.welcome-section {
    background: #232323;
    background-image: url('assets/banner/10.svg');
    background-position: center center;
    background-repeat: repeat;
    background-size: 50px auto;
    background-blend-mode: overlay;
    padding: 269px 0 100px;
    position: relative;
}

.welcome-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 100px;
}

.welcome-logo {
    width: 150px;
    margin-right: -20px;
    z-index: 2;
}

.welcome-title {
    background: #DA2028;
    color: #fff;
    font-family: 'PT Serif', sans-serif;
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2em;
    padding: 20px 40px 20px 50px;
    z-index: 1;
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 37.5px;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.meat-selections h3 {
    color: #fff;
    font-family: 'Rubik', sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3em;
    margin: 0 0 12.5px 12.5px;
}

.meat-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 25px;
    justify-content: center;
}

.meat-card {
    flex: 1;
    max-width: 250px;
    background: #DA2028;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 10px 30px -10px rgba(217, 32, 40, 0.50);
    transition: all 0.3s;
}

.meat-card:hover {
    background: #C41C24;
    box-shadow: 0px 10px 30px -10px rgba(195, 28, 36, 0.50);
}

.meat-card i {
    display: block;
    margin: 0 auto 15px;
    background: #fff;
    width: 120px;
    height: 120px;
    line-height: 120px;
    border-radius: 50%;
}

.meat-card h4 {
    color: #fff;
    font-family: 'Rubik', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.feature-image img {
    width: 100%;
    height: 255px;
    object-fit: cover;
    border-radius: 10px;
    animation: zoom 10s infinite ease-in-out alternate;
}

/* ===================================
   MENUS SECTION
   =================================== */

.menus-section {
    background:white;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 7.5px 150px;
    z-index: 1;
}

.menus-section h2 {
    color: #232323;
    font-family: 'PT Serif', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2em;
    text-align: center;
    margin-bottom: 50px;
}

.menu-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1140px;
    margin: 0 auto;
    min-height: 450px;
}

.menu-card {
    position: relative;
    flex: 0 0 300px;
    width: 300px;
    height: 520px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
    overflow: hidden;
}

.menu-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(180deg, rgba(35, 35, 35, 0) 0%, #232323 75%); */
    background-color: rgb(38 27 27 / 79%);
    transition: all 0.3s;
    z-index: 1;
}


/* #catering-hero-section .red-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(142 2 2 / 79%);
  pointer-events: none;
  z-index: 1;
} */

.menu-card-content {
    position: relative;
    z-index: 2;
    padding: 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 12.5px;
}

.menu-card-content h3 {
    color: #fff;
    font-family: 'Rubik', sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3em;
    text-align: center;
}

.location-address,
.location-phone {
    color: #fff;
    font-size: 15px;
    margin: 8px 0;
    text-align: center;
    font-weight: 400;
}

.location-address i,
.location-phone i {
    margin-right: 5px;
}

.location-phone a {
    color: #fff;
    text-decoration: none;
}

.location-phone a:hover {
    text-decoration: underline;
}

.menu-spacer {
    pointer-events: none;
}

.desktop-hidden {
    display: flex;
}

.tablet-desktop-only {
    display: none;
}



/* ===================================
   CONTACT SECTION
   =================================== */

.contact-section {
    position: relative;
    background: #232323;
    background-image: url('../wp-content/uploads/2021/03/hideout.svg');
    background-repeat: repeat;
    background-size: 50px auto;
    padding: 50px 0;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    pointer-events: none;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.contact-subscribe {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 10px;
}

.subscribe-logo {
    width: 150px;
    margin: 0 auto 20px;
    opacity: 0.3;
}

.contact-subscribe h3 {
    color: #fff;
    font-family: 'Rubik', sans-serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.subscribe-form {
    display: flex;
    gap: 10px;
}

.subscribe-form input {
    flex: 3;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: 'Roboto', sans-serif;
}

.subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.subscribe-form button {
    flex: 1;
    padding: 15px 20px;
    background: #DA2028;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.subscribe-form button:hover {
    background: #C41C24;
}

.contact-locations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 10px;
}

.location h3 {
    color: #fff;
    font-family: 'Rubik', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.location iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 5px;
    margin-bottom: 20px;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    gap: 10px;
    color: #fff;
    margin-bottom: 15px;
    align-items: flex-start;
}

.contact-info i {
    color: #DA2028;
    margin-top: 5px;
    min-width: 20px;
}

.contact-info a {
    color: #fff;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #DA2028;
}

.footer {
    text-align: center;
    padding: 40px 20px 20px;
    position: relative;
    z-index: 2;
}

.footer p {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Roboto', sans-serif;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-overlay {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    }
    
    .hero-text h1 {
        font-size: 48px;
        line-height: 1.1em;
        font-weight: 800;
        color: #fff;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    }
    
    .hero-subtitle {
        font-size: 18px;
        color: #fff;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    }
    
    .hero-main {
        padding: 100px 20px 50px;
    }
    
    .hero-gallery {
        margin-top: -75px;
        margin-bottom: -60px;
    }
    
    .welcome-section {
        padding: 219px 0 100px;
    }
    
    .welcome-logo {
        width: 100px;
    }
    
    .welcome-content {
        grid-template-columns: 1fr;
    }
    
    .menus-section {
        padding: 100px 7.5px 100px;
    }
    
    .menu-card {
        flex: 0 0 300px;
        width: 300px;
        max-width: 300px;
    }
    
    .menu-card-content {
        padding: 150px 50px 50px;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

/* Mobile hero image wrapper hidden by default (desktop/tablet) */
.hero-mobile-image-wrapper {
    display: none;
}

/* Mobile */
@media (max-width: 767px) {
    .hero-overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
    }
    
    .hero-section {
        padding-top: 85px;
        padding-bottom: 30px;
    }
    
    .hero-main {
        padding: 10px 10px 10px;
    }
    
    .logo-circle {
        width: 100px;
        height: 100px;
    }
    
    .logo-text {
        width: 75px;
    }
    
    .header-content {
        width: 100%;
    }
    
    .logo-group {
        flex: 1;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        margin-top: 10px;
        margin-left: 20px;
    }
    
  
    
    .mobile-only {
        display: block;
        max-width: 500px;
        margin: 0 -20px 0 0;
    }

    /* Show the mobile hero image wrapper only on mobile */
    .hero-mobile-image-wrapper {
        display: block;
        position: relative;
        width: 100vw;
        /* margin-left: 50%; */
        /* transform: translateX(-50%); */
    }

    .hero-mobile-image-wrapper img {
        width: 100%;
        height: auto;
        display: block;
        margin: 0 0 2rem 0;
    }

    .mobile-order-btn {

        left: 12px;
        bottom: 12px;
        position: relative;
    }
    
   
    .welcome-section {
        padding: 219px 0 75px;
    }
    
    .welcome-header {
        margin-bottom: 50px;
    }
    
    .welcome-logo {
        width: 65px;
        margin-right: -15px;
    }
    
    .welcome-title {
        font-size: 18px;
        padding: 10px 20px;
    }
    
    .meat-grid {
        flex-direction: row;
        gap: 15px;
    }
    
    .meat-card {
        flex: 1;
        min-width: auto;
        max-width: none;
        padding: 15px 10px;
    }
    
    .meat-card i {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 35px !important;
        margin-bottom: 8px;
    }
    
    .meat-card h4 {
        font-size: 14px;
    }
    
    .feature-image img {
        height: 150px;
    }
    
    .menus-section {
        padding: 75px 7.5px 175px;
    }
    
    .menus-section h2 {
        font-size: 30px;
    }
    
    .menu-card {
        max-width: 100%;
        min-width: 100%;
        height: 520px;
    }
    
  
    
    .location-address,
    .location-phone {
        font-size: 12px;
        margin: 5px 0;
    }
    
    .desktop-hidden {
        display: flex;
    }
    
    .tablet-desktop-only {
        display: none;
    }
    
    .contact-locations {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
}

/* Desktop specific */
@media (min-width: 1025px) {
    .desktop-hidden {
        display: none;
    }
    
    .tablet-desktop-only {
        display: flex;
    }
    
    .menu-card {
        flex: 0 0 300px;
        width: 300px;
        height: 450px;
    }
    
    
}


@media (max-width:1200px) {
    .hero-main {
        flex-direction: column-reverse;
        padding: 10px 20px 160px;
    }
    
    .hero-text {
        margin-bottom: 50px;
        max-width: 100%;
        text-align: center;
    }
    
    .hero-text h1 {
        text-align: center;
        font-weight: 800;
        color: #fff;
        text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.9);
    }
    
    .text-white{
        font-size: 36px;
    }
    .hero-subtitle {
        font-size: 16px;
        text-align: center;
        margin-bottom: 25px;
        color: #fff;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        justify-content: center;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 200px;
        justify-content: center;
    }

     .hero-gallery {
        grid-template-columns: 1fr;
        margin-top: -50px;
        margin-bottom: -80px;
        gap: 20px;
    }

    .hero-image img {
        width: 100%;
        height: 400px;
    }
  
}
@media (max-width:767px) {
    .hero-image {
    display: none;
  }
  .hero-text {
    display: none;
  }
}