/* Imported base */
@import url("https://fonts.googleapis.com/css2?family=Shrikhand&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Shrikhand&display=swap");
*,
::before,
::after {
  margin: 0;
  padding: 0;
  border: none;
  text-decoration: none;
  background: none;
  list-style: none;
  color: inherit;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  display: flex;
  justify-content: center;
}

button {
  font: inherit;
  cursor: pointer;
}

.main-container {
  width: 100%;
  max-width: 1440px;
  min-width: 320px;
}

/* Imported components */
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: auto;
  height: 50px;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(
    360deg,
    rgb(147, 86, 220) 0%,
    rgb(255, 121, 218) 110%
  );
  opacity: 1;
  box-shadow: 0px 4px 10px 0 rgba(0, 0, 0, 0.25);
  transition: opacity 300ms ease-out, box-shadow 300ms ease-out;
}
.btn:hover {
  opacity: 0.8;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}

.btn--primary {
  width: 218px;
}

.btn--secondary {
  width: 186px;
}

/********** buttonHeart **********/
.btn__like {
  position: absolute;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
}
.btn__like--heart:hover {
  font-weight: bold;
  background-clip: text;
  color: transparent;
  background-image: linear-gradient(to bottom, #9356dc, #ff79da);
  transition: all 300ms ease-out;
}

.btn--homePage {
  right: 10px;
  bottom: 5px;
}

.btn--menuRestaurant {
  top: 50%;
  right: -65px;
}

.page-loader {
  z-index: 100;
  background-color: #fafafa;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  animation: disappear 2s cubic-bezier(0.9, 0.2, 0.15, 1) both;
}

@keyframes disappear {
  100% {
    opacity: 0;
    z-index: -100;
  }
}
.page-loader__dots {
  display: flex;
  gap: 1.875rem;
}

.page-loader__dot {
  width: 30px;
  height: 30px;
  border-radius: 9999px;
  animation: bounce 300ms infinite alternate;
}

.page-loader__dot:nth-child(1) {
  animation-delay: 0ms;
  background-color: #9356dc;
}

.page-loader__dot:nth-child(2) {
  animation-delay: 100ms;
  background-color: #ff79da;
}

.page-loader__dot:nth-child(3) {
  animation-delay: 200ms;
  background-color: #99e2d0;
}

@keyframes bounce {
  100% {
    transform: translateY(-2rem);
  }
}
/* Imported mixins */
/* Imported variables */
/* Imported layouts */
.header {
  position: relative;
}

.header__logo {
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
  height: 63px;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 1024px) {
  .header__logo {
    height: 96px;
    box-shadow: none;
  }
}
.header__logo--svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.footer {
  padding: 1.5rem;
  background-color: #353535;
}
.footer__container {
  color: #fff;
}

.footer__title {
  font-family: "Shrikhand", serif;
  font-style: italic;
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer__list li {
  position: relative;
}
.footer__list a:hover {
  text-decoration: underline;
}

.footer__list li:nth-child(1),
.footer__list li:nth-child(2) {
  margin-left: 30px;
}

.footer__list li:first-child::before {
  content: "\f2e7";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
}

.footer__list li:nth-child(2)::before {
  content: "\f4c4";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
}

@media screen and (min-width: 1024px) {
  .footer {
    padding: 3rem 1.5rem 1.5rem;
  }
  .footer__container {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
  .footer__title {
    margin-left: 5rem;
  }
  .footer__list {
    flex-direction: row;
    gap: 1rem;
  }
  .footer__list li:nth-child(2) {
    margin-right: 4rem;
  }
}
/* Imported pages */
.location {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  background-color: #eaeaea;
  height: 50px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .location {
    box-shadow: none;
  }
}
.location__text {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #353535;
  font-weight: 500;
  position: relative;
}
.location__text::before {
  content: "\f3c5";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: -25px;
}

/********** Hero **********/
.hero {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 1.5rem;
  padding: 2rem;
  background-color: #f6f6f6;
}
.hero__subtitle {
  font-size: 1.125rem;
  font-weight: 300;
}

@media screen and (min-width: 1024px) {
  .hero__title {
    font-size: 2.5rem;
  }
}
/********** Process__Step **********/
.process {
  padding: 2.5rem 2rem;
}
.process__container {
  max-width: 1100px;
  margin: auto;
}

.process__list {
  counter-reset: comptlist;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 0;
}
@media screen and (min-width: 768px) {
  .process__list {
    align-items: center;
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .process__list {
    flex-direction: row;
    gap: 3rem;
  }
}

.process__step {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 100%;
  height: 70px;
  border-radius: 20px;
  font-weight: 500;
  background-color: #f6f6f6;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  position: relative;
}
@media screen and (min-width: 768px) {
  .process__step {
    width: 75%;
  }
}

.process__step::before {
  content: counter(comptlist);
  counter-increment: comptlist;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 24px;
  width: 24px;
  border-radius: 9999px;
  background-color: #9356dc;
  color: #fff;
}

/********** Process__StepICON **********/
.iconStep1::before {
  content: "\f3cd";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  left: 50px;
  color: #7e7e7e;
}

.iconStep2::before {
  content: "\f0ca";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  left: 50px;
  color: #7e7e7e;
}

.iconStep3::before {
  content: "\f54e";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  left: 50px;
  color: #9356dc;
}

/********** Restaurants **********/
.restaurants {
  padding: 2.5rem 1rem;
  background-color: #f6f6f6;
}
.restaurants__container {
  max-width: 1100px;
  margin: auto;
}

.cards__container {
  margin: 1.5rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .cards__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .cards__container {
    row-gap: 3.125rem;
    column-gap: 6.25rem;
  }
}

/********** RestaurantsCARDS-NEW **********/
.card {
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  position: relative;
}
.card a {
  display: flex;
  flex-direction: column;
}
.card figure {
  order: -1;
}
.card img {
  height: 180px;
  width: 100%;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}
@media screen and (min-width: 1024px) {
  .card img {
    height: 200px;
  }
}
.card__new {
  background-color: #99e2d0;
  color: #008766;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  padding: 0.5rem;
  border-radius: 2px;
  position: absolute;
  top: 13px;
  right: 10px;
}

/********** RestaurantsCARDS-txt **********/
.card__txt {
  padding: 0.5rem 1rem;
  line-height: 1.5;
  position: relative;
}
.card__txt--title {
  font-size: 1.125rem;
}
.card__txt--subtitle {
  font-size: 1.063rem;
  font-weight: 300;
}

/********** Hearder **********/
.header__goback {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 10;
}
.header__goback--link {
  width: 38px;
  height: 38px;
  border-radius: 9999px;
  background-color: #f6f6f6;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition-property: color, background-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 450ms;
}
.header__goback--link:hover {
  color: #fff;
  background-color: #000;
}

/********** ImgMenu **********/
.hero-img {
  width: 100%;
  max-height: 383px;
  object-fit: cover;
}

/********** MenuContainer **********/
.menu-container {
  max-width: 1200px;
  background: #f6f6f6;
  margin: auto;
  padding: 2.5rem 1rem;
  border-radius: 40px 40px 0 0;
  margin-top: -3rem;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .menu-container {
    align-items: center;
  }
}

/********** RestaurantTitle **********/
.restaurant__title {
  font-size: 1.75rem;
  font-style: italic;
  font-weight: 400;
  font-family: "Shrikhand", serif;
  color: #101010;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 375px) {
  .restaurant__title {
    font-size: 1.5rem;
  }
}

/********** Menus **********/
.menus {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  animation: appear 600ms cubic-bezier(0.9, 1.6, 0.35, 0.8) both;
}
@media screen and (min-width: 768px) {
  .menus {
    width: 75%;
  }
}
@media screen and (min-width: 1024px) {
  .menus {
    width: 634px;
  }
}
.menus__title {
  font-size: 1rem;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 4px;
  position: relative;
}
.menus__title::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -5px;
  width: 40px;
  height: 3px;
  background: #99e2d0;
}

/********** MenusANIMATION+DELAY**********/
.menus:nth-of-type(1) {
  animation-delay: 200ms;
}

.menus:nth-of-type(2) {
  animation-delay: 400ms;
}

.menus:nth-of-type(3) {
  animation-delay: 600ms;
}

@keyframes appear {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/********** Submenus **********/
.menus__submenus {
  background-color: #fff;
  max-width: 100%;
  height: 69px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.submenus-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
}

.submenus__txt {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.submenus__txt--title {
  font-size: 1.125rem;
  font-weight: 500;
  text-overflow: ellipsis;
  overflow: hidden;
}
.submenus__txt--description {
  font-size: 0.938rem;
  font-weight: 300;
  text-overflow: ellipsis;
  overflow: hidden;
}

.submenus__price {
  display: flex;
  align-items: flex-end;
  font-weight: bold;
  transition: margin 450ms ease;
}

/********** SubmenusSelect **********/
.submenus__select {
  position: absolute;
  width: 60px;
  height: 100%;
  background-color: #99e2d0;
  border-radius: 0 15px 15px 0;
  top: 0;
  bottom: 0;
  right: -60px;
  transition: right 450ms ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.submenus__select::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
  font-size: 0.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 25px;
  height: 25px;
  color: #99e2d0;
  background-color: #fff;
  border-radius: 9999px;
  transform: rotate(180deg);
  transition: transform 450ms ease;
}

.menus__submenus:hover .submenus__select {
  right: 0;
}

.menus__submenus:hover .submenus__select::after {
  transform: rotate(0);
}

.menus__submenus:hover .submenus__price {
  margin-right: 3.75rem;
}

/* Imported fonts */

/*# sourceMappingURL=style.css.map */
