@keyframes btt {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes ltr {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes check {
  0%, 100% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.3);
  }
}
@keyframes fill {
  0% {
    transform-origin: bottom;
    transform: scale(0);
    animation-timing-function: cubic-bezier(0.48, 0, 0.35, 0.99);
  }
  70% {
    transform-origin: bottom;
    transform: scale(1);
  }
  80%, 100% {
    transform-origin: center;
    transform: scale(1);
    animation-timing-function: cubic-bezier(0.16, 0.02, 0.32, 1);
  }
  95% {
    transform: scale(1.2);
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  80% {
    transform: translateX(-5px);
  }
}
@keyframes fadeout {
  0%, 90% {
    opacity: 100%;
  }
  100% {
    opacity: 0%;
    visibility: hidden;
  }
}
@keyframes bounce {
  0% {
    left: -20vw;
    opacity: 0;
    bottom: 80%;
  }
  5% {
    opacity: 1;
  }
  20% {
    left: 0;
    bottom: 2.5vw;
    transform: rotateX(60deg);
    animation-timing-function: cubic-bezier(0.34, 0.61, 0.65, 1);
  }
  30% {
    transform: rotateX(0);
  }
  50% {
    bottom: 70%;
    animation-timing-function: cubic-bezier(0.27, 0.18, 0.7, 0.99);
  }
  65% {
    transform: rotateX(0);
  }
  80% {
    left: 75%;
    bottom: 2.5vw;
    transform: rotateX(60deg);
    animation-timing-function: cubic-bezier(0.34, 0.61, 0.65, 1);
  }
  85% {
    opacity: 1;
  }
  100% {
    left: 60vw;
    opacity: 0;
    bottom: 80%;
  }
}
@keyframes squeeze {
  0%, 100% {
    transform: rotateX(0);
    animation-timing-function: ease-out;
  }
  25% {
    transform: rotateX(55deg) translateY(-10%);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: auto;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  cursor: default;
}

a {
  text-decoration: none;
  color: #000000;
}

.loader {
  width: 100%;
  height: 100%;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at 40%, #F6F6F6 40%, #ff79da 10%, #9356dc 100%);
  z-index: 999;
  animation: fadeout 3000ms linear forwards;
}

.anim {
  width: 50vw;
  height: 25vw;
  margin-bottom: 10vh;
  position: relative;
}
.anim .ball,
.anim .anim-logo {
  position: absolute;
}
.anim .ball {
  width: 4.5vw;
  height: 4.5vw;
  background-color: #9356dc;
  border-radius: 50%;
  color: #9356dc;
  animation: bounce 1500ms 500ms both;
  z-index: 5;
}
.anim .anim-logo {
  display: flex;
  width: 50vw;
  color: #9356dc;
  filter: drop-shadow(-0.4vw 0.4vw 0.1vw #F6F6F6);
  bottom: 0;
  z-index: 1;
}
.anim .letter1 {
  transform-origin: bottom;
  animation: squeeze 500ms ease-in-out 650ms backwards;
  z-index: 2;
}
.anim .letter7 {
  transform-origin: bottom;
  animation: squeeze 500ms ease-in-out 1550ms backwards;
  z-index: 2;
}

header {
  position: relative;
}
header .logo {
  display: flex;
  justify-content: center;
  font-family: "Shrikhand", sans-serif;
  font-size: 2em;
  padding: 10px;
}
header .icon-return {
  font-size: 1.2em;
  position: absolute;
  top: 22px;
  left: 22px;
  cursor: pointer;
}
header .icon-return:hover {
  content: "\f060";
  animation: shake 700ms ease-in 100ms infinite;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding: 30px 20px;
  background-color: #353535;
}
.footer__logo {
  color: white;
  font-family: "Shrikhand", sans-serif;
  font-size: 1.2em;
}
@media screen and (min-width: 745px) {
  .footer__logo {
    margin: auto;
    width: 80%;
  }
}
@media screen and (min-width: 992px) {
  .footer__logo {
    width: fit-content;
    margin: 0;
  }
}
@media screen and (min-width: 992px) {
  .footer {
    flex-direction: row-reverse;
    gap: 4em;
    padding-right: 5em;
    align-items: center;
  }
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.footer__links a {
  display: flex;
  gap: 1em;
  color: white;
  width: fit-content;
}
.footer__links a .fa-utensils {
  padding: 0 4px;
}
@media screen and (min-width: 745px) {
  .footer__links a {
    margin: auto;
    width: 80%;
  }
}
@media screen and (min-width: 992px) {
  .footer__links a {
    white-space: nowrap;
    width: 100%;
    margin: 0;
  }
}
@media screen and (min-width: 992px) {
  .footer__links {
    flex-direction: row;
    gap: 3em;
  }
}

.img-cover {
  object-fit: cover;
  width: 100vw;
  height: 60vw;
  max-height: 400px;
}

.menu-main {
  padding: 30px 15px;
  background-color: #F6F6F6;
  border-radius: 50px 50px 0 0;
  position: relative;
  margin-top: -60px;
}
@media screen and (min-width: 745px) {
  .menu-main {
    width: 70%;
    margin: -60px auto 0;
    padding: 30px 12%;
  }
}

.title {
  display: flex;
  justify-content: space-around;
  gap: 1em;
}
.title h1 {
  font-family: "Shrikhand", sans-serif;
  font-size: 1.5em;
  letter-spacing: 1px;
}
.title .favorite-menu {
  width: 2em;
}
.title .favorite-menu .icon-toggle {
  position: absolute;
  font-size: 1.7em;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: thin;
  overflow: visible;
  cursor: pointer;
}
.title .favorite-menu input {
  display: none;
}
.title .favorite-menu input:checked + .icon-toggle i::after {
  content: "\f004";
  position: absolute;
  left: 0;
  background: -webkit-linear-gradient(350deg, #9356dc -5%, #ff79da 115%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: initial;
  animation: fill 600ms 100ms backwards;
}
@media screen and (min-width: 745px) {
  .title {
    justify-content: center;
    gap: 2em;
  }
  .title .favorite-menu {
    position: relative;
    right: initial;
    margin-right: initial;
  }
}

.courses {
  padding: 25px 0;
  display: flex;
  flex-direction: column;
  gap: 0.8em;
}
.courses__title h2 {
  font-weight: 300;
  text-transform: uppercase;
  font-size: 1em;
}
.courses__title hr {
  height: 3px;
  width: 40px;
  border: 0;
  background: #99E2D0;
  margin-top: 0.5em;
  transform-origin: left;
  animation: ltr 1000ms 150ms backwards ease-out;
}

.coursesItem {
  display: flex;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  overflow: hidden;
  animation: btt 1000ms 200ms backwards cubic-bezier(0.35, 0.6, 0.7, 1);
}
.coursesItem__info {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  flex: 1;
  gap: 1em;
  overflow: hidden;
}
.coursesItem__info__text {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.3em;
}
.coursesItem__info__text h3 {
  font-weight: 500;
  font-size: 1em;
  overflow: hidden;
  text-overflow: ellipsis;
}
.coursesItem__info__text p {
  font-weight: 300;
  font-size: 1em;
  overflow: hidden;
  text-overflow: ellipsis;
}
.coursesItem__info__price {
  align-self: flex-end;
  font-weight: 700;
}
.coursesItem--1 {
  animation-delay: 100ms;
}
.coursesItem--2 {
  animation-delay: 200ms;
}
.coursesItem--3 {
  animation-delay: 300ms;
}
.coursesItem--4 {
  animation-delay: 400ms;
}
.coursesItem--5 {
  animation-delay: 500ms;
}
.coursesItem--6 {
  animation-delay: 600ms;
}
.coursesItem--7 {
  animation-delay: 700ms;
}
.coursesItem--8 {
  animation-delay: 800ms;
}
.coursesItem--9 {
  animation-delay: 900ms;
}
.coursesItem--10 {
  animation-delay: 1000ms;
}
.coursesItem:hover .coursesItem--validation {
  width: 60px;
}

.selectItem input {
  display: none;
}
.selectItem .coursesItem--validation {
  height: 100%;
  background-color: #99E2D0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 0;
  transition: 300ms ease-in-out;
}
.selectItem .coursesItem--validation .fa-circle-check {
  color: #ffffff;
  font-size: 1.3em;
}
.selectItem input:checked + .coursesItem--validation {
  width: 60px;
}
.selectItem input:checked + .coursesItem--validation .fa-circle-check {
  animation: check 700ms 200ms;
}

.button {
  color: white;
  display: flex;
  justify-content: center;
  background: linear-gradient(350deg, #9356dc -5%, #ff79da 115%);
  border: none;
  min-width: 185px;
  padding: 15px 22px;
  border-radius: 25px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  margin: 1em;
  font-weight: 500;
  font-size: 1em;
  margin: 25px auto;
}
.button:hover {
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.3);
  background: linear-gradient(350deg, rgba(147, 86, 220, 0.8) -5%, rgba(255, 121, 218, 0.9) 115%);
}

h2 {
  font-size: 1.5em;
  font-weight: 700;
}

.exploration {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #F6F6F6;
  gap: 1.4em;
  text-align: center;
  padding-bottom: 30px;
}
.exploration .location {
  padding: 20px 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 0.5em;
  background-color: #EAEAEA;
  box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.15);
}
.exploration .location input {
  border: none;
  background-color: #EAEAEA;
  font-size: 1em;
  text-align: center;
  cursor: auto;
}
.exploration .location input::placeholder {
  opacity: 1;
  color: #000000;
}
.exploration h1 {
  font-size: 1.5em;
  font-weight: 700;
  padding: 20px 40px 0;
}
.exploration p {
  font-size: 1.1em;
  font-weight: 300;
  padding: 0 40px;
}
.exploration .button {
  color: white;
  display: flex;
  justify-content: center;
  background: linear-gradient(350deg, #9356dc -5%, #ff79da 115%);
  border: none;
  min-width: 185px;
  padding: 15px 22px;
  border-radius: 25px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  margin: 1em;
  font-weight: 500;
  font-size: 1em;
}
.exploration .button:hover {
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.3);
  background: linear-gradient(350deg, rgba(147, 86, 220, 0.8) -5%, rgba(255, 121, 218, 0.9) 115%);
}

.functions {
  display: flex;
  flex-direction: column;
  padding: 40px 20px 60px;
  margin: auto;
  gap: 1.5em;
}
@media screen and (min-width: 745px) {
  .functions {
    margin: auto;
    max-width: 80%;
    padding: 40px 0 60px;
  }
}
.functions__links {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  padding-left: 5px;
}
@media screen and (min-width: 992px) {
  .functions__links {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media screen and (min-width: 992px) {
  .functions__link {
    width: 31%;
  }
}

.function {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 1.5em;
  background-color: #F6F6F6;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px 35px;
  border-radius: 20px;
  white-space: nowrap;
}
@media screen and (min-width: 992px) {
  .function {
    justify-content: flex-start;
    gap: 1.5vw;
  }
}
.function:hover {
  background-color: rgba(147, 86, 220, 0.1);
}
.function__number {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #9356dc;
  border-radius: 25px;
  left: -10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 0.8em;
}
.function h3 {
  font-size: 1em;
  font-weight: 500;
}

.new {
  display: inline-block;
  position: absolute;
  right: 15px;
  top: 15px;
  background-color: #99E2D0;
  padding: 5px 10px;
  font-size: 0.9em;
  color: #217460;
}

.restaurants {
  display: flex;
  flex-direction: column;
  padding: 50px 20px 60px;
  background-color: #F6F6F6;
  gap: 1.5em;
}
@media screen and (min-width: 745px) {
  .restaurants {
    padding: 50px 0 60px;
  }
  .restaurants h2 {
    width: 80%;
    margin: auto;
  }
}
.restaurants__links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2em;
}
@media screen and (min-width: 992px) {
  .restaurants__links {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 80%;
    margin: auto;
    gap: 1.5em;
  }
}

.rest-cart {
  position: relative;
  height: 250px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  background-color: white;
}
.rest-cart img {
  object-fit: cover;
  width: 100%;
  border-radius: 15px 15px 0 0;
  height: 70%;
}
.rest-cart__info {
  height: 25%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.4em;
  padding: 10px 15px 0;
}
.rest-cart__info h4 {
  font-weight: 700;
  font-size: 1.1em;
}
.rest-cart__info p {
  font-weight: 300;
}
@media screen and (min-width: 745px) {
  .rest-cart {
    width: 80%;
    margin: auto;
  }
}
@media screen and (min-width: 992px) {
  .rest-cart {
    width: 45%;
  }
}

.favorite {
  position: absolute;
  right: 15%;
  top: 30%;
}
.favorite .icon-toggle {
  position: absolute;
  font-size: 1.7em;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: thin;
  overflow: visible;
  cursor: pointer;
}
.favorite input {
  display: none;
}
.favorite input:checked + .icon-toggle i::after {
  content: "\f004";
  position: absolute;
  left: 0;
  background: -webkit-linear-gradient(350deg, #9356dc -5%, #ff79da 115%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: initial;
  animation: fill 600ms 100ms backwards;
}

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