@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --primary-color: #00c604;
  --secondry-color: #151b20;
  --white-color: #fff;
  --black-color: #0e1317;
  --text-primary: #00c604;
  --text-secondry: #151b20;
  --text-white: #fff;
  --text-color: #cfd3d7;
  --text-gray: #999;
  --base-font: "Roboto", sans-serif;
  --heading-font: "Lobster Two", sans-serif;
}

a {
  text-decoration: none;
}

a:hover {
  color: var(--primary-color) !important;
}

ul {
  margin: 0;
  padding: 0;
}

body,
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--base-font);
  font-size: 100%;
  font-weight: 400;
}
::-webkit-scrollbar {
  width: 6.8px;
}
::-webkit-scrollbar-track {
  background: var(--white-color);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}
img {
  width: 100%;
  height: auto;
}
h1 {
  font-size: 70px;
  font-weight: 900;
  margin-bottom: 48px;
  font-family: var(--heading-font);
  color: var(--text-white);
  text-transform: capitalize;
}
h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  font-family: var(--heading-font);
  color: var(--text-white);
  text-transform: capitalize;
}
h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  font-family: var(--heading-font);
  color: var(--text-secondry);
  text-transform: capitalize;
}
h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: var(--heading-font);
  color: var(--text-primary);
  text-transform: capitalize;
}
p {
  font-size: 16px;
  color: var(--text-color);
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 1px;
}
.cmn-btn {
  padding: 10px 30px;
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
  box-shadow: 0 2px 10px -1px rgba(0 0 0 / 10%);
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  background-color: var(--primary-color);
  border: 3px solid var(--primary-color);
  color: var(--text-white);
  border-radius: 10px;
}
.cmn-btn:hover {
  background-color: transparent;
  color: var(--text-primary);
}
.wrapper {
  padding-top: 100px;
  padding-bottom: 100px;
}
.text-content {
  width: 70%;
  margin: 0 auto;
}

.navigation-wrap {
  position: fixed;
  width: 100%;
  left: 0;
  z-index: 999;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.navigation-wrap .nav-logo {
  width: 208px;
}
.navigation-wrap .nav-item {
  padding: 0 10px;
  transition: all 200ms linear;
}
.navbar-toggler:focus {
  outline: unset;
  border: unset;
  box-shadow: none;
}
.nav-link {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--text-color);
  letter-spacing: 1px;
}
.navigation-wrap .cmn-btn {
  padding: 5px 23px;
  box-shadow: none;
  margin-left: 10px;
}
.navigation-wrap.scroll-on {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--black-color);
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  transition: all 0.15s ease-in-out 0s;
}

.top-banner {
  width: 100%;
  height: 100%;
  background: url("images/bg-1.jpg") no-repeat center;
  background-size: cover;
  padding: 238px 0 86px;
}

.counter-section {
  background-color: var(--black-color);
  padding: 40px 0;
}
.counter-section h2 {
  color: var(--text-primary);
}
.counter-section p {
  color: var(--text-white);
  text-transform: uppercase;
  margin-bottom: 0;
}
.counter-img img {
  max-width: 150px;
}

.about-section {
  background-color: var(--secondry-color);
}
.about-section ul li {
  font-size: 16px;
  color: var(--text-color);
  line-height: 32px;
  position: relative;
  margin-left: 30px;
}
.about-section ul li::before {
  position: absolute;
  left: -35px;
  color: var(--text-primary);
  font-size: 20px;
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  display: inline-block;
  font-weight: 900;
}

.story-section {
  width: 100%;
  height: 450px;
  background: url("images/bg-2.jpg") no-repeat center;
  background-size: cover;
  padding-top: 100px;
  text-align: center;
}
.explore-food {
  background-color: var(--secondry-color);
}
.explore-food .card {
  background-color: transparent;
  border-radius: 15px;
  border: 2px dashed var(--primary-color);
}
.explore-food .card img {
  border-radius: 15px 16px 0 0;
  object-fit: cover;
}
.explore-food .card span {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--primary-color);
  margin-bottom: 24px;
}
.explore-food .card span del {
  color: var(--text-gray);
  margin-left: 8px;
}

.testimonial-section {
  background: url("images/bg-4.jpg") no-repeat center top;
  background-size: cover;
}
.testimonial-section .carousel-item {
  margin-top: 48px;
  padding: 160px 50px;
  background-color: var(--black-color);
  border-radius: 15px;
  text-align: center;
}
.testimonial-section .carousel-item img {
  max-width: 80px;
  border-radius: 50%;
  padding: 5px;
  border: 2px solid var(--primary-color);
}
.testimonial-section .carousel-item .carousel-caption p {
  font-size: 21px;
  line-height: 33px;
  padding: 10px 11%;
}
.testimonial-section .carousel-indicators {
  bottom: -63px;
}
.testimonial-section .carousel-indicators button {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--primary-color);
  margin-top: 10px;
}

.team {
  background-color: var(--secondry-color);
}
.team .card {
  background-color: var(--black-color);
  border-radius: 10px;
  border: 4px solid var(--primary-color);
  text-align: center;
}
.team .card img {
  border-radius: 10px 10px 0 0;
}
.team h4 {
  color: var(--text-primary);
  text-transform: uppercase;
}
.team h6,
.team p {
  color: var(--text-white);
}
.social-icon i {
  font-size: 18px;
  transition: 0.3s all ease;
  margin: 5px;
  background-color: var(--primary-color);
  color: var(--text-white);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  line-height: 35px;
}
.social-icon i:hover {
  background-color: var(--white-color);
  color: var(--text-primary);
}

.book-food {
  width: 100%;
  background: url("images/bg-3.jpg") no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  background-position: 0 72px;
  padding: 70px 0;
  overflow: hidden;
}
.book-food h2 {
  color: var(--text-primary);
}

.download-app {
  width: 100%;
  background: url("images/bg-5.jpg") no-repeat center;
  background-size: cover;
}

.footer {
  background: var(--black-color);
}
.footer .footer-link {
  font-size: 16px;
  color: var(--text-white);
  padding: 0 30px;
}
.footer a {
  font-size: 24px;
  color: var(--text-white);
  padding: 0 6px;
}

.text-light a {
  font-size: 16px;
  color: var(--text-white);
}

hr {
  color: var(--text-white);
  width: 100%;
}

.custom-toggler {
  width: 30px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: none;
  background: transparent;
  padding: 0;
  z-index: 1001;
  outline: none !important;
  box-shadow: none !important;
}

.bar {
  width: 100%;
  height: 3px;
  background-color: white;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.custom-toggler.active .bar:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}
.custom-toggler.active .bar:nth-child(2) {
  opacity: 0;
}
.custom-toggler.active .bar:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
}
.menu-overlay.active {
  display: block;
}

.nav-item .active {
  color: var(--text-white) !important;
}

.nav-item .active:hover {
  color: var(--text-primary) !important;
}

/* For Shinning Effect */
.shine {
  position: relative;
  overflow: hidden;
}

.shine::after {
  content: "";
  position: absolute;
  top: -110%;
  left: -210%;
  width: 200%;
  height: 200%;
  opacity: 0;
  transform: rotate(30deg);
  background: rgba(255, 255, 255, 0.13);
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.13) 0%,
    rgba(255, 255, 255, 0.13) 77%,
    rgba(255, 255, 255, 0.5) 92%,
    rgba(255, 255, 255, 0) 100%
  );
}

.shine:hover::after {
  opacity: 1;
  top: -30%;
  left: -30%;
  transition-property: left, top;
  transition-duration: 0.7s, 0.7s, 0.15s;
  transition-timing-function: ease;
}

.shine:active::after {
  opacity: 0;
}

/* Media Query Starts Here */
@media (max-width: 991px) {
  h1 {
    font-size: 35px;
  }
  h2 {
    font-size: 22px;
  }
  .text-content {
    width: 100%;
  }
  .wrapper {
    padding-top: 68px;
    padding-bottom: 52px;
  }
  .navigation-wrap {
    text-align: center;
    background-color: var(--black-color);
  }
  .navigation-wrap .navbar-toggler {
    color: var(--white-color);
  }
  .navigation-wrap .nav-link {
    line-height: 30px;
  }
  .top-banner {
    padding: 100px 0 70px;
  }
  .testimonial-section .carousel-item .carousel-caption p {
    padding: 0;
    font-size: 1.16px;
  }
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #212529;
    transition: right 0.3s ease-in-out;
    display: block !important;
    padding: 80px 20px;
    z-index: 999;
  }
  .navbar-collapse.show {
    right: 0;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 30px;
  }
  .navigation-wrap .navbar-brand img {
    width: 192px;
  }
  .story-section {
    height: auto;
    padding: 48px 0;
  }
  .testimonial-section .carousel-item {
    padding: 116px 50px;
  }
}

@media (max-width: 330px) {
  .testimonial-section .carousel-item {
    padding: 208px 50px;
  }
}
