
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sofia+Sans:ital,wght@0,1..1000;1,1..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rancho&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Bree+Serif&family=Rajdhani:wght@300;400;500;600;700&display=swap');
:root {
  --primary-color: #DC1A2A; 
  --primary-color-light: #fff;
  --primary-color-dark: #14A950; 
  --primary-font: "Inter", sans-serif;
  --title-font:"Montserrat", cursive;
  --text-dark: #1b1b1b; 
  --text-light: #6b7280;
  --white: #ffffff;
  --max-width: 1200px;

   --main-font : 'Poppins', sans-serif;
    --secondary-font : 'Sofia Sans', sans-serif;

  --clr-primary-400: 0 100% 50%; 
  --clr-secondary-400: 46 100% 50%; 
  --clr-secondary-500: 138 100% 25%; 
  --clr-neutral-100: 0 0% 100%;
  --clr-neutral-200: 0 0% 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: #d7260f; 
}


::selection{
    background-color: white;
    color: black;
}



::-webkit-scrollbar {
    width: 8px; 
    height: 12px; 
}


::-webkit-scrollbar-track {
    background-color: #f1f1f1; 
}


::-webkit-scrollbar-thumb {
    background-color: rgb(255, 149, 149); 
    border-radius: 2px; 
}

::-webkit-scrollbar-thumb:hover {
    background-color: #9a9a9a; 
}


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

.section__container {
  max-width: var(--max-width);
  margin: auto;
}


.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: var(--text-dark);
  line-height: 1.75rem;
  text-align: center;
  font-size: 0.95rem;
}

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

.btn:hover {
  background-color: var(--primary-color);
  color: #fff;
  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(--primary-font);
  background-color: #fffdf8d5;
}

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


.main-button {
    cursor: pointer;
    font-weight: 700;
    transition: all 0.2s;
    padding: 0.625rem 1.25rem;
    border-radius: 6.25rem;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    gap: 1rem;
    font-family: var(--main-font);
    background-color: transparent;
  }

.order-text{
  color: white;
}

  
  .main-button > svg {
    width: 2.125rem;
    margin-left: 0.625rem;
    transition: transform 0.3s ease-in-out;
  }
  
  .main-button:hover svg {
    transform: translateX(5px);
  }
  
  .main-button:active {
    transform: scale(0.95);
  }


 
  
  @media screen and (max-width: 1040px) {
    .main-button {
      padding: 0.5rem 1rem;
      font-size: 0.875rem;
      margin: 1rem auto;
      max-width: 190px;

    }
  
    .main-button > svg {
      width: 1.875rem;
    }

    .main-button:hover svg {
      transform: translateX(3px);
    }

    .main-button:active {
      transform: scale(0.9);
    }

    .main-button > span {
      margin-right: 5px;  
    }
    
  }
  
  .main-button:hover .svg-icon {
    transform: rotate(360deg); 
    transition: transform 1s ease; 
  }
  


.search-bar{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 10px;
  background: url("./assets/backgrounds/abstractbg8.webp") center center/cover no-repeat;
  background-attachment: fixed;
  transition: background 0.3s ease;
  color: white;
  padding: 15px 20px;
  position: fixed;
  top: 90px;
  left: 0; 
  right: 0;
  z-index: 100;
}

.search-bar input[type="text"] {
  padding: 10px;
  border: none;
  border-radius: 5px;
  margin-left: 10px;
  font-size: 16px;
  background-color: rgba(255, 255, 255, 0.1); 
  color: white;
}

.search-bar input[type="text"]:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.2); 
}

.search-bar input[type="text"]::placeholder {
  color: white;
}

.chataka-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: url("./assets/backgrounds/abstractbg1.webp") center center/cover no-repeat;
  background-attachment: fixed;
  transition: background 0.3s ease;
  color: white;
  padding: 15px 20px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0; 
  right: 0;
  z-index: 1000;
}



.navbar-brand img {
  width: 70px;
  height: 70px;
  margin-right: 10px;
}

.menu-toggle {
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  display: block;
  cursor: pointer;
}

.nav-links {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  background-color: var(--primary-color);
  position: absolute;
  top: 100px;
  left: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  text-transform: uppercase;
  font-weight: 900;
  font-family: var(--title-font);
  z-index: 1000;
  
  
}

.black-overlay.show {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  pointer-events: none;
}


.nav-links.mobile-open{
border-bottom: 5px solid #ffcaca;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}


.nav-links li {
  border-bottom: 1px solid #ffffff;
}



.nav-links li a {
  display: block;
  padding: 15px;
  text-decoration: none;
  color: #fff;
  text-align: center;
  font-size: 0.8rem;
  transition: background 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
  background-color: #ffffff;
  color: var(--primary-color);
}

.nav-links.active {
  display: flex;
}


@media screen and (min-width: 1040px) {
  .menu-toggle {
    display: none;
  }

  .black-overlay {
    display: none;
  }

  .nav-links {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 0.7rem;
    position: static;
    background: none;
    width: auto;
  }

  .nav-links li {
    border: none;
  }

  .nav-links li a {
    padding: 10px 15px;
    font-size: clamp(0.7rem, 1.3vw, 1rem);
  }



  .navbar-brand img {
  width: 100px;
  height: 100px;
  margin-right: 10px;
}


}
/* **************************** navbar ************************ */

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

#chataka-home-hero {
    
  position: relative;
}


.bg-home-hero{
  background: url("./assets/backgrounds/abstractbg1.webp") center center/cover no-repeat;
  background-attachment: fixed;
}

#chataka-home-hero .chataka-home-hero-section{
  background: url("./assets/backgrounds/abstractbg1.webp") center center/cover no-repeat;
  background-attachment: fixed;
  display: flex;
  margin: auto;
  gap: 2rem;
  padding: clamp(5rem, 10vw, 10rem) 6rem;
}
.highlightTitle{
  font-weight: 900;
  text-transform: uppercase;
}
#chataka-home-hero .chataka-home-hero-left,
#chataka-home-hero .chataka-home-hero-right{
  display: flex;
  flex-direction: column;
  flex: 1;
}

#chataka-home-hero .chataka-home-hero-left{
    align-items: flex-end;
    justify-content: center;

}


#chataka-home-hero .chataka-home-hero-right{
    align-items: flex-start;
    justify-content: center;

}
#chataka-home-hero .chataka-home-hero-right img{
  width: 500px;
  height: auto;
  object-fit: contain;

}

.chataka-home-hero-title h1 {
  font-size: clamp(4rem, 8vw, 8rem);
  font-family: 'Bebas Neue', sans-serif; 
  text-transform: uppercase;
  font-weight: 900;
  color: #ffffff; 
  text-shadow: 3px 3px 0 #B22222, 6px 6px 0 #000; 
  text-align: left;
  line-height: 7rem;
}

.chataka-home-hero-subtitle h2 {
  font-size: 2.5rem;
  font-family: 'Bebas Neue', serif;
  color: white;
  text-shadow: 2px 2px 0 #000;
  margin: 0;
  padding: 5px 0;
  text-align: left;
}

.chataka-home-hero-description p {
  font-size: 1.25rem;
  font-family: var(--title-font);
  color: #ffffff;
  margin-top: 10px;
  text-align: right;
  max-width: 500px;
}

@media screen and (max-width: 1040px) {
  #chataka-home-hero .chataka-home-hero-section{
    padding: clamp(4rem, 13vw, 5rem) 2rem;
    flex-direction: column-reverse;
    gap:1.5rem;
  }

  #chataka-home-hero .chataka-home-hero-left,
  #chataka-home-hero .chataka-home-hero-right{
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
  }

  .chataka-home-hero-title h1{
     line-height: 5rem;
     font-size: clamp(3.5rem, 8vw, 6rem);
  }

  .chataka-home-hero-subtitle h2{
    font-size: clamp(2.2rem, 5vw, 3rem);
  }

  .chataka-home-hero-description p{
    text-align: center;
  }

  #chataka-home-hero .chataka-home-hero-right img{
    width: 100%;
    height: 500px;
    object-fit: contain;  
    padding-top: 2.5rem;
  }
}

@media  screen and (max-width: 768px) {
  #chataka-home-hero .chataka-home-hero-right img{
    width: 100%;
    height: 400px;
    object-fit: contain;  
  }
  
}


.filmStrip{
  display: flex;
  align-items: center;
  justify-content: center;

}


.film{
  width: 100%;
  height: 40px;
    background: url("./assets/images/border.webp");
    background-position: center center;
    background-size: contain;
    background-repeat: repeat-x;
}


.filmStrip1{
    background-color: #800000;
}

.filmStrip2{
    background-color: #D84922;
}

.filmStrip3{
    background-color: #FF71DC;
}
.filmStrip4{
    background-color: #9916ea;
}

.filmStrip5{
    background-color: #FFA800;
}

.filmStrip6{
    background-color: #49308D;
}

.filmStrip7{
    background-color: #2700A4;
}

.filmStrip8{
    background-color: #b6013d;
}

.filmStrip9{
    background-color: #00419F;
}

.filmStrip10{
    background-color: #065c66;
}
.bg-brief-about{
     background: url("./assets/backgrounds/abstractbg2.webp") center center/cover no-repeat;
  background-attachment: fixed;
}

#chataka-brief-about .chataka-brief-about-container{
   background: url("./assets/backgrounds/abstractbg2.webp") center center/cover no-repeat;
  background-attachment: fixed;
  display: flex;
  margin: auto;
  gap: 2rem;
  padding: 1rem 6rem;
}

#chataka-brief-about .chataka-brief-about-left,
#chataka-brief-about .chataka-brief-about-right{
  display: flex;
  flex-direction: column;
  flex: 1;
}

#chataka-brief-about .chataka-brief-about-left{
    align-items: flex-end;
    justify-content: center;

}

#chataka-brief-about .chataka-brief-about-left img{
  width: 100%;
  height: 900px;
  object-fit: contain;
}


#chataka-brief-about .chataka-brief-about-right{
    align-items: flex-start;
    justify-content: center;

}

#chataka-brief-about .chataka-brief-about-title h2{
  font-size: clamp(1rem, 8vw, 4rem);
  font-family: 'Bebas Neue', sans-serif; 
  text-transform: uppercase;
  font-weight: 900;
  color: #ffffff; 
  text-shadow: 3px 3px 0 #DB5226, 6px 6px 0 #000; 
  text-align: left;
} 

#chataka-brief-about .chataka-brief-about-description p{
  font-size: 1.25rem;
  font-family: var(--title-font);
  color: #ffffff;
  margin-top: 10px;
  text-align: left;
}


@media screen and (max-width: 1040px) {
  #chataka-brief-about .chataka-brief-about-left img{
  width: 100%;
  min-width: 200px;
  max-width: 500px;
  height: auto;
  object-fit: cover;
}

  #chataka-brief-about .chataka-brief-about-container{
    padding: clamp(4rem, 13vw, 5rem) 2rem;
    flex-direction: column-reverse;
    gap:1.5rem;
  }

  #chataka-brief-about .chataka-brief-about-left{
    align-items: center;

}

#chataka-brief-about .chataka-brief-about-right{
    align-items: center;
}

#chataka-brief-about .chataka-brief-about-description p{
  text-align: justify;
  font-size: clamp(1rem, 4vw, 1.2rem);
  padding: 0.5rem 0;
}

}
.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 1rem 0 5rem 0;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  will-change: transform;
  height: 100%;
}

.carousel-item {
  flex: 0 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  box-sizing: border-box;
  transition: transform 0.3s ease-in-out;
}

.carousel-item img {
  width: 100%;
  max-width: 300px;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: contain;
  border-radius: 50%;
  border: 6px solid #e63946;
  outline: 6px solid #1d3557;
  background: white;
}

.carousel-item h2 {
  font-size: 2rem;
  font-family: "Bebas Neue", sans-serif;
  margin-top: 1rem;
  color: #1d3557;
  font-weight: bold;
  max-width: 500px;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.carousel-button-prev,
.carousel-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: #1d3557;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.carousel-button-prev:hover,
.carousel-button-next:hover {
  opacity: 1;
}

.carousel-button-prev {
  left: 10px;
}

.carousel-button-next {
  right: 10px;
}

.carousel-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}

.carousel-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(29, 53, 87, 0.5);
  cursor: pointer;
  transition: background-color 0.3s;
}

.carousel-pagination-bullet-active {
  background-color: #1d3557;
}

@media screen and (min-width: 768px) {
  .carousel-item {
    width: 50%;
  }
}

@media screen and (min-width: 1024px) {
  .carousel-item {
    width: 33.33%;
  }
}

@media screen and (min-width: 1200px) {
  .carousel-item {
    width: 25%;
  }
}

.bg-menu-categories{
  background: url("./assets/backgrounds/abstractbg3.webp") center center/cover no-repeat;
  background-attachment: fixed;
}

#chataka-menu-categories .chataka-menu-categories-container{
  background: url("./assets/backgrounds/abstractbg3.webp") center center/cover no-repeat;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  margin: auto;
  gap: 2rem;
  padding: 2rem 6rem;
}

.chataka-menu-categories-title{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  margin: auto;
}

.chataka-menu-categories-title h2{
  font-size: clamp(4rem, 8vw, 6rem);
  font-family: 'Bebas Neue', sans-serif; 
  text-transform: uppercase;
  font-weight: 900;
  color: #ffffff; 
  text-shadow: 3px 3px 0 #FF71DC, 6px 6px 0 #000; 
  line-height: 6rem;
  flex: 1;
}

.chataka-menu-categories-title p{
  font-size: 1.25rem;
  font-family: var(--title-font);
  color: #ffffff;
  margin-top: 10px;
  text-align: left;
}
.chataka-menu-categories-button{
  margin-top: 1.5rem;
  max-width: 220px;
  text-transform: uppercase;
}


.chataka-menu-categories-title img{
  width: 500px;
  height: auto;
  object-fit: contain;
  flex: 1;
}


@media screen and (max-width: 1040px) {
  #chataka-menu-categories .chataka-menu-categories-container{
    padding: clamp(4rem, 13vw, 5rem) 2rem;
    flex-direction: column;
    gap:1.5rem;
  }

  .chataka-menu-categories-title{
    flex-direction: column;
  }

  .chataka-menu-categories-title h2{
    text-align: center;
    font-size: clamp(3.5rem, 10vw, 6rem);
    line-height: 4rem;
  }

  .chataka-menu-categories-title p{
    text-align: center;
    font-size: clamp(1rem, 3vw, 1rem);
    line-height: 2rem;
  }

  .chataka-menu-categories-button{
    margin: auto;
  }
  


  .chataka-menu-categories-title img{
    width: 100%;
    min-width: 200px;
    max-width: 500px;
    height: auto;
    object-fit: cover;
  } 
}

.menuButton {
  background-color: none;
  border: 2px solid white;
  color: white;
  padding: 1rem 2rem;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
  border-radius: 5px;
  margin: 2rem 0 0 0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  font-weight: bolder;
}

.menuButton::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: #fff;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
}

.menuButton:hover::before {
  width: 0;
  height: 0;
  opacity: 0;
}

.menuButton:hover {
  background-color: white;
  color: #333; 
}

.menuButton:active {
  transform: translateY(2px); 
}



.bg-special-dishes{
  background: url("./assets/backgrounds/abstractbg6.webp") center center/cover no-repeat;
  background-attachment: fixed;
}

#chataka-special-dishes .chataka-special-dishes-container{
  background: url("./assets/backgrounds/abstractbg6.webp") center center/cover no-repeat;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  margin: auto;
  gap: 2rem;
  padding: clamp(4rem, 13vw, 10rem) 6rem;
}

.chataka-special-dishes-title{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  margin: auto;
}

.chataka-special-dishes-title h1{
  font-size: clamp(4rem, 8vw, 6rem);
  font-family: 'Bebas Neue', sans-serif; 
  text-transform: uppercase;
  font-weight: 900;
  color: #ffffff; 
  text-shadow: 3px 3px 0 #FFA800, 6px 6px 0 #000; 
  line-height: 6rem;
  flex: 1;
}

.chataka-special-dishes-title p{
  font-size: 1.25rem;
  font-family: var(--title-font);
  color: #ffffff;
  margin-top: 10px;
  text-align: left;
}
.chataka-special-dishes-button{
  margin-top: 1.5rem;
  max-width: 220px;
  text-transform: uppercase;
}
.chataka-special-dishes-title img{
  width: 500px;
  height: auto;
  object-fit: contain;
  flex: 1;
}


@media screen and (max-width: 1040px) {
  #chataka-special-dishes .chataka-special-dishes-container{
    padding: clamp(8rem, 13vw, 10rem) 2rem;
    flex-direction: column;
    gap:1.5rem;
  }

  .chataka-special-dishes-title{
    flex-direction: column;
  }

  .chataka-special-dishes-title h1{
    text-align: center;
    font-size: clamp(3.5rem, 10vw, 6rem);
    line-height: 6rem;
  }

  .chataka-special-dishes-title p{
    text-align: center;
    font-size: clamp(1rem, 3vw, 1rem);
    line-height: 2rem;
  }

  .chataka-special-dishes-button{
    margin: auto;
  }
  

  .chataka-special-dishes-title img{
    width: 100%;
    min-width: 200px;
    max-width: 500px;
    height: auto;
    object-fit: cover;
  } 
}


.bg-about{
  background: url("./assets/backgrounds/abstractbg5.webp") center center/cover no-repeat;
  background-attachment: fixed;
}


#chataka-main-about .chataka-main-about-container{
  
   background: url("./assets/backgrounds/abstractbg5.webp") center center/cover no-repeat;
  background-attachment: fixed;
  display: flex;
  margin: auto;
  gap: 2rem;
  padding: clamp(4rem, 13vw, 5rem) 6rem;
}

#chataka-main-about .chataka-main-about-left,
#chataka-main-about .chataka-main-about-right{
  display: flex;
  flex-direction: column;
  flex: 1;
}

#chataka-main-about .chataka-main-about-left{
    align-items: flex-end;
    justify-content: center;
    position: relative;

}



#chataka-main-about .chataka-main-about-left img{
  width: 100%;
  height: 900px;
  object-fit: contain;
}


#chataka-main-about .chataka-main-about-right{
    align-items: flex-start;
    justify-content: center;

}

.chataka-main-about-title h1{
  font-size: clamp(2rem, 5vw, 8rem);
  font-family: 'Bebas Neue', sans-serif; 
  text-transform: uppercase;
  font-weight: 900;
  color: #ffffff; 
  text-shadow: 3px 3px 0 rgb(153, 22, 234), 6px 6px 0 #000; 
  text-align: left;
} 

#chataka-main-about .chataka-main-about-description p{
  font-size: 1.25rem;
  font-family: var(--title-font);
  color: #ffffff;
  margin-top: 10px;
  text-align: left;
}

.image-wrapper{
  position: relative;
}

@media screen and (max-width: 1040px) {
  #chataka-main-about .chataka-main-about-left img{
  width: 100%;
  min-width: 200px;
  max-width: 500px;
  height: auto;
  object-fit: cover;
}

  #chataka-main-about .chataka-main-about-container{
    padding: clamp(8rem, 13vw, 9rem) 2rem;
    flex-direction: column;
    gap:1.5rem;
  }

  #chataka-main-about .chataka-main-about-left{
    align-items: center;

}

#chataka-main-about .chataka-main-about-right{
    align-items: center;
}

#chataka-main-about .chataka-main-about-description p{
  text-align: justify;
  font-size: clamp(1rem, 4vw, 1.2rem);
  padding: 0.5rem 0;
}

}


.banner {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(80%);
  display: block;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 2;
}

.banner-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  border-radius: 1.5rem;
  background-color: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 20px rgba(255, 61, 0, 0.4);
  flex-wrap: wrap;
  max-width: 950px;
  border: 6px solid #ffd700;
}

.banner-wrapper::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  border-radius: 1.5rem;
  background:
    radial-gradient(#ffcc00 8%, transparent 9%) 0 0,
    radial-gradient(#ffcc00 8%, transparent 9%) 20px 0,
    radial-gradient(#ffcc00 8%, transparent 9%) 0 20px,
    radial-gradient(#ffcc00 8%, transparent 9%) 20px 20px;
  background-size: 40px 40px;
  z-index: -1;
  animation: marquee-lights 2s linear infinite;
}

@keyframes marquee-lights {
  0% { background-position: 0 0, 20px 0, 0 20px, 20px 20px; }
  100% { background-position: 40px 0, 60px 0, 40px 20px, 60px 20px; }
}

.banner-qr img {
  width: 180px;
  height: 180px;
  border-radius: 1rem;
  border: 4px solid #ff3d00;
  background: white;
  filter: brightness(100%);
}

.banner-content {
  color: #fff;
  max-width: 500px;
}

.banner-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-family: "Bebas Neue", sans-serif;
  color: #ffd700;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.banner-content p {
  font-family: var(--title-font);
  font-size: 1.2rem;
  line-height: 1.6;
  color: #ffefd5;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {

  .banner{
    height:85vh;
  }
  .banner-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .banner-qr img {
    width: 140px;
    height: 140px;
  }

  .banner-content h2 {
    font-size: 1.8rem;
  }

  .banner-content p {
    font-size: 1rem;
  }
}



.bg-menu-1{
  background: url("./assets/backgrounds/abstractbg8.webp") center center/cover no-repeat;
  background-attachment: fixed;
}

.bg-menu-2{
  background: url("./assets/backgrounds/abstractbg9.webp") center center/cover no-repeat;
  background-attachment: fixed;
}

.bg-menu-3{
  background: url("./assets/backgrounds/abstractbg2.webp") center center/cover no-repeat;
  background-attachment: fixed;
}

.bg-menu-4{
  background: url("./assets/backgrounds/abstractbg10.webp") center center/cover no-repeat;
  background-attachment: fixed;
}

#chataka-menu .chataka-menu-container{
  background: url("./assets/backgrounds/abstractbg8.webp") center center/cover no-repeat;
  background-attachment: fixed;
  display: flex;
  margin: auto;
  gap: 2rem;
  padding: 3rem 6rem 0 6rem;
}

#menu,
#location {
  scroll-margin-top: 150px; 
}

.menu-category-container-group1{
  background: url("./assets/backgrounds/abstractbg8.webp");
  background-position: center;
  background-size:cover;
  background-attachment: fixed;
}

.menu-category-container-group2{
  background: url("./assets/backgrounds/abstractbg9.webp");
  background-position: center;
  background-size:cover;
  background-attachment: fixed;
  padding-top: 6.5rem;
}

.menu-category-container-group3{
  background: url("./assets/backgrounds/abstractbg2.webp");
  background-position: center;
  background-size:cover;
  background-attachment: fixed;
  padding-top: 6.5rem;
}

.menu-category-container-group4{
  background: url("./assets/backgrounds/abstractbg10.webp");
  background-position: center;
  background-size:cover;
  background-attachment: fixed;
  padding-top: 6.5rem;
}

#chataka-menu .chataka-menu-left,
#chataka-menu .chataka-menu-right{
  display: flex;
  flex-direction: column;
  flex: 1;
}

#chataka-menu .chataka-menu-left{
    align-items: flex-end;
    justify-content: center;
    position: relative;

}
.pushpa{
  position: relative;
}
.pushpaBg{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  
}

.menuHeroImg{
  position: relative;
  filter: hue-rotate(180deg);
}
.menuHeroImgBg{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  
}

#chataka-menu .chataka-menu-left img{
  width: 100%;
  height: 700px;
  object-fit: contain;
}


#chataka-menu .chataka-menu-right{
    align-items: flex-start;
    justify-content: center;

}

.chataka-menu-title h1{
  font-size: clamp(2rem, 5vw, 8rem);
  font-family: 'Bebas Neue', sans-serif; 
  text-transform: uppercase;
  font-weight: 900;
  color: #ffffff; 
  text-shadow: 3px 3px 0 rgb(153, 22, 234), 6px 6px 0 #000; 
  text-align: left;
} 

#chataka-menu .chataka-menu-description p{
  font-size: 1.25rem;
  font-family: var(--title-font);
  color: #ffffff;
  margin-top: 10px;
  text-align: left;
}

.image-wrapper{
  position: relative;
}

@media screen and (max-width: 1040px) {
  #chataka-menu .chataka-menu-left img{
  width: 100%;
  min-width: 200px;
  height: auto;
  object-fit: contain;
}

#menu {
  scroll-margin-top: 100px; 
}

  #chataka-menu .chataka-menu-container{
    padding: clamp(8rem, 13vw, 9rem) 2rem 4rem 2rem;
    flex-direction: column;
    gap:0rem;
  }

  #chataka-menu .chataka-menu-left{
    align-items: center;

}

#chataka-menu .chataka-menu-right{
    align-items: center;
}

#chataka-menu .chataka-menu-description p{
  text-align: justify;
  font-size: clamp(1rem, 4vw, 1.2rem);
  padding: 0.5rem 0;
}

}

.menu-category {
     max-width: 1200px;
     padding: 0 2rem;
    margin: 0 auto;
}

.dishes-column-container {
    display: flex;
    gap: 30px;
    padding-bottom: 5rem;
}



.dishes-column {
    flex: 1;
}

.dosa-dhammal{
 font-size: clamp(3rem, 4vw, 6rem);
}
.customization{
  display: flex;
  flex-direction: column;
  font-size: 1.3rem;
  margin-top: 1rem;
  line-height: 2rem;
}
.category-heading-left,
.category-heading-right {
    text-align: center;
    margin-bottom: 20px;
    font-size: clamp(2rem, 4vw, 3rem);
    font-family:var(--title-font);
    color: rgb(255, 234, 0);
    font-weight: 900;
    text-transform: uppercase;
}

.category-heading-left img,
.category-heading-right img{
  margin-top: 2rem;
}

.dish-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 1rem 2rem;
    position: relative;
   background: linear-gradient(
  135deg,
  #facc15 0%,
  #e0b847 20%,
  #d9aa3a 40%,
  #f7c948 60%,
  #facc15 80%,
  #ffe066 100%
);
background-size: 200% 200%;
    border-radius: 0;
    overflow: hidden;
    box-sizing: border-box;
    
    -webkit-mask: 
        radial-gradient(circle 20px at left center, transparent 20px, #facc15 21px) left center,
        radial-gradient(circle 20px at right center, transparent 20px, #facc15 21px) right center;
    -webkit-mask-size: 51% 100%;
    -webkit-mask-repeat: no-repeat;
    mask: 
        radial-gradient(circle 20px at left center, transparent 20px, #facc15 21px) left center,
        radial-gradient(circle 20px at right center, transparent 20px, #facc15 21px) right center;
    mask-size: 51% 100%;
    mask-repeat: no-repeat;
}

.dish-item .inner-border {
    position: absolute;
    inset: 8px;   
    border: 2px dashed #fff;
    border-radius: 0;
    pointer-events: none; 
    z-index: 1;
}

.dish-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
}

.dish-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.dish-name{
    font-family: "Bebas Neue", sans-serif;
    font-weight: 900;
    color: #360065;
    font-size: clamp(1.1rem, 5vw, 1.4rem);
}

.dish-description{
    font-family: var(--title-font);
    font-size: 0.8rem;
    width: 90%;
}

.dish-price{
    font-family: "Bebas Neue", sans-serif;
    font-weight: 900;
    color: #360065;
    font-size: clamp(1.1rem, 5vw, 1.4rem);
}

.category-heading-left,
.category-heading-right {
  display: block;
  text-align: center;
}

@media (min-width: 769px) {
  .category-heading-right {
    display: none;
  }


  .menu-category:nth-child(even) .category-heading-left {
    display: none;
  }
  .menu-category:nth-child(even) .category-heading-right {
    display: block;
  }
}

@media (max-width: 768px) {
    .dishes-column-container {
        flex-direction: column;
        gap: 15px;
        padding-bottom: 5rem;
    }

    .menu-category-container-group2,
    .menu-category-container-group3,
    .menu-category-container-group4{
      padding-top: 2rem;
    }
    .dish-item {
        padding: 1.2rem;
    }

    .dish-item:nth-last-child(1) {
        margin-bottom: 5px;
    }
    
    .dish-image{
        display: none;
    }
    .dish-info{
      padding: 0 1rem;
    }

    .category-heading-left{
      margin-top: 2rem;
    }

      .category-heading-left img{
        width: 100%;
        height: 300px;
        object-fit: contain;
        padding: 1rem 0;
      }
 .category-heading-right{
      display: none;
    }
  }
  

   
#chataka-contact {
    
  position: relative;
}


.bg-contact{
  background: url("./assets/backgrounds/abstractbg10.webp") center center/cover no-repeat;
  background-attachment: fixed;
}

.bg-location{
  background: url("./assets/backgrounds/abstractbg8.webp") center center/cover no-repeat;
  background-attachment: fixed;
}

#chataka-contact .chataka-contact-section{
  background: url("./assets/backgrounds/abstractbg10.webp") center center/cover no-repeat;
  background-attachment: fixed;
  display: flex;
  margin: auto;
  gap: 2rem;
  padding: clamp(5rem, 10vw, 10rem) 6rem;
}
.highlightTitle{
  font-weight: 900;
  text-transform: uppercase;
}
#chataka-contact .chataka-contact-left,
#chataka-contact .chataka-contact-right{
  display: flex;
  flex-direction: column;
  flex: 1;
}

#chataka-contact .chataka-contact-left{
    align-items: flex-end;
    justify-content: center;

}


#chataka-contact .chataka-contact-right{
    align-items: flex-start;
    justify-content: center;

}
#chataka-contact .chataka-contact-right img{
  width: 600px;
  height: auto;
  object-fit: contain;

}

.chataka-contact-title h1 {
  font-size: clamp(4rem, 8vw, 8rem);
  font-family: 'Bebas Neue', sans-serif; 
  text-transform: uppercase;
  font-weight: 900;
  color: #ffffff; 
  text-shadow: 3px 3px 0 #00419F, 6px 6px 0 #000; 
  text-align: left;
  line-height: 7rem;
}

.location-icon{
  margin-left: 0.5rem;
}

.chataka-contact-subtitle span {
  font-size: 2.5rem;
  font-family: 'Bebas Neue', serif;
  color: white;
  text-shadow: 2px 2px 0 #000;
  margin: 0;
  padding: 5px 0;
  text-align: left;
}

.chataka-contact-description p {
  font-size: 1.25rem;
  font-family: var(--title-font);
  color: #ffffff;
  margin-top: 10px;
  text-align: right;
  max-width: 500px;
}

@media screen and (max-width: 1040px) {
  #chataka-contact .chataka-contact-section{
    padding: clamp(4rem, 13vw, 5rem) 2rem;
    flex-direction: column-reverse;
    gap:1.5rem;
  }

  #chataka-contact .chataka-contact-left,
  #chataka-contact .chataka-contact-right{
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
  }

  .chataka-contact-title h1{
     line-height: 5rem;
     font-size: clamp(3.5rem, 8vw, 6rem);
  }

  .chataka-contact-subtitle span{
    font-size: clamp(2.2rem, 5vw, 3rem);
    text-align: center;
  }

  .chataka-contact-description p{
    text-align: center;
  }

  #chataka-contact .chataka-contact-right img{
    width: 100%;
    height: 500px;
    object-fit: contain;  
    padding-top: 2.5rem;
  }
}

@media  screen and (max-width: 768px) {
  #chataka-contact .chataka-contact-right img{
    width: 100%;
    height: 400px;
    object-fit: contain;  
  }
  
}


/*********************************  footer section *********************************/
/* .footer {
  background-color: #f7f7f7;
} */

.footer__container {
  padding: 4rem 1rem;
  background: url("./assets/backgrounds/BG-DOWN.webp") no-repeat center center;
  background-size: cover;
}
.footer__row {
  max-width: 1200px;
  display: grid;
  gap: 4rem 2rem;
  margin: 0 auto;
  font-family: var(--main-font);
}

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

.footer__logo {
  margin-bottom: 1rem;
}

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

.footer__col .section__description {
  text-align: left;
  font-size: 0.9rem;
  color: #fff;
}

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

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

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

.footer__links a {
  color: #fff;
}

.footer__links li {
  color: #fff;
}

.footer__links a:hover {
  color: #ffcccc;
}

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

.footer__contact i {
  font-size: 0.9rem;
  color: #fff;
}

.footer__bar,
.footer__policy {
  padding: 1rem;
  font-size: 0.8rem;
  font-family: var(--main-font);
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e41d2e;
}

.footer__policy {
  display: flex;
  font-family: var(--main-font);

  justify-content: center;
  gap: 1rem;
}

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

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

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

.social__links{
  margin-top: 0.5rem;
}

.social__links i{
  font-size: 1.5rem;
  margin-right: 0.5rem;

}

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

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

.footer__company {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  font-family: var(--main-font);
  font-size: 0.8rem;
  text-align: center;
  background-color: #e62a3a;
}

.footer__company a {
  color: #fff;
}

.footer__company a span {
  color: #fff;
  transform: 0.2s ease;
}

.footer__company a span:hover {
  color: #ffd6d6;
}

@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 (width > 540px) {
  .special__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__row {
    grid-template-columns: 3fr 2fr;
  }
}

@media (width > 768px) {

  .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__row {
    grid-template-columns: 2fr repeat(3, 1fr);
  }
}

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

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

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

.aboutSectionHero {
  display: flex;
  flex-direction: row;
  gap: 20px;
  height: 100vh;
}

.aboutSectionHeroLeft {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.aboutSectionHeroRight {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}


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

@media screen and (max-width: 768px) {
  .about-container {
    padding: 0 0 4rem 0;
  }
  
}

.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(300px, 1fr));
  grid-auto-rows: 300px;
  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 ******************************** */
#scrollToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background-color: #ffffff;
  color: #1d1d1d;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#scrollToTopBtn.show {
  opacity: 1;
  visibility: visible;
}

#scrollToTopBtn:hover {
  background-color: #f4f4f4;
}

@media (max-width: 768px) {
  #scrollToTopBtn {
    width: 40px;
    height: 40px;
    font-size: 20px;
    bottom: 65px;
    right: 15px;
  }
}


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

.bg-testimonials {
  background: url("./assets/backgrounds/abstractbg11.webp") center center/cover no-repeat;
  background-attachment: fixed;
}

.chataka-testimonials {
  padding: 2rem 1rem 0 1rem;
  background: url("./assets/backgrounds/abstractbg11.webp") center center/cover no-repeat;
  background-attachment: fixed;
}
#testimonial-section {
  padding: 8.5rem 1rem;
}

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

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

.chataka-review {
  font-size: 1rem;
}

.bg-primary-400 {
  background: #046252;
}
.bg-secondary-400 {
  background: linear-gradient(to right, #046252, #05af92);
}
.bg-secondary-500 {
  background: #007864;
}

.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: clamp(3rem, 5vw, 4rem);
  color: white;
  text-transform: uppercase;
  font-weight: 900;
  text-shadow: 3px 3px 0 #046252, 6px 6px 0 #000; 
  font-family:"Bebas Neue", cursive;
}

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

.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: 2.3rem;
    text-align: center;
  }

  .testimonial-grid {
    padding: 5rem 1rem;
  }

  .chataka-testimonials {
    padding: 2rem 1rem;
  }

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

.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:last-of-type {
  opacity: 0.7;
}

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


/*********************************  privacy policy and terms of use styles *********************************/
.chataka-privacy-policy {
  background: url("./assets/backgrounds/abstractbg1.webp") no-repeat center center fixed;
  background-size: cover;
  background-attachment: fixed;
  padding: 6.5rem 1rem;
}
.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: #fff;
}

.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;
  color: #ffffff;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 600;
}

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

@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;
  font-family:"Bebas Neue", sans-serif;
}

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

.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%;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

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



  #contact-section {
    color: var(--text-light);
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem 1rem;
  }

  @media screen and (max-width: 1200px) {
    #contact-section {
      flex-direction: column;
    }
    
  }



  .bolly-map-container {
    width: 100%;
    margin: 0 auto 3rem auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
  }

  .bolly-contact-box {
    padding-bottom: 2rem;
    flex: 1;
  }

  .bolly-contact-box h2 {
      font-size: clamp(2rem, 8vw, 4rem);
  font-family: 'Bebas Neue', sans-serif; 
  text-transform: uppercase;
  font-weight: 900;
  color: #ffffff; 
  text-shadow: 3px 3px 0 #2700A4, 6px 6px 0 #000; 
  text-align: center;
  line-height: 7rem;

  }

  .bolly-contact-description {
    font-size: 1.1rem;
    font-family: var(--title-font);
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 1px 1px 0 rgb(153, 22, 234), 2px 2px 0 #000;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .bolly-contact-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .bolly-contact-list li {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid white;
    border-radius: 14px;
    padding: 5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    position: relative;
  }

  .contactTitle {
    font-size: 1.7rem;
    font-weight: 600;
    color: white;
    font-family: "Bebas Neue", sans-serif;
  }
  .contactIcon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: #2700A4;
    background: #ffffffd2;
    padding: 10px;
    border-radius: 50%;
  } 

  .bolly-contact-list li:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
  }

  .bolly-contact-list a {
    text-decoration: none;
    color:  white;
    font-family: var(--title-font);
    font-weight: 600;
    gap: 10px;
  }



  @media (max-width: 600px) {
    .bolly-contact-box h2 {
      font-size: 2rem;
    }

    .bolly-contact-description {
      font-size: 1rem;
    }

    .bolly-contact-list {
      grid-template-columns: 1fr;
    }
  }

/* floating order online */

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

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

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

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

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

  .cs-content{
    text-align: center;
    align-items: center;
  }

  .cs-text{
    width: 100%;
  }

  .mobile-menu-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #f8f8f8;
    position: sticky;
    top: 80px; 
    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;
  justify-content: center;
  gap: 4rem;
  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 h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 4rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  text-align: center;
     font-family:var(--title-font);
  /* font-family: "Unna", serif; */
}

.header__content h2 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__content .section__description {
  margin-bottom: 2rem;
  font-family: var(--primary-font);
  text-align: justify;
  display: flex; 
  flex-direction: column;
  line-height: 1.5rem;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .header__content .section__description {
   margin: 2rem 1rem;
  }
  
}
.header__btn {
  margin-left: 1rem;
  text-align: center;
}

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

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

.header__content h1{
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
}

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

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

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

 

  .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: 2rem;
  }
}

/* ******************************* 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;
    line-height: 3.5rem;
    text-decoration: none;
    font-weight: 700;
    margin: auto;
    color: #fff;
    padding: 0 1.5rem;
    background-color: var(--primary-color);
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  #our-story-container .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: rgb(255, 104, 104);
    opacity: 0.4;
    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, 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           -->
<--- -------------------------- -*/

.bg-gallery{
  background: url("./assets/backgrounds/abstractbg6.webp") center center/cover no-repeat;
  background-attachment: fixed;
}

#about-gallery .about-gallery-container{
  background: url("./assets/backgrounds/abstractbg6.webp") center center/cover no-repeat;
  background-attachment: fixed;
}


/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #about-gallery-container {
    padding: clamp(2rem, 4.82vw, 4rem) 1rem;
  }
  #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);
  }
}

/*-- -------------------------- -->
<---         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);
    /* 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;
  }

  .ticket-1{
        background:url("./assets/images/ticket.webp") center center/contain no-repeat;
  }

   .ticket-2{
        background:url("./assets/images/ticket2.webp") center center/contain no-repeat;
  }
   .ticket-3{
        background:url("./assets/images/ticket3.webp") center center/contain no-repeat;
  }

  #about-services .cs-icon-wrapper {
    width: 3.45rem;
    height: 3.45rem;
    margin: 0 0 1.5rem 0;
    background-color: rgb(236, 236, 236);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 50%;
    opacity: 0;
  }
  #about-services .cs-icon {
    width: 2.2rem;
    height: auto;

  }
  #about-services .cs-h3 {
    /* 20px - 25px */
    font-family: var(--title-font);
    font-size: clamp(1.6rem, 2.5vw, 1.8rem);
    line-height: 1.2em;
    font-weight: bold;
    text-align: inherit;
    margin: 0 0 0.75rem 0;
    color: var(--headerColor);
    opacity: 0;
  }
  #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);
    opacity: 0;
  }
}

@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, 10.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-family: var(--title-font);
    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);
    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: rgb(255, 104, 104);
    opacity: 0.4;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
    border-radius: 1rem;
  }
  #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;
    font-family: "Inter", sans-serif;

  }
  #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, 1rem);
    font-weight: 400;
    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) {
  } */
  #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/4.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
  #about-section-hero .cs-picture img {
    display: none;
  }
}




/*-- -------------------------- -->
<---           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, 13.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.4;
    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;
    display: flex;
    align-items: center;
    z-index: 2;
  }
  #contact-section-hero .cs-title {
    /* 39px - 61px */
    font-family: var(--title-font);
    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);
    font-family: var(--primary-font);
    font-weight: 500;
    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);
    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: rgb(255, 104, 104);
    opacity: 0.4;
    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%;
  }
}

/*********************************  location section *********************************/

#location-section,
#best-dishes-section,
#popular {
  background: url("./assets/images/bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.select-location-wrapper {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}

.select-location-title {
  font-size: 32px;
  display: inline-block;
  text-align: center;
  color: var(--text-dark);
  font-weight: 700;
  font-family: var(--main-font);
  padding: 60px 10px 60px 10px;
}

.location-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  /* margin: 3% auto 0; */
  padding-bottom: 8rem;
  margin: 3% 0 0 0;
}

/* @media (min-width: 1300px) {
  .location-wrapper .single-card:nth-child(2){
    transform: scale(1.2);
  }

  .location-wrapper .single-card:nth-child(2):hover{
    transform: scale(1.2) translateY(-10px);
    cursor: pointer;
  }
} */



.single-card {
  position: relative;
  width: 320px;
  height: 440px;
  margin: 15px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  transition: box-shadow 0.3s ease;
  overflow: hidden;
  background: #ffffff;
  border-radius: 14px;
  transition: all 0.8s ease-in-out;
}
.single-card:hover {
  transform: translateY(-10px);
  cursor: pointer;
}
.img-area {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.img-area:hover img {
  transform: scale(1.1);
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(99, 99, 99, 0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.single-card .overlay {
  opacity: 1;
}
.pickup-btn {
  background-color: #fff;
  color: #333;
  padding: 10px 15px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-bottom: 10px;
  border: 1px solid transparent;
  font-family: var(--primary-font);
}
.pickup-btn:hover {
  background-color: var(--primary-color);
  color: #fff;
  border: 1px solid #fff;
}
.info {
  padding: 5px ;
  text-align: center;
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.info h3 {
  margin: 10px 0 10px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
}
.info .address {
  margin: 0;
  font-size: 0.9rem;
  font-weight: bold;
  color: #5a5a5a;
  margin-bottom: 24px;
}

.info .phone a {
  margin: 0;
  padding:0 10px;
  font-size: 0.9rem;
  font-weight: bold;
  color: #000000;
}

.info .phone a:hover {
  color: #e12222;
}

.info .email a {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  color: #000000;
}

.info .email a:hover {
  color: #e12222;
}

.info .timings-wrapper {
  font-size: 16px;
  font-weight: 500;
  color: #5a5a5a;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.select-location-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.select-location-wrapper .location-subtitle {
  font-size: 20px;
  color: #5a5a5a;
}

.location-section-contact {
  margin-bottom: 5rem;
}

.titles{
  color: var(--primary-color-dark);
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
}

.select-location-subtitle {
  font-family: var(--title-font);
  font-size: clamp(2rem, 4vw, 2.5rem);
}

@media only screen and (max-width: 768px) {
  .select-location-title {
    font-size: 22px;
    padding: 10px;
  }

  .info h3 {
    font-size: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
  .select-location-title {
    font-size: 32px;
    padding: 100px 20px 10px 10px;
  }
  
}

#contact-location-section {
  margin-top: 10rem;
  margin-bottom: 6rem;
}
@media only screen and (max-width: 800px) {
  #contact-location-section {
    margin-top: 8rem;
    margin-bottom: 4rem;
  }

  .select-location-wrapper .location-subtitle {
    font-size: 20px;
    color: #5a5a5a;
    text-align: center;
  }
}

/*********************************  location section *********************************/

.location-overview .section__title {
  font-size: 32px;
  text-align: center;
  font-weight: 700;
}

.location-overview .section__description {
  margin-top: 1rem;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
}

@media only screen and (max-width: 900px) {
  .location-overview {
    margin-bottom: 0;
  }
}

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #menu-hero-section {
    /* 144px - 300px - leaving extra space for the navigation */
    padding: clamp(9rem, 25.95vw, 10.75rem) 1rem 0;
    /* 130px - 175px */
    padding-bottom: clamp(8.125rem, 12.5vw, 10.9375rem);
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    /* clips the color overlay so it doesn't cause an overflow */
    overflow: hidden;
    position: relative;
  }
  #menu-hero-section .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #menu-hero-section .cs-content {
    text-align: left;
    /* changed to at tablet */
    width: 90%;
    max-width: 34.0625rem;
    /* 100px - 150px, changes to 0 at tablet */
    margin-top: clamp(6.25rem, 28vw, 9.375rem);
  }
  #menu-hero-section .cs-title {
    /* 39px - 61px */
    font-size: clamp(2.4375rem, 6.7vw, 3.8125rem);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    /* 16px - 32px */
    margin: 0 0 clamp(1rem, 4vw, 2rem) 0;
    color: var(--primary-color-light);
    position: relative;
    font-family:var(--title-font);
  }

 
  #menu-hero-section .cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    /* 40px - 64px */
    margin: 0 0 clamp(2.5rem, 6.3vw, 4rem);
    color: var(--primary-color-light);
    font-family:var(--primary-font);
    font-weight: 500;
  }
  #menu-hero-section .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: auto;
    color: var(--primary-color-light);
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--primary-color);
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    transition: color 0.3s;
  }
  #menu-hero-section .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: rgb(255, 104, 104);
    opacity: 0.4;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
  }
  #menu-hero-section .cs-button-solid:hover {
    color: #fff;
  }
  #menu-hero-section .cs-button-solid:hover:before {
    width: 100%;
  }
  #menu-hero-section .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #menu-hero-section .cs-background:before {
    /* background color overlay */
    content: "";
    position: absolute;
    display: block;
    height: 125rem;
    width: 187.5rem;
    background: rgba(12, 12, 12, 0.7);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    top: 70.3125rem;
    left: 50%;
    z-index: 1;
    transform: rotate(30deg) translateX(-50%);
  }
  #menu-hero-section .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* Makes img tag act as a background image */
    object-fit: cover;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #menu-hero-section .cs-content {
    width: 48%;
    margin-top: 0rem;
  }
  #menu-hero-section .cs-background:before {
    top: 7.5rem;
    margin-left: -127.1875rem;
    transform: rotate(60deg);
  }
}




@media only screen and (max-width: 800px) {
  .contact-section-ne {
    margin-top: 0;
    padding-top: 1rem;
  }

  .contact-section-nw {
    margin-top: 0;
    padding-top: 1rem;
  }
}

.contact-sections-wrapper {
  background: url("/assets/backgrounds/abstractbg8.webp") no-repeat center center fixed;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
  width: 100%;
  margin: auto;
  gap: 2rem;
}

.contact-wrapper-header {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 2rem;
}

.contact-wrapper-header h2 {
  font-size: clamp(2rem, 8vw, 4rem);
  font-family: 'Bebas Neue', sans-serif; 
  text-transform: uppercase;
  font-weight: 900;
  color: #ffffff; 
  text-shadow: 3px 3px 0 #2700A4, 6px 6px 0 #000; 
  text-align: center;
  line-height: 7rem;
  margin: 2rem 0 0 0;

}

.contact-wrapper-header p {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  color: #ffffff;
}

.contact-sections-wrapper .header__container {
  background:transparent;
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
  transition: transform 0.3s ease;
  height: 100%;
  width: 100%;
  /* Make container flex column to stack items */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

.contact-sections-wrapper .header__container:hover {
  transform: translateY(-5px);
}

.contact-sections-wrapper .map-container {
  border-radius: 1rem 1rem 1rem 1rem;
  overflow: hidden;
  /* Adjust map container to be more proportional */
  position: relative;
  width: 100%;
  height: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  order: -1; /* Ensures map stays at top */
}

.contact-sections-wrapper .map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem 1rem 1rem 1rem;
  border: 0;
}

.contact-sections-wrapper .header__contact__content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: #ffffffcb;
  border-radius: 1rem;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px,
    rgba(17, 17, 26, 0.05) 0px 8px 32px;
}

@media (max-width: 768px) {
  .contact-sections-wrapper {
    padding: 1rem;
    gap: 1.5rem;
  }

  .contact-sections-wrapper .header__contact__content {
    padding: 1.5rem;
  }

  .contact-wrapper-header h2 {
    font-size: 3rem;
  }

  .contact-wrapper-header p {
    font-size: 1.2rem;
  }
}




.bg-reviews {
  background: url('./assets/backgrounds/abstractbg10.webp') repeat center center fixed;
  background-size: cover;
  background-attachment: fixed;
}
  
.review-section {
  background: url('./assets/backgrounds/abstractbg10.webp') repeat center center fixed;
  background-size: cover;
  padding: 10rem 1rem 7rem 1rem;
  font-family: 'Arial Black', sans-serif;
  color: #fff;
}

.review-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
}

.cartoon-box {
  flex: 1 1 250px;
  max-width: 350px;
  text-align: center;
}

.cartoon-img {
  width: 100%;
  max-width: 800px;
  height: auto;
}

.review-form {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.review-form label {
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
}

.review-form input,
.review-form textarea {
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  width: 100%;
}

.review-form textarea {
  resize: none;
}

.review-form button {
  background-color: #0073e6;
  font-size: 1.3rem;
  font-family: "Bebas Neue", sans-serif;
  color: white;
  padding: 12px;
  border: none;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.review-form button:hover {
  background-color: #005bb5;
}

@media (max-width: 768px) {
  .review-container {
    flex-direction: column;
    align-items: center;
  }

  .review-section {
    padding: 5rem 1rem 3rem 1rem;
  }

  .review-form {
    width: 100%;
  }
}


@media (max-width: 768px) {


  .search-bar {
    top: 80px; 
    padding: 10px;
  }

  .search-bar input[type="text"] {
    width: 100%;
    font-size: 14px;
    padding: 8px;
  }

  .menu-category {
    padding: 0 1rem;
  }

  .dishes-column-container {
    padding-bottom: 3rem;
    gap: 15px;
  }

  .category-heading-left span,
  .category-heading-right span {
    font-size: 1.5rem;
  }

  .category-heading-left img,
  .category-heading-right img {
    width: 100%;
    height: auto;
    max-height: 200px;
    margin-top: 1rem;
  }

  .dosa-dhammal {
    font-size: 2rem;
    line-height: 2.2rem;
  }

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

  .customization span {
    margin-bottom: 0.5rem;
  }

  .filmStrip {
    height: 30px;
  }

  .film {
    height: 30px;
  }

  .category-heading-right {
    display: none;
  }

  .menu-category-container-group1,
  .menu-category-container-group2,
  .menu-category-container-group3,
  .menu-category-container-group4 {
    padding-top: 2rem;
  }

  .dish-item {
    padding: 0.8rem 1rem;
  }

  .dish-info {
    padding: 1rem;
  }

  .dish-name,
  .dish-price {
    font-size: 1rem;
  }

  .dish-description {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .category-heading-left span,
  .category-heading-right span {
    font-size: 1.3rem;
  }

  .dosa-dhammal {
    font-size: 1.8rem;
  }

  .customization {
    font-size: 0.8rem;
  }

  .dish-item {
    padding: 0.6rem 0.8rem;
  }
}

@media (max-width: 360px) {
  .category-heading-left span,
  .category-heading-right span {
    font-size: 1.2rem;
  }

  .dish-name,
  .dish-price {
    font-size: 0.9rem;
  }
}


.chataka-add-review{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  margin-bottom: 20px;
}

.chataka-review-title h1 {
  font-size: clamp(4rem, 8vw, 6rem);
  font-family: 'Bebas Neue', sans-serif; 
  text-transform: uppercase;
  font-weight: 900;
  color: #ffffff; 
  text-shadow: 3px 3px 0 #00419F, 6px 6px 0 #000; 
  line-height: 6rem;
}

.chataka-review-subtitle span {
  font-size: 2.5rem;
  font-family: 'Bebas Neue', serif;
  color: white;
  text-shadow: 2px 2px 0 #000;
}

.chataka-review-description p {
  font-size: 1.2rem;
  font-family: var(--title-font);
  color: #ffffff;
  max-width: 800px;
}


@media screen and (max-width: 1040px) {
  .chataka-review-title h1{
     line-height: 5rem;
     font-size: clamp(3.5rem, 8vw, 6rem);
  }

  .chataka-review-subtitle span{
    font-size: clamp(2.2rem, 5vw, 3rem);
    text-align: center;
  }

  .chataka-review-description p{
    text-align: center;
  }

}


.slide-in {
  transform: translateY(120px);
  transition: transform 0.8s ease-out;
  will-change: transform;
  overflow-anchor: none;
}


.slide-in.active {
  transform: translateY(0);
}


