/* couleur bouton*/
/* couleur fond */
/* couleur police */
* {
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  min-width: 360px;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: black;
}

/* FONT-SIZE */
h1 {
  font-size: 23px;
  font-weight: bold;
  margin: 0;
}

.subtitle {
  font-size: 18px;
  font-weight: lighter;
}

.menu__title > h1 {
  font-family: "Shrikhand";
}

h2 {
  font-size: 16px;
  font-weight: normal;
  text-transform: uppercase;
  margin: 0;
  padding-bottom: 7px;
}

h3 {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  padding-bottom: 7px;
}

p {
  font-size: 14px;
  font-weight: lighter;
  margin: 0;
}

.stage__instruction, .btn, .searching__bar > span {
  font-size: 17px;
  font-weight: bold;
}

.stage__number {
  font-size: 13px;
  font-weight: bold;
  color: white;
}

.items__price {
  font-size: 16px;
  font-weight: bold;
  color: #4e4e4e;
}

footer {
  font-size: 14px;
}

header {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
header .header__logo {
  display: inline-flex;
  align-items: baseline;
  padding: 15px 0px;
}
header .header__logo > img {
  width: 55%;
  margin: auto;
  padding-left: 11%;
}
header .header__menu {
  padding-right: 50px;
}
header .header__menu .return {
  margin: auto;
  background-color: white;
  border: none;
}
header .header__menu .return a {
  color: #4e4e4e;
}
header .header__menu > img {
  padding-left: 0;
}
header hr {
  display: flex;
  flex: 0 0 100%;
  border: none;
  border-bottom: 3px solid #e0e0e0;
  margin: 0;
}

.spinner {
  margin: 0;
  padding: 0;
  font-family: "Shrikhand";
  font-size: 30px;
  color: black;
  text-align: center;
  animation: spinner-ending 2.5s ease-out 1s forwards;
  transform-origin: bottom;
}
.spinner .loader {
  background-color: #ece1f9;
  height: 700px;
  line-height: 700px;
}
.spinner .loader .loader__figure {
  display: inline-block;
  width: 50px;
  height: 50px;
  vertical-align: middle;
  position: relative;
  border-radius: 50px;
  border: 6px solid #bc95e9;
  border-top-color: #9356DC;
  border-bottom-color: #9356DC;
  animation: spin 1s linear 0s infinite;
}
.spinner .loader .loader__figure::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50px;
  border: 3px solid #ffc6ef;
  border-top-color: #FF79DA;
  border-bottom-color: #FF79DA;
  animation: spinreverse 2s linear 0s infinite;
}

.page {
  animation: page-beginning 2s ease-in 2s both;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spinreverse {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes spinner-ending {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  75% {
    transform: translateY(-300px);
  }
  100% {
    opacity: 0;
    transform: translateY(-400px);
  }
}
@keyframes page-beginning {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
    transform: translateY(-700px);
  }
}
.searching {
  display: flex;
  flex-direction: column;
}
.searching .searching__bar {
  display: inline-flex;
  justify-content: center;
  align-items: flex-end;
  background-color: #f2f2f2;
  padding: 15px 0;
}
.searching .searching__bar i {
  padding: 10px;
}
.searching .searching__bar i,
.searching .searching__bar span {
  color: #4e4e4e;
}
.searching .searching__exploration {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background-color: #fbfbfb;
  padding-top: 40px;
  padding-bottom: 60px;
}
.searching .searching__exploration h1,
.searching .searching__exploration .subtitle {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.searching .searching__exploration .btn {
  margin-top: 10px;
  margin-bottom: 0;
  width: 63%;
}
@media (min-width: 720px) {
  .searching .searching__exploration .btn {
    width: 40%;
  }
}
@media (min-width: 992px) {
  .searching .searching__exploration .btn {
    width: 25%;
  }
}

.functioning {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 20px;
}
@media (min-width: 720px) {
  .functioning {
    width: 60%;
    margin: auto;
  }
}
@media (min-width: 992px) {
  .functioning {
    width: 40%;
  }
}
.functioning .functioning__stage {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 25px;
  position: relative;
  box-shadow: 3px 3px 3px #f2f2f2;
  border-radius: 50px;
  background-color: #fbfbfb;
}
.functioning .functioning__stage .stage__number {
  background: #9356DC;
  padding: 5px 10px;
  border-radius: 50px;
  position: absolute;
  left: -5px;
}
.functioning .functioning__stage .stage__icone {
  color: #6c6c6c;
  position: absolute;
  left: 45px;
}
.functioning .functioning__stage .stage__instruction {
  position: absolute;
  left: 90px;
}
.functioning .functioning__stage:hover {
  background-color: #ece1f9;
}
.functioning .functioning__stage:hover .stage__icone {
  color: #9356DC;
}

.resto {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 60px 20px 60px 20px;
  background-color: #fbfbfb;
}
@media (min-width: 760px) {
  .resto {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 60px;
    gap: 40px;
  }
}
.resto h1 {
  padding-bottom: 10px;
}
@media (min-width: 760px) {
  .resto h1 {
    width: 100%;
  }
}
.resto .resto__card {
  position: relative;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 3px 3px 3px #f2f2f2;
  border-radius: 15px;
  overflow: hidden;
}
@media (min-width: 760px) {
  .resto .resto__card {
    width: 45%;
    height: 300px;
  }
}
.resto .resto__card .card__img {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
}
.resto .resto__card .card__img p {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1;
  background-color: #99e1cf;
  color: #06a37c;
  font-weight: bold;
  border-radius: 5px;
  padding: 10px;
}
.resto .resto__card .card__img img {
  object-fit: cover;
  object-position: 50% 65%;
  height: 180px;
  width: 100%;
}
@media (min-width: 760px) {
  .resto .resto__card .card__img img {
    height: 230px;
  }
}
.resto .resto__card .card__text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  display: flex;
  justify-content: flex-start;
  padding: 10px;
}
.resto .resto__card .card__text .card__text__name {
  flex: 2;
}
.resto .resto__card .card__text .favorite {
  padding: 10px 40px 40px 0;
}

.btn {
  color: white;
  background-image: linear-gradient(#FF79DA 35%, #9356DC);
  border-radius: 50px;
  box-shadow: 3px 3px 3px #f2f2f2;
  padding: 15px 15px;
  border: none;
  width: max-content;
}
.btn:hover {
  box-shadow: 1px 1px 5px #4e4e4e;
  background-image: linear-gradient(#ff93e1 35%, #a16be0);
}

.favorite {
  position: relative;
  background: transparent;
}
.favorite div i {
  position: absolute;
}
.favorite div i:hover {
  opacity: 0;
}
.favorite .full {
  opacity: 0;
}
.favorite .full:hover {
  opacity: 1;
  background: linear-gradient(0deg, #9356DC, #FF79DA);
  background-clip: text;
  color: transparent;
  transition: all 0.35s;
}

.page-menu {
  display: flex;
  flex-direction: column;
  background-color: #fbfbfb;
}
@media (min-width: 760px) {
  .page-menu {
    background-color: #ece1f9;
  }
}

.banner img {
  height: 275px;
  width: 100%;
  object-fit: cover;
  object-position: 50% 45%;
}
@media (min-width: 760px) {
  .banner img {
    height: 400px;
  }
}
@media (min-width: 1000px) {
  .banner img {
    height: 500px;
  }
}

.menu__title {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  background-color: #fbfbfb;
  padding: 30px 20px 0 20px;
  margin-top: -50px;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
}
.menu__title .favorite {
  padding-right: 60px;
}
@media (min-width: 760px) {
  .menu__title {
    width: 75%;
    margin: auto;
    margin-top: -50px;
  }
}
@media (min-width: 1000px) {
  .menu__title {
    flex-direction: row;
    justify-content: center;
    width: 95%;
  }
  .menu__title h1 {
    padding-right: 100px;
  }
}

.menu {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  background-color: #fbfbfb;
}
@media (min-width: 760px) {
  .menu {
    width: 75%;
    margin: auto;
    padding: 0 20px 40px 20px;
    border-radius: 0 0 30px 30px;
  }
}
@media (min-width: 1000px) {
  .menu {
    flex-direction: row;
    width: 95%;
  }
}
.menu .menu__dish {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  gap: 20px;
}
@media (min-width: 1000px) {
  .menu .menu__dish {
    width: 30%;
    padding: 0;
  }
}
.menu .menu__dish .dish__type hr {
  width: 50px;
  border: none;
  border-bottom: 5px solid #99e1cf;
  margin: 0;
}
.menu .menu__dish .dish__items {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-radius: 20px;
  box-shadow: 3px 3px 3px #f2f2f2;
  background-color: white;
  overflow: hidden;
  animation: all 0.7s ease-in-out forwards;
}
.menu .menu__dish .dish__items .items__description,
.menu .menu__dish .dish__items .items__price {
  padding: 10px;
}
.menu .menu__dish .dish__items .items__description {
  overflow: hidden;
  flex: 1 1 65%;
}
.menu .menu__dish .dish__items .items__description h3,
.menu .menu__dish .dish__items .items__description p {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.menu .menu__dish .dish__items .items__price {
  display: flex;
  justify-content: flex-end;
  margin-right: 75px;
  flex: 0 0 15%;
  padding-right: 10px;
}
.menu .menu__dish .dish__items .items__check {
  display: flex;
  height: 70px;
  margin-left: 10px;
  margin-right: -85px;
  background-color: #99e1cf;
  opacity: 0;
}
.menu .menu__dish .dish__items .items__check i {
  color: white;
  margin: auto;
}
.menu .menu__dish .dish__items:hover .items__check {
  animation: checking-slide 0.7s ease-out forwards;
  transform-origin: left;
}
.menu .menu__dish .dish__items:hover .items__check > i {
  animation: checking-rotation 0.5s ease-out 0.2s;
}

.btn {
  align-self: center;
  margin: 50px 0;
  width: 40%;
}
@media (min-width: 760px) {
  .btn {
    width: 25%;
  }
}

/*animations*/
.page-menu .entrees .dish__type {
  animation: menu-appear 0.5s ease-out 0s both;
  transform-origin: top;
}
.page-menu .entrees .one {
  animation: menu-appear 0.3s ease-in-out 0.5s both;
  transform-origin: top;
}
.page-menu .entrees .two {
  animation: menu-appear 0.3s ease-in-out 0.8s both;
  transform-origin: top;
}
.page-menu .entrees .three {
  animation: menu-appear 0.3s ease-in-out 1.1s both;
  transform-origin: top;
}
.page-menu .entrees .four {
  animation: menu-appear 0.3s ease-out 1.4s both;
  transform-origin: top;
}

.page-menu .plats .dish__type {
  animation: menu-appear 0.5s ease-out 1.4s both;
  transform-origin: top;
}
.page-menu .plats .one {
  animation: menu-appear 0.3s ease-in-out 1.9s both;
  transform-origin: top;
}
.page-menu .plats .two {
  animation: menu-appear 0.3s ease-in-out 2.2s both;
  transform-origin: top;
}
.page-menu .plats .three {
  animation: menu-appear 0.3s ease-in-out 2.5s both;
  transform-origin: top;
}

.page-menu .desserts .dish__type {
  animation: menu-appear 0.5s ease-out 3s both;
  transform-origin: top;
}
.page-menu .desserts .one {
  animation: menu-appear 0.3s ease-in-out 3.5s both;
  transform-origin: top;
}
.page-menu .desserts .two {
  animation: menu-appear 0.3s ease-in-out 3.8s both;
  transform-origin: top;
}
.page-menu .desserts .three {
  animation: menu-appear 0.3s ease-in-out 4.1s both;
  transform-origin: top;
}

.page-menu .plats--bis .dish__type {
  animation: menu-appear 0.5s ease-out 1.7s both;
  transform-origin: top;
}
.page-menu .plats--bis .one {
  animation: menu-appear 0.3s ease-in-out 2.2s both;
  transform-origin: top;
}
.page-menu .plats--bis .two {
  animation: menu-appear 0.3s ease-in-out 2.5s both;
  transform-origin: top;
}
.page-menu .plats--bis .three {
  animation: menu-appear 0.3s ease-in-out 2.8s both;
  transform-origin: top;
}

.page-menu .desserts--bis .dish__type {
  animation: menu-appear 0.5s ease-out 3.1s both;
  transform-origin: top;
}
.page-menu .desserts--bis .one {
  animation: menu-appear 0.3s ease-in-out 3.4s both;
  transform-origin: top;
}
.page-menu .desserts--bis .two {
  animation: menu-appear 0.3s ease-in-out 3.7s both;
  transform-origin: top;
}
.page-menu .desserts--bis .three {
  animation: menu-appear 0.3s ease-in-out 4s both;
  transform-origin: top;
}

@keyframes checking-slide {
  0% {
    width: 0px;
    transform: translateX(0);
    opacity: 0;
  }
  100% {
    width: 80px;
    transform: translateX(-80px);
    opacity: 1;
  }
}
@keyframes checking-rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes menu-appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
footer {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  background-color: #4e4e4e;
  color: white;
}
@media (min-width: 720px) {
  footer {
    align-items: center;
    margin: auto;
  }
}
footer .logo {
  font-family: "Shrikhand";
  padding-left: 20px;
}
footer ul {
  list-style: none;
  padding-left: 20px;
}
footer ul li {
  padding-bottom: 5px;
}
footer ul li a {
  color: white;
}
footer ul li:nth-child(1) i {
  padding-right: 17px;
}
footer ul li:nth-child(2) i {
  padding-right: 10px;
}

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