@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Delius+Swash+Caps&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
    scroll-margin-top: 8lvh;  
}

body {
  /* background-color: black; */
  color: aliceblue;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* gap: 10vh; */
  overflow-x: hidden;
  max-width: 100vw;
  font-family: "Dancing Script", cursive;
}
.loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100lvh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  background-color: white;
  /* z-index: 1000000000000000000000000000000000000; */
}
.loaderImg {
  width: 100vw;
  height: 100vw;
}
.hide {
  display: none;
}

nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100vw;
  /* padding: 10px; */
  height: 8vh;
  position: fixed;
  top: 0px;
  background-color: transparent;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
  backdrop-filter: none;
  z-index: 10000000000;
}
.logo {
  padding-left: 10px;
}
.scrolled {
  background-color: rgba(186, 184, 184, 0.6);
  backdrop-filter: blur(10px);
}
.hamControl {
  height: 20px;
  width: 20px;
}
#ham {
  display: none;
}
#ham:checked ~ .nav-Links {
  /* right: 0px; */
  transform: translateX(0vw);
}
.links {
  padding-right: 10px;
}
.nav-Links {
  position: fixed;
  top: 0px;
  right: 0px;
  /* right: -60vw ; */
  transform: translateX(100vw);
  height: 100vh;
  width: 60vw;
  background-color: rgb(0, 0, 0);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: end;
  padding: 10px;
  transition: all 0.4s;
  z-index: 1000;
  will-change: transform;
  pointer-events: auto;
}
ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 10px;
}
li {
  list-style: none;
  border-bottom: 1px solid rgb(57, 57, 57);
  width: 100%;
  text-align: center;
  padding: 3px;
  font-size: 17px;
}
.nav-Links ul li a{
  text-decoration: none;
  color: aliceblue;
}
.hero {
  width: 100%;
  /* background-color: aliceblue; */
  height: 30vh;
  background-image: url("images/banner.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 8vh;
  display: flex;
  align-items: center;
  justify-content: start;
  position: relative;
  z-index: 1;
}
.typewriter {
  font-size: 24px;
  /* color: rgb(76, 241, 76); */
  color: aqua;
  display: flex;
  align-items: center;
}

.cursor {
  display: inline-block;
  background-color: transparent;
  width: 2px;
  height: 1.2em;
  margin-left: 5px;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  50.01%,
  100% {
    opacity: 0;
  }
}
.write {
  width: 70vw;
  margin-left: 10vw;
}
.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  
  color: black;
  margin-top: 10px;
  position: relative;
  padding: 0 20px;
  z-index: 0;
}
.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("images/heelo1.jpg") no-repeat center center/cover;
  filter: blur(8px);
  z-index: -1; /* keep it behind the content */
}

.floating-burger {
  position: absolute;
  width: 100px;
  left: -20px;
  top: 60px;
  bottom: -10px;
  z-index: 0;
  opacity: 0.6;
  /* transform: rotate(35deg); */
}
.floating-chili {
  position: absolute;
  width: 80px;
  right: 20px;
  /* top: 60px; */
  bottom: 10px;
  z-index: -1;
  opacity: 0.6;
  /* transform: rotate(-35deg); */
}

.about h3 {
  font-weight: 300;
  font-size: 20px;
  text-decoration: 1px solid underline;
  /* color: aqua ; */
}
.about p {
  text-align: center;
  margin: 10px 0;
}
.menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  color: black;
  position: relative;
  width: 100%;
}
.menu::before {
  content: ""; /* Required for pseudo-element */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit; /* Inherit the background image */
  filter: blur(2px);
  z-index: -1; /* Ensure it's behind other content */
  background-image: url(images/menu-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.menu .desc {
  text-align: center;
  margin-bottom: 10px;
}
.menu .desc h3 {
  font-size: 25px;
  color: aliceblue;
}
.menu .desc p {
  font-size: 13px;
  font-weight: 500;
  color: rgb(233 233 233);
}
.mImg {
  width: 100%;
  height: 20lvh;
}
.menuItems {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0;
}
.mItem {
  width: 100%;
  /* border: 2px solid black; */
  border-radius: 5px;
  /* box-shadow:inset 2px 2px 5px 5px grey; */
  position: relative;
}
.mHeading,
.mDesc {
  position: absolute;
  /* bottom: 10px; */
  left: 10px;
  color: aliceblue;
}
.mDesc {
  bottom: 10px;
  font-size: 13px;
  color: rgb(181, 181, 181);
}
.mHeading {
  bottom: 25px;
  font-size: 17px;
}

.hero,
.about {
  position: relative;
  z-index: 1;
}
.gallery {
  color: black;
  text-align: center;
  margin-top: 10px;
  position: relative;
}
.imgContainer {
  margin: 10px 0px;
  display: grid;
  width: 100vw;
  grid-template-columns: 30% 30% 30%;
  gap: 3vw;
  justify-content: center;
  align-items: center;
  /* padding: 0px 3vw; */
  /* gap: 3.5%; */
}
.gImg {
  height: calc(30vw);
  /* width: 30vw; */
  overflow: hidden;
  position: relative;
}

.bgZoom {
  background-image: url(images/menu-bg.jpg);
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.gImg:hover .bgZoom {
  transform: scale(1.2);
}
.gallery::before {
  content: ""; /* Required for pseudo-element */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  filter: blur(2px);
  z-index: -1; /* Ensure it's behind other content */
  background-image: url(images/gallery-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.galleryGif{
  position: absolute;
  bottom: -5lvh;
  left: -10vw;
  width: 40vw;
  
  

}
.location{
  margin-top: 30px;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  /* overflow-x: hidden; */
}
.location::before {
  content: ""; /* Required for pseudo-element */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  filter: blur(1px);
  z-index: -1; /* Ensure it's behind other content */
  background-image: url(images/location.gif);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.location h3{
  color: black;
  text-align: center;
  font-size: 25px;
  margin-top: 10px;

}
.googleMap{
  margin: 10px 0px;
  width: 90vw;
  height: 70vw;

}
.locationGif{
  position: absolute;
  top: 0;
  right: 3vw;
  width: 23vw;
  transform: rotate(45deg);
}
.locationGifCar{
  position: absolute;
  bottom: -2lvh;
  left: 3vw;
  width: 23vw;
  height: 10vw;
   object-fit: cover;
}
footer{
  background-color: rgba(50, 51, 51, .8);
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-direction: column;
  margin-top: 20px;
  padding: 10px 0px;
  color: rgb(172, 170, 170);

}
.info{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.info .logoFoot {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;

}
.logoFoot p{
  color: aliceblue;
}
.info .infoPara{
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.info .infoPara p{
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: start;
  align-items: center;
  /* width: 40vw; */
}
.opening{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
.opening .head{
  color: aliceblue;
}
.opening .body{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.opening .body div{
   display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.opening .body div h3{
  font-size: 19px;
  
}
.opening .body div p{
  font-size: 12px;

}
.footLinks ol{
  display: flex;
  gap: 5px;
}
.copyRight{
  color: aliceblue;
}
.footLinks ol li{
  border: none;
  color: aliceblue;
  margin-bottom: 20px;
}
