/* --- Animations Loader --- */
@-webkit-keyframes loader {
  0% {
    opacity: 1;
  }
  100% {
    visibility: hidden;
    opacity: 0;
  }
}
@keyframes loader {
  0% {
    opacity: 1;
  }
  100% {
    visibility: hidden;
    opacity: 0;
  }
}

@-webkit-keyframes zoomin {
  0% {
    -webkit-transform: scale(0.3, 0.3);
            transform: scale(0.3, 0.3);
  }
  50% {
    -webkit-transform: scale(1.7, 1.7);
            transform: scale(1.7, 1.7);
  }
  100% {
    -webkit-transform: scale(0.3, 0.3);
            transform: scale(0.3, 0.3);
  }
}

@keyframes zoomin {
  0% {
    -webkit-transform: scale(0.3, 0.3);
            transform: scale(0.3, 0.3);
  }
  50% {
    -webkit-transform: scale(1.7, 1.7);
            transform: scale(1.7, 1.7);
  }
  100% {
    -webkit-transform: scale(0.3, 0.3);
            transform: scale(0.3, 0.3);
  }
}

/* --- Animations Coeurs --- */
@-webkit-keyframes slide {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
}
@keyframes slide {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
}

@-webkit-keyframes gradient {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@keyframes gradient {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

/* --- Animations Cartes Menus --- */
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

/* --- Animation Check --- */
@-webkit-keyframes roll-in {
  0% {
    -webkit-transform: translateX(800px) rotate(700deg);
            transform: translateX(800px) rotate(700deg);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(100px) rotate(700deg);
            transform: translateX(100px) rotate(700deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0) rotate(0deg);
            transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
}
@keyframes roll-in {
  0% {
    -webkit-transform: translateX(800px) rotate(700deg);
            transform: translateX(800px) rotate(700deg);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(100px) rotate(700deg);
            transform: translateX(100px) rotate(700deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0) rotate(0deg);
            transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
}

@-webkit-keyframes roll-back {
  100% {
    -webkit-transform: translateX(800px) rotate(700deg);
            transform: translateX(800px) rotate(700deg);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(100px) rotate(700deg);
            transform: translateX(100px) rotate(700deg);
    opacity: 1;
  }
  0% {
    -webkit-transform: translateX(0) rotate(0deg);
            transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
}

@keyframes roll-back {
  100% {
    -webkit-transform: translateX(800px) rotate(700deg);
            transform: translateX(800px) rotate(700deg);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(100px) rotate(700deg);
            transform: translateX(100px) rotate(700deg);
    opacity: 1;
  }
  0% {
    -webkit-transform: translateX(0) rotate(0deg);
            transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
}

@-webkit-keyframes appear {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@keyframes appear {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes translate {
  0% {
    -webkit-transform: translateY(35%);
            transform: translateY(35%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes translate {
  0% {
    -webkit-transform: translateY(35%);
            transform: translateY(35%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

body,
html {
  width: 100%;
  height: 100vh;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
}

main {
  width: 100%;
  height: auto !important;
}

/* ---------- Loader ---------- */
.loader {
  position: fixed;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10000;
  background: linear-gradient(171deg, rgba(240, 227, 255, 0.897) 0%, rgba(253, 253, 253, 0.947) 100%);
  -webkit-animation: loader 1200ms ease-in;
          animation: loader 1200ms ease-in;
  -webkit-animation-delay: 1200ms;
          animation-delay: 1200ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.loader__container {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 15vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.ico {
  width: 100%;
  height: 40%;
  margin: 0 3% 0;
  -webkit-animation: zoomin 900ms 2 linear;
          animation: zoomin 900ms 2 linear;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
}

.ico__1 {
  -webkit-animation-delay: 100ms;
          animation-delay: 100ms;
}

.ico__2 {
  -webkit-animation-delay: 200ms;
          animation-delay: 200ms;
}

.ico__3 {
  -webkit-animation-delay: 250ms;
          animation-delay: 250ms;
}

.ico__4 {
  -webkit-animation-delay: 350ms;
          animation-delay: 350ms;
}

.ico__5 {
  -webkit-animation-delay: 350ms;
          animation-delay: 350ms;
}

/* ---------- Header ---------- */
.header {
  width: 100%;
  height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Shrikhand", cursive;
  -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
          box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* ---------- Main ---------- */
.localisation {
  width: 100%;
  height: 50px;
  background-color: #eaeaea;
  font-weight: 800;
  font-size: 1.2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.localisation__localicon {
  margin: 0 2% 0;
}

.reservation {
  width: 100%;
  height: 250px;
  background-color: #f6f6f6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.reservation__title {
  width: 80%;
  text-align: center;
}

.bouton {
  width: 200px;
  height: 15%;
  margin: 1% 0 1%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #ff79da), to(#9356dc));
  background: linear-gradient(to bottom, #ff79da 10%, #9356dc 100%);
  border-radius: 25px;
  border: none;
  color: #ffffff;
  font-family: "Roboto";
  font-size: 1em;
  position: relative;
  z-index: 1;
}

.bouton:hover:after {
  opacity: 1;
}

.bouton:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #ff93e1), to(#a16be0));
  background: linear-gradient(to bottom, #ff93e1 20%, #a16be0 100%);
  border-radius: 25px;
  opacity: 0;
  z-index: -1;
  -webkit-transition: opacity 300ms;
  transition: opacity 300ms;
  -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
          box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media (min-width: 1000px) {
  .bouton {
    width: 30%;
    height: 20%;
    margin: 5% 0 1%;
    font-size: 1.2em;
  }
}

@media (min-width: 1500px) {
  .bouton {
    width: 20%;
    height: 55px;
    margin: 5% 0 1%;
  }
}

/* Partie Fonctionnement */
.commande {
  width: 100%;
  margin-top: 2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.commande__title {
  margin: 2% 0 2% 2%;
}

.commande__container {
  width: 100%;
  height: auto;
  margin: 0 0 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 1000px) {
  .commande {
    width: 95%;
    margin: 1% 2% 1%;
  }
}

.bloc {
  width: 90%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

.bloc__cercle {
  width: 24px;
  height: 24px;
  margin-right: -10px;
  border-radius: 12px;
  background-color: #9356dc;
  color: white;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bloc__btn {
  width: 100%;
  min-height: 75px;
  padding: 0;
  margin: 5% 0 5%;
  background-color: #f6f6f6;
  font-size: 1em;
  font-weight: 500;
  border: none;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
          box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  position: relative;
  z-index: 1;
}

@media (min-width: 1000px) {
  .bloc__btn {
    min-height: 100px;
    width: 60%;
    margin: 1% 0 1%;
  }
}

.bloc__btn:hover:after {
  opacity: 1;
  cursor: pointer;
}

.bloc__btn:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #f5edff;
  border-radius: 20px;
  opacity: 0;
  z-index: -1;
  -webkit-transition: opacity 300ms;
  transition: opacity 300ms;
}

.bloc__btn:hover .icon {
  color: #9356dc;
}

.bloc__text {
  width: 80%;
  padding-left: 5%;
  text-align: start;
}

.icon {
  padding: 0 5% 0;
  float: left;
  color: #7e7e7e;
  font-size: 1.3em;
}

/* ---------- Partie restaurants ---------- */
.restaurants {
  width: 100%;
  height: auto;
  background-color: #f6f6f6;
  padding-bottom: 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-line-pack: justify;
      align-content: space-between;
}

.restaurants__title {
  margin: 1% 0 1% 5%;
}

.restaurants a {
  text-decoration: none !important;
  color: black;
}

@media (min-width: 1000px) {
  .restaurants {
    width: 95%;
    border-radius: 10px;
    margin: 1% 2% 1%;
    padding-bottom: 2%;
  }
}

.container {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 1000px) {
  .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}

.carte {
  width: 90%;
  height: auto;
  border-radius: 20px;
  position: relative;
  margin-bottom: 5%;
  -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
          box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.carte__img {
  width: 100%;
  height: 175px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px 20px 0 0;
}

.carte__new {
  width: 80px;
  height: 30px;
  margin: 0;
  background-color: #99e2d0;
  color: #008766;
  position: absolute;
  top: 15px;
  right: 10px;
  display: block;
}

.carte__new p {
  margin: 0;
  text-align: center;
  font-size: 0.9em;
  line-height: 30px;
}

@media (min-width: 1000px) {
  .carte {
    width: 40%;
    margin: 1% 2% 1%;
  }
}

.presentation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 2%;
}

.presentation__texte {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 90%;
}

.presentation__texte p {
  padding: 0 0 0 1%;
}

.presentation__name {
  margin: 2%;
}

.favoris {
  width: 10%;
  margin: 2%;
  font-size: 1.8em;
  position: relative;
}

.favoris__vide {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  visibility: visible;
  -webkit-background-clip: text;
}

.favoris__plein {
  -webkit-background-clip: text;
  color: transparent;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

.favoris__plein:hover {
  -webkit-background-clip: text;
  color: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#9356dc), to(#ff79da));
  background-image: linear-gradient(#9356dc, #ff79da);
  -webkit-animation: gradient .300s ease-in-out;
          animation: gradient .300s ease-in-out;
  -webkit-transform-origin: top;
          transform-origin: top;
}

/* ---------- Footer ---------- */
.blocFooter {
  width: 100%;
  min-height: 150px;
  padding-left: 5%;
  background-color: #353535;
  color: white;
  bottom: 0;
}

.blocFooter__logo {
  padding: 5% 0 5%;
  margin: 0;
  font-family: "Shrikhand", cursive;
  font-size: 1.2em;
}

@media (min-width: 1000px) {
  .blocFooter__logo {
    font-size: 1.9em;
  }
}

.list {
  padding: 0 0 5%;
  margin: 0;
  line-height: 2em;
  list-style-type: none;
}

@media (min-width: 1000px) {
  .list {
    width: 40%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.list .fa-utensils,
.list .fa-hands-helping {
  padding: 0 3% 0 0;
}

.list__contact {
  color: white;
}
/*# sourceMappingURL=style.css.map */