@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "poppins";
  scroll-behavior: smooth;
}

body {
  height: 100vh;
  width: 100%;
  background: #cecece;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  padding: 20px 10%;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  background: #e8e7e7;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.header a span {
  color: #25ad61;
}

.header .navbar a {
  color: #000;
  text-decoration: none;
  margin-left: 35px;
  font-size: 18px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 5px;
}

.activity-section i {
  color: #222;
  font-size: 25px;
  margin-left: 20px;
  cursor: pointer;
  padding: 10px;
  border-radius: 50px;
  background-color: #25ad61;
}

.activity-section i:hover {
  background: #25ad61;
  color: #fff;
}

.btn {
  height: 40px;
  width: 140px;
  border-radius: 8px;
  background: #121b46;
  color: #fff;
  font-size: 16px;
  outline: none;
  border: 2px solid #121b46;
  cursor: pointer;
  font-weight: 600;
  z-index: 1;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #e8e7e7;
  height: 100%;
  width: 00%;
  z-index: 1;
}

.btn:hover::before {
  width: 100%;
}

.btn:hover {
  color: #121b46;
}

.btn-explore {
  background: transparent;
  color: #121b46;
  margin-left: 20px;
}

.btn-explore::before {
  background: #121b46;
}

.btn-explore:hover {
  background: #fff;
}

section {
  padding: 10rem 9% 2rem;
  background: #e8e7e7;
}

.home-section {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home-section .text-content h5 {
  font-size: 20px;
  color: #25ad61;
  font-weight: 500;
}

.home-section .text-content h2 {
  font-size: 75px;
  color: #3d3f56;
  font-weight: 600;
}

.home-section .text-content p {
  max-width: 600px;
  color: #222;
  font-weight: 500;
}

.home-section .text-content .btn {
  margin-top: 20px;
}

.home-section .image-section img {
  width: 40vw;
  animation: Bounce 4s ease forwards infinite;
}

@keyframes Bounce {
  0% {
    transform: translateY(-24px) scale(0.5);
  }

  50% {
    transform: translateY(0px) scale(1);
  }

  100% {
    transform: translateY(-24px) scale(0.5);
  }
}

.home-section .image-section .shadow {
  background: rgba(0, 0, 0, 0.4);
  height: 20px;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  filter: blur(5px);
  width: 40vw;
  animation: Bounce 4s ease forwards infinite;
}

.Dishe-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  padding: 10rem 0% 3rem;
}

.food-image img {
  width: 280px;
}

.heading {
  font-size: 36px;
  text-align: center;
}

.heading span {
  color: #25ad61;
}

.dishGallery {
  display: flex;
  justify-content: center;
}

.dishGallery .food-image {
  height: 300px;
  width: 280px;
  padding: 0 25px 0 0;
  box-shadow: 0 0 3px #222;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  margin: 10px;
}

.food-image img {
  height: 290px;
  position: absolute;
  top: -60%;
}

.inner-text {
  margin-top: 110px;
  text-align: center;
}

.inner-text h2 {
  font-size: 25px;
}

.inner-text p {
  font-size: 12px;
  text-align: center;
  max-width: 200px;
  color: #555;
}

.price-section {
  margin-top: 10px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-section span {
  height: 35px;
  width: 90px;
  border: 2px solid #25ad61;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #25ad61;
  cursor: pointer;
}

.price-section span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 00%;
  background: #25ad61;
  z-index: -1;
  transition: 0.3s;
}

.price-section span:hover {
  color: #fff;
}

.price-section span:hover::before {
  width: 100%;
}

.price-section span::nth-child(2) {
  background: #25ad61;
  color: #fff;
}

.price-section span::nth-child(2)::before {
  background: #e8e7e7;
  color: #25ad61;
}

.about-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100vh;
  flex-direction: column;
}

.about-section .chef-details {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.about-section h2 {
  margin-bottom: 40px;
}

.chef-image {
  height: 420px;
  width: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  bottom: 50px;
  cursor: pointer;
}

.chef-image-2 {
  height: 420px;
  width: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  bottom: 50px;
  cursor: pointer;
}

.chef-image .image-1 {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #c1c1c1;
  position: relative;
  border-radius: 20px;
  border: 10px solid #25ad61;
}

.image-1 img {
  height: 380px;
  position: absolute;
  bottom: 0;
}
.text-content-1 {
  height: 100%;
  width: 100%;
  bottom: 0;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: linear-gradient(rgba(0, 0, 0, 0.3), #c1c1c1);
  border-radius: 10px;
  transition: 0.3s ease;
}

.chef-image:hover .text-content-1 {
  bottom: 0;
}

.text-content-1 .effect {
  position: absolute;
  bottom: 20px;
}

.text-content-1 span {
  font-size: 32px;
  font-weight: 600;
  font-variant: small-caps;
}

.text-content-1 p {
  max-width: 400px;
  font-size: 15px;
  font-weight: 500;
  color: #555;
}

.text-content-1 .text-p {
  font-size: 12px;
  font-weight: normal;
}
.facility-section {
  height: 100vh;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
.icon-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  margin-bottom: 50px;
}
.icon-text {
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.4);
  height: 300px;
  width: 100%;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: 2px solid #e8e7e7;
  cursor: pointer;
  flex-direction: column;
  margin-top: auto 10px;
  scale: 0.9;
  transform: 0.3s;
}

.icon-text:hover {
  scale: 1;
  border: 2px solid;
}
.icon-text svg {
  height: 100px;
  width: 100px;
  color: #25ad61;
}

.icon-text h2 {
  margin-top: 5px;
}

.icon-text p {
  color: #555;
}
