@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Lobster&family=Sanchez:ital@0;1&display=swap");

@font-face {
  font-family: "Metropolis Thin";
  src: url("/font/metropolis/Metropolis-Thin.otf") format("otf"),
    url("/font/metropolis/Metropolis-Thin.otf") format("otf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Metropolis Medium";
  src: url("/font/metropolis/Metropolis-Medium.otf") format("otf"),
    url("/font/metropolis/Metropolis-Medium.otf") format("otf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Metropolis Regular";
  src: url("/font/metropolis/Metropolis-Regular.otf") format("otf"),
    url("/font/metropolis/Metropolis-Regular.otf") format("otf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Metropolis Bold";
  src: url("/font/metropolis/Metropolis-Bold.otf") format("otf"),
    url("/font/metropolis/Metropolis-Bold.otf") format("otf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Metropolis SemiBold";
  src: url("/font/metropolis/Metropolis-SemiBold.otf") format("otf"),
    url("/font/metropolis/Metropolis-SemiBold.otf") format("otf");
  font-weight: normal;
  font-style: normal;
}

.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.bebas-neue-bold {
  font-family: "Bebas Neue", sans-serif;
  font-weight: bold;
  font-style: normal;
}

.lobster-regular {
  font-family: "Lobster", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.metropolis_thin {
  font-family: "Metropolis Thin", sans-serif;
}
.metropolis_regular {
  font-family: "Metropolis Regular", sans-serif;
}
.metropolis_medium {
  font-family: "Metropolis Medium", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.metropolis_semibold {
  font-family: "Metropolis SemiBold", sans-serif !important;
  font-weight: 500;
  font-style: normal;
}
.metropolis_bold {
  font-family: "Metropolis Bold", sans-serif !important;
  font-weight: bold;
  font-style: normal;
}

.sanchez-regular {
  font-family: "Sanchez", serif;
  font-weight: 400;
  font-style: normal;
}

.sanchez-regular-italic {
  font-family: "Sanchez", serif;
  font-weight: 400;
  font-style: italic;
}

:root {
  --color1: #fe7c1a;
  --color2: #da542a;
  --color3: #f5f0e1;
  --color4: #f79480;
  --color5: #ef9f37;
  --color6: #e5d7b8;
  --color7: #eae4d3;
  --color8: #827d6c;
  --text1: #383838;
  --btn-border-width: 0px;
}

p {
  font-family: "Metropolis Regular", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: var(--text1);
}

html,
body {
  width: 100%;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
}

h3 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--text1);
}

button[data-border="true"] {
  --btn-border-width: 2px;
}

button[data-border="false"] {
  --btn-border-width: 0px;
}

button[data-color="var(--color2)"] {
  --btn-bg: var(--color2);
  --btn-color: white;
  --btn-border: var(--color2);
  --btn-hover-bg: transparent;
  --btn-hover-color: var(--color2);
  --btn-hover-border: var(--color2);
}

button[data-color="transparent"] {
  --btn-bg: transparent;
  --btn-color: var(--color2);
  --btn-border: var(--color2);
  --btn-hover-bg: var(--color2);
  --btn-hover-color: white;
  --btn-hover-border: var(--color2);
}

button[data-color="var(--color3)"] {
  --btn-bg: var(--color3);
  --btn-color: var(--text1);
  --btn-border: var(--color3);
  --btn-hover-bg: transparent;
  --btn-hover-color: var(--color3);
  --btn-hover-border: var(--color3);
}

button {
  font-family: "Bebas Neue", sans-serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
  padding: 6px 28px !important;
  text-wrap-mode: nowrap !important;
  border-radius: 100px !important;
  display: flex;
  align-items: center;
  gap: 4px;
  height: max-content !important;
  width: max-content !important;
  color: var(--btn-color) !important;
  background: var(--btn-bg) !important;
  border-width: var(--btn-border-width) !important;
  border-style: solid;
  border-color: var(--btn-border) !important;
  transition: 0.3s;
  line-height: 22px !important;
  span {
    margin-top: 4px;
  }

  svg path {
    transition: 0.3s;
  }

  &:hover {
    background-color: var(--btn-hover-bg) !important;
    color: var(--btn-hover-color) !important;
    border-color: var(--btn-hover-border) !important;
    svg path {
      fill: var(--btn-hover-color);
    }
  }
}

nav ul li {
  color: var(--text1);
}

.dropdown {
  position: relative;
  .dropdown-component {
    display: none;
    position: absolute;
    bottom: 0px;
    transform: translateY(100%);
    width: max-content;
    background: white;
    box-shadow: 0px 3px 6px 0px #383838;

    .dropdown-item {
      padding: 3px 16px;
      transition: 0.3s;

      &:hover {
        background: var(--color6);
      }
    }
  }

  &:hover {
    .dropdown-component {
      display: block;
    }
  }
}

.container1 {
  margin: 0 auto;
  max-width: 1920px;
  padding: 0 30px;
  width: 100%;
}

.container2 {
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 30px;
  width: 100%;
}

.menus li {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 22px;
}
.swiper-container {
  width: 100%;
  height: 100%;
}
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  /* background: #444; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  font-size: 20px !important;
  color: white;
}

.swiper-pagination-bullet-active {
  background-color: var(--color2) !important;
}

.text-shadow[data-color="white"] {
  --text-color: white;
}

.text-shadow[data-color="var(--color2)"] {
  --text-color: var(--color2);
}

.text-shadow {
  text-shadow: -2px -2px 0 var(--text-color), 2px -2px 0 var(--text-color),
    -2px 2px 0 var(--text-color), 2px 2px 0 var(--text-color),
    -3px 0 0 var(--text-color), 3px 0 0 var(--text-color),
    0 3px 0 var(--text-color), 0 -3px 0 var(--text-color);
}

.menu-slider {
  height: max-content;
}

/* faq */
.faq-body {
  transition: 0.7s;
}
.faq-active {
  animation: faqAnimation 0.3s linear 1;
}

@keyframes faqAnimation {
  0% {
    height: 0px;
  }
  100% {
    height: 100px;
  }
}

/* food items */
.food-item {
  position: relative;
  transition: 1s;

  .food-image {
    position: relative;
    height: 200px;
    padding: 10px;
    overflow: clip;

    &::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      top: 15px;
      left: -15px;
      background-image: url(../assets/images/home/all-images/bg-chicken.svg);
      background-size: cover;
      background-repeat: no-repeat;
      background-position: top right;
      z-index: 1;
      opacity: 0;
    }
    img {
      position: relative;
      z-index: 1;
    }
  }

  &:hover {
    button {
      opacity: 1;
    }

    .food-image {
      position: relative;

      &::before {
        opacity: 1;
      }
    }
  }
}

/* ////// animation /////// */
.spiner {
  transform-origin: center center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.17);
  animation: spinner linear infinite 20s;
}

@keyframes spinner {
  from {
    transform: translate(-50%, -50%) scale(1.17) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) scale(1.17) rotate(360deg);
  }
}

.left-spin {
  animation: leftspine infinite 8s ease-out;
  bottom: -250px;
  position: absolute;
  will-change: transform;
}

.right-spin {
  animation: rightspine ease-out infinite 8s;
  top: -250px;
  position: absolute;
  will-change: transform;
}

@keyframes leftspine {
  0% {
    transform: translateY(0%);
  }

  100% {
    transform: translateY(50%);
  }
}

@keyframes rightspine {
  0% {
    transform: translateY(0%);
  }

  100% {
    transform: translateY(-50%);
  }
}

.popupAnimation {
  animation: popupAnimation 3s linear 1;
  animation-timeline: forwards;
}

@keyframes popupAnimation {
  0% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* //////// menu //////// */
.menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 0;
}
.line {
  fill: none;
  stroke: var(--color2);
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}
.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}
.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

@media screen and (max-width: 786px) {
  .container1 {
    padding: 0 15px;
  }

  .container2 {
    padding: 0 15px;
  }
}
