* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Onest", sans-serif;
}

body {
  background-color: black;
  font-family: "Onest", sans-serif;
  width: 100%;
  overflow-x: hidden;
}

.logo {
  font-size: 1.9rem;
  font-weight: bold;
  font-family: "Parisienne", cursive;
  color: #ffffff;
  position: relative;
  left: -300px;
}

.logo1 {
  opacity: 0;
}

.mainCont {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
}

.mainCont .img1 {
  height: 85%;
  position: absolute;
  left: 0%;
  top: 2%;
}

.mainCont .img2 {
  height: 48%;
  position: absolute;
  left: 11%;
  top: 29%;
}

.txtCont {
  color: white;
  position: absolute;
  left: 70%;
  top: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
}

.mainCont h1 {
  font-size: 2.8rem;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUpFadeIn 0.8s ease-out 0.5s forwards;
}

.mainCont h5 {
  color: white;
  font-size: 1rem;
  text-align: center;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUpFadeIn 0.8s ease-out 0.7s forwards;
}

@keyframes slideUpFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 1rem 2rem;
  color: white;
  width: 100%;
  height: auto;
  position: fixed;
  top: 2%;
  left: 0;
  border-radius: 500px;
  z-index: 1000;
  box-shadow: 5px 12px 35px rgba(113, 159, 5, 0.108);
  backdrop-filter: blur(10px);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 6rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links li {
  font-size: 1em;
  color: white;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
  cursor: pointer;
  padding: 5px 0;
}

.nav-links li::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #729f05;
  transition: width 0.3s ease-out;
}

.nav-links li:hover::after {
  width: 100%;
}

.nav-links li:hover {
  color: #9fdd0f;
}

.nav-links li:hover {
  color: #729f05;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 5px;
}

.orderNow {
  margin: 50px;
  font-family: "Onest", sans-serif;
  transform: translateX(-50%);
  background: linear-gradient(to right, #6b9704, #9fdd0f);
  color: white;
  padding: 12px 30px;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(114, 159, 5, 0.3);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUpFadeIn 1.2s ease-out 1.2s forwards;
  transition: transform 0.15s ease;
}

.orderNow::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: white;
  transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.orderNow:hover {
  transform: translateX(-50%) translateY(-5px) scale(1.05);
  box-shadow: 0 12px 35px rgba(114, 159, 5, 0.6);
  color: #729f05;
}

.orderNow:hover::before {
  left: 0;
}

.orderNow:active {
  transform: translateX(-50%) scale(0.9);
}

.contTwo {
  position: relative;
  min-height: 100vh;
  padding-top: 20vh;
}

.contTwo .background-img {
  position: absolute;
  top: -28%;
}

.contTwo h2 {
  color: white;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-top: -10px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.contTwo h2.animate {
  opacity: 1;
  transform: translateY(0);
}

.contTwo h3 {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  margin-top: -40px;
  opacity: 1;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.contTwo h3.animate {
  opacity: 1;
  transform: translateY(0);
}

.imgCont {
  position: relative;
  top: 120px;
  align-self: center;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 80%;
  max-width: 800px;
  height: 400px;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out 0.3s;
  padding: 30px;
  background: #ffffff0c;
  box-shadow: 0 12px 35px rgba(113, 159, 5, 0.297);
}

.imgCont.animate {
  opacity: 1;
  transform: translateY(0);
}

.imgBox {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.imgBox .food-item {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.imgBox p {
  position: absolute;
  left: 44%;
  top: 30%;
  font-size: 1.9rem;
  font-weight: 600;
  animation: none;
  color: white;
}

.imgBox .food-item img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.imgBox .food-item:hover {
  transform: scale(1.02);
}

.imgBox h5 {
  position: absolute;
  left: 44%;
  top: 41%;
  font-size: 1.1rem;
  font-weight: 600;
  animation: none;
  color: white;
}

.imgBox h5 span {
  color: #729f05;
  font-size: 1.9rem;
}

.imgBox h6 {
  position: absolute;
  left: 44%;
  top: 53%;
  font-size: 0.85rem;
  font-weight: 500;
  animation: none;
  color: white;
  width: 50%;
}

.contThree img {
  position: absolute;
  top: 175%;
  width: 100%;
}

.video-container {
  position: absolute;
  top: 230%;
  left: 12%;
  transform: scale(0.5); /* Scale the video to 50% size */
  transform-origin: top left;
}

.video-container video {
  display: block;
  height: 600px;
  border-radius: 50px;
  box-shadow: 0 12px 35px rgba(113, 159, 5, 0.425);
}

.contThree h1 {
  position: absolute;
  top: 235%;
  right: 13%;
  color: white;
  font-size: 1.5rem;
}

.contThree h1 span {
  color: #729f05;
  font-size: 2.35rem;
}

.contThree h6 {
  position: absolute;
  top: 246%;
  right: 15.75%;
  color: white;
  font-size: 1rem;
  width: 28%;
  font-weight: 500;
}

.contFour img {
  position: absolute;
  top: 270%;
  width: 101%;
}

.endText {
  position: absolute;
  top: 296%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1rem;
  text-align: center;
  width: 80%;
  height: 50%;
  line-height: 19px;
}

.endText h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.endText h4 {
  position: absolute;
  left: 5%;
  top: 30%;
  font-size: 0.8rem;
  font-weight: 400;
}

.endText h4 span {
  font-weight: 700;
}

.endText h5 {
  position: absolute;
  left: 8%;
  top: 62%;
  font-size: 0.8rem;
  font-weight: 400;
}

.endText h5 span {
  font-weight: 700;
}

.endText h6 {
  position: absolute;
  left: 40%;
  top: 30%;
  font-size: 0.8rem;
  font-weight: 400;
}

.endText h6 span {
  font-weight: 700;
}

.socials {
  position: absolute;
  top: 290%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
}

.endText p {
  font-size: 0.7rem;
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.endText ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  position: absolute;
  right: 10%;
  top: 28%;
  font-size: 1rem;
  font-weight: 500;
}

.endText ul li {
  transition: color 0.4s ease;
}

.endText ul span {
  font-weight: 800;
}
.endText ul li:hover {
  color: #729f05;
  cursor: pointer;
}

.ordernow {
  position: absolute;
  right: 10%;
  top: -23%;
  font-family: "Onest", sans-serif;
  background: linear-gradient(to right, #6b9704, #9fdd0f);
  color: white;
  padding: 10px 30px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(114, 159, 5, 0.3);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  transform: translateY(30px);
  transition: transform 0.15s ease;
}

.ordernow::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: white;
  transition: left 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.ordernow:hover {
  box-shadow: 0 12px 35px rgba(114, 159, 5, 0.6);
  color: #729f05;
}

.ordernow:hover::before {
  left: 0;
}
