@import url("https://fonts.googleapis.com/css2?family=Carattere&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
html {
  -webkit-tap-highlight-color: transparent;
}
body {
  font-family: Poppins, sans-serif;
  background-color: #ede5df;
  min-height: 100vh;
  position: relative;
}
.top {
  position: fixed;
  bottom: 8vh;
  right: 20px;
  z-index: 12;
  border-radius: 30%;
  color: white;
  height: 40px;
  width: 40px;
  line-height: 40px;
  display: none;
  text-align: center;
  background-color: #ff9100;
  outline: none;
  cursor: pointer;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.192);
  animation: bounce 1s ease infinite;
}

@keyframes bounce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.top i {
  font-size: 1.2rem;
}
.show-scroll {
  display: inline-block;
}
a {
  text-decoration: none;
  color: inherit;
}
.nav-header {
  width: 100%;
  background: linear-gradient(to right, #ff803b, #ffb325);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  box-shadow: 0px 0px 15px black;
  /* margin-bottom: 1.8rem; */
}
.nav-header .logo {
  text-transform: capitalize;
  color: #fff;
  font-size: 2.5rem;
  font-family: "Leckerli One", cursive;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
nav ul li {
  margin-right: 40px;
  text-transform: capitalize;
  overflow: hidden;
  padding: 8px 5px;
}
.nav-links {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  padding: 10px 5px;
  position: relative;
}
.nav-links:hover {
  color: #f3edea;
}
.nav-links span {
  width: 100%;
  position: absolute;
  bottom: 2px;
  left: -110%;
  height: 3px;
  background-color: #f3edea;
  transition: left 0.5s;
}
.nav-links:hover > span {
  left: 0;
}
.nav-header i {
  font-size: 1.8rem;
  cursor: pointer;
}
.nav-header .menu-bar {
  display: none;
}
.nav-header .close {
  display: none;
}
.banner {
  height: 70vh;
  padding: 25px;
  background-color: #444;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(./images/bg-5.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}
.banner .catch-phrase {
  color: white;
  font-size: 3rem;
  /* font-weight: 600; */
  letter-spacing: 2px;
  margin-bottom: 3rem;
  padding-bottom: 0.5rem;
  text-shadow: 0px 0px 15px black;
  text-transform: capitalize;
  line-height: 3.5rem;
  text-align: center;
  font-family: "Carattere", cursive;
  border-bottom: 5px solid #ff9100;
}
.catch-phrase::first-letter {
  font-size: 4.5rem;
}
.banner .explore-btn {
  background-color: #ff9100;
  color: #fff;
  border-radius: 15px;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 1rem;
  display: inline-block;
  border: none;
  outline: none;
  padding: 6px 35px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 10px 0 rgba(97, 31, 31, 0.3);
  font-family: Poppins, sans-serif;
}
.banner .explore-btn:hover {
  background-color: #e68506;
}

.section-center {
  padding: 48px 40px;
  max-width: 1050px;
  margin: 0 auto;
}
.catalogue-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.search-form {
  width: 18.5rem;
  height: 40px;
  display: flex;
  align-items: center;
  /* background-color: green; */
}
.search-form .search-box {
  width: 100%;
  height: 100%;
  padding: 10px;
  background: none;
  outline: none;
  border: 2px solid rgb(131, 131, 131);
  font-family: Poppins, sans-serif;
  font-size: 12px;
}

.search-btn {
  background-color: #ff9100;
  color: #fff;
  text-transform: capitalize;
  font-weight: 500;
  display: inline-block;
  border: none;
  height: 100%;
  padding: 6px 8px;
  cursor: pointer;
  font-family: Poppins, sans-serif;
}
.title {
  display: inline-block;
  text-transform: capitalize;
  color: #333;
  font-size: 1.3em;
  padding-bottom: 0.5rem;
  position: relative;
}
.title::after {
  content: " ";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 0.25rem;
  background-color: #ff9100;
}
.search-result-text {
  color: rgb(111, 111, 111);
  font-size: 12px;
  margin: 0 0 2rem 2rem;
  text-align: left;
  font-style: italic;
}
.container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.food-container {
  flex-basis: 30%;
  min-width: 250px;
  width: 250px;
  background-color: #ede5df;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s;
  margin-right: 1rem;
  margin-bottom: 2rem;
  padding: 1rem 0.5rem;
  /* height: 445px; */
  height: auto;
  cursor: pointer;
}
.food-container:hover {
  transform: translateY(-5px);
}
.food-container .img {
  width: 96%;
  height: 180px;
  object-fit: cover;
  display: block;
  text-align: center;
  margin: 0 auto;
  border-radius: 5px;
  margin-bottom: 1.5rem;
}
.food-container .food-title {
  color: #333;
  margin: 0.2rem 0;
  text-align: center;
  font-size: 1.2rem;
  overflow: hidden;
  display: -webkit-box;
  /* text-overflow: ellipsis; */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.food-container .desc {
  font-size: 0.8rem;
  text-align: center;
  color: #747474;
  margin: 1rem 0 0 0;
  padding: 0 0.4rem;
  width: 100%;
  font-weight: normal;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.food-container .read-more {
  padding: 0 0.4rem;
  font-size: 0.8rem;
  color: #747474;
  display: inline-block;
  text-align: center;
  width: 100%;
  text-decoration: underline;
  /* pointer-events: auto; */
}
.redirect {
  color: rgb(24, 54, 114);
  font-weight: normal;
}

.footer {
  width: 100%;
  text-align: center;
  /* line-height: 20vh; */
  background-color: #333;
  height: 35vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}
.footer p {
  color: #acacac;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  /* flex-direction: column; */
}
.footer-links {
  text-decoration: none;
  display: inline-block;
  color: #acacac;
  border: 1px solid #acacac;
  text-align: center;
  line-height: 35px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
}
.footer-links:hover {
  background-color: rgb(43, 43, 43);
}
.waiting {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 1rem;
}

.preloader {
  position: relative;
  overflow: hidden;
}
.preloader img {
  width: 120px;
}
.preloader::after {
  content: "";
  position: absolute;
  background-color: #ede5df;
  width: 100%;
  height: 100px;
  top: 50%;
  transform: translateY(-50%);
  animation: move 1s infinite;
}
.waiting-text {
  color: rgb(77, 77, 77);
  transform: translateY(-30px);
  font-weight: 500;
}
.waiting-text-search {
  color: rgb(77, 77, 77);
  margin: 1.5rem 0;
  text-align: center;
  font-weight: 500;
  display: block;
}
.waiting-icon {
  display: block;
  margin: 0 auto;
  font-size: 2.5rem;
  color: rgb(77, 77, 77);
}
@keyframes move {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
.load-more-btn {
  box-shadow: 2px 2px 10px rgba(70, 15, 15, 0.2);
  text-shadow: 0px 0px 1px rgba(70, 15, 15, 0.2);
  /* background-color: #ff9100; */
  color: #ff9100;
  outline: none;
  border: 2px solid #ff9100;
  font-weight: 500;
  display: block;
  border-radius: 5px;
  height: 100%;
  padding: 10px 15px;
  cursor: pointer;
  margin: auto;
  font-family: Poppins, sans-serif;
  display: none;
  background: none;
}

.show-load {
  display: block;
}
/* -------- about page -------- */

.content {
  color: #666666;
  font-size: 1rem;
  line-height: 1.8rem;
  margin-bottom: 15px;
}
.sub-section {
  margin-bottom: 3.8rem;
}
.contact-section .title {
  margin-bottom: 3rem;
}
.contact {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  flex-wrap: wrap;
}
.contact-box {
  flex-basis: 30%;
  max-width: 280px;
  margin-bottom: 2.4rem;
}
.contact-box .btn {
  width: 50px;
  height: 50px;
  background-color: #f8f2f2;
  border-radius: 50%;
  text-align: center;
  margin: 0 auto 1.7rem;
}
.contact-box .btn i {
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
  color: #ff9100;
  line-height: 50px;
  font-size: 20px;
}
.contact-box p {
  text-align: center;
  color: #333;
  font-size: 0.8rem;
}
.contact-form {
  max-width: 30rem;
  display: block;
  margin: 0 auto;
  background-color: #f2ece6;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.227);
  padding: 20px;
}
.contact-form .form-group {
  padding-bottom: 20px;
}
.contact-form .form-group label {
  color: rgb(68, 68, 68);
  font-size: 14px;
  text-transform: capitalize;
  display: block;
  padding-bottom: 5px;
}
.contact-form .form-group input,
.contact-form .form-group textarea {
  font-size: 14px;
  width: 100%;
  outline: none;
  border: 1px solid rgb(211, 211, 211);
  padding: 0.5rem;
  background: rgb(245, 245, 245);
  color: #333;
  font-family: Poppins, sans-serif;
}
.contact-form .form-group input {
  height: 35px;
}
.contact-form .form-group textarea {
  resize: none;
}
.contact-form .submit-btn {
  display: block;
  margin-left: auto;
  margin-bottom: 0.8rem;
  background-color: #ff9100;
  color: #fff;
  text-transform: capitalize;
  font-weight: 500;
  border: none;
  padding: 6px 8px;
  cursor: pointer;
  font-family: Poppins, sans-serif;
}

#status {
  color: #fff;
  text-align: center;
  width: 100%;
  opacity: none;
  font-size: 12px;
  padding: 3px 0;
  text-transform: capitalize;
  opacity: 0;
}

.form-success {
  background-color: rgb(15, 187, 72);
  animation: status 3s ease;
}
.form-fail {
  background-color: rgb(226, 39, 39);
  animation: status 3s ease;
}
@keyframes status {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media screen and (max-width: 700px) {
  body {
    min-height: 100vh;
  }
  .nav-header {
    padding: 0.8rem 1rem;
    position: relative;
  }
  .nav-header .logo {
    font-size: 1.8rem;
  }
  .nav-header .menu-bar {
    color: #fff;
    font-size: 20px;
    display: inline-block;
  }
  .nav-container {
    position: relative;
    overflow: hidden;
  }
  nav {
    position: fixed;
    background-color: rgb(63, 63, 63);
    top: 0;
    right: -100%;
    width: 100%;
    min-height: 100vh;
    z-index: 10;
    padding: 2rem 0;
    transition: right 0.4s;
  }
  nav ul {
    list-style: none;
    display: block;
    margin: 0 auto;
    font-size: 18px;
  }
  nav ul li {
    display: block;
    text-align: center;
    margin-right: 20px;
    text-transform: capitalize;
    overflow: hidden;
    padding: 8px 5px;
    margin: 2rem 0;
  }
  .nav-links {
    display: inline-block;
    padding: 1rem 4rem;
    color: rgb(202, 202, 202);
  }
  .nav-links > span {
    display: none;
  }
  .nav-header .close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 12;
    color: #fff;
    display: block;
  }
  .show-link {
    right: 0;
  }
  .show-link .close {
    display: block;
    color: rgb(202, 202, 202);
    transition: transform 0.4s;
  }
  .close:hover {
    transform: rotate(90deg);
  }
  .banner .catch-phrase {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    line-height: 2.5rem;
    border-bottom: 3px solid #ff9100;
  }
  .catch-phrase::first-letter {
    font-size: 3.5rem;
  }
  .banner .explore-btn {
    font-size: 0.8rem;
    padding: 6px 30px;
  }
  .section-center {
    padding: 28px 70px;
  }
  .search-form {
    width: 100%;
  }
  .section-center .title {
    font-size: 1.2rem;
    margin: 0 auto 2rem auto;
    max-width: 200px;
  }
  .search-form {
    margin: 0 auto;
  }
  .search-result-text {
    margin: 0;
    margin-bottom: 2rem;
    width: 100%;
    text-align: center;
  }
  .container {
    justify-content: center;
  }
  .food-container {
    flex-basis: 100%;
    margin-right: 0;
  }
  .content {
    font-size: 0.8rem;
    line-height: 1.3rem;
  }
  .contact-box {
    flex-basis: 100%;
  }
}
@media screen and (max-width: 500px) {
  .banner {
    height: 50vh;
    padding: 20px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url(./images/small-bg-1.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .banner .catch-phrase {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.8rem;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid #ff9100;
  }
  .catch-phrase::first-letter {
    font-size: 2.2rem;
  }
  .section-center {
    padding: 28px 20px;
  }
  .food-container {
    flex-basis: 100%;
  }
  .section-center .title {
    font-size: 1rem;
    max-width: 180px;
  }
}
