/* =====================================================
   VARIABLES GLOBALES
   ===================================================== */
/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes appear {
  0% {
    transform: translateX(1000px);
  }
  65% {
    transform: translateX(-40px);
    width: 70%;
  }
  85% {
    transform: translateX(20px);
    width: 100%;
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes appear_tete {
  0% {
    transform: translateX(1000px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    z-index: 0;
  }
}
@keyframes showPage {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    z-index: 1;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(450deg);
  }
  100% {
    transform: rotate(720deg);
    opacity: 0;
    visibility: hidden;
    z-index: 0;
  }
}
@keyframes text_reduit {
  0% {
    width: 100%;
  }
  40%, 85% {
    width: 50%;
    padding-right: 2rem;
  }
  100% {
    width: 100%;
  }
}
/* =====================================================
   MIXINS
   ===================================================== */
body {
  margin: 0;
}

h2,
h3,
p {
  font-family: "Roboto", serif;
}

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

h3 {
  font-weight: 700;
  font-size: 1.125rem;
}

.headPage__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 63px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  z-index: 3;
}
.headPage__logo--grand {
  display: none;
}
@media screen and (min-width: 768px) {
  .headPage__logo--grand {
    display: inline;
    width: 200px;
  }
}
.headPage__logo--petit {
  width: 162px;
}
@media screen and (min-width: 768px) {
  .headPage__logo--petit {
    display: none;
  }
}
.headPage__localisation {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  background-color: #EAEAEA;
  font: 500 1rem "Roboto", serif;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .headPage__localisation {
    box-shadow: none;
  }
}
.headPage__localisation i {
  margin-right: 17px;
  color: #353535;
}
.headPage__localisation input {
  border: none;
  background: none;
  font: 500 1rem "Roboto", serif;
  width: 6.813rem;
}
.headPage__localisation input::placeholder {
  font: 500 1rem "Roboto", serif;
  color: #353535;
}

.titreWrapper {
  background-color: #F6F6F6;
}

.titrePage {
  margin: 0 1.25rem 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 17.938rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 530px) {
  .titrePage {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1280px) {
  .titrePage {
    height: 14.75rem;
  }
}
.titrePage__explorer {
  display: flex;
  justify-content: center;
}
.titrePage__explorer--bouton {
  width: 13.625rem;
  height: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: linear-gradient(0deg, #9356DC, #FF79DA);
  font-size: 1rem;
  font-family: "Roboto", serif;
  font-weight: 500;
  border: none;
  border-radius: 1.563rem;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
  cursor: pointer;
  transition: transform 300ms 100ms ease-in, opacity 300ms 100ms ease-in, filter 400ms ease-in-out;
}
.titrePage__explorer--bouton:hover {
  transform: scale(1.05);
  opacity: 0.8;
  filter: drop-shadow(11px 17px 22px rgba(0, 0, 0, 0.45));
}
.titrePage__explorer--bouton-span {
  text-decoration: none;
}
.titrePage__titre {
  text-align: center;
  display: flex;
  flex-direction: column;
  margin: 0 0 1.688rem;
}
.titrePage__titre h2 {
  min-width: 17.188rem;
  min-height: 4.25rem;
  margin: auto;
}
.titrePage__titre p {
  min-width: 19.688rem;
  max-width: 30rem;
  min-height: 2.875rem;
  font-size: 1.125rem;
  margin: auto;
}
@media screen and (min-width: 1280px) {
  .titrePage__titre p {
    max-width: none;
  }
}

.fonctionnement {
  margin: 0 1.25rem 4.25rem;
  max-width: 30.625rem;
}
@media screen and (min-width: 530px) {
  .fonctionnement {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1280px) {
  .fonctionnement {
    max-width: 67.5rem;
  }
}
.fonctionnement__explication {
  display: flex;
  flex-direction: column;
  gap: 1.563rem;
}
@media screen and (min-width: 1280px) {
  .fonctionnement__explication {
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
  }
}
.fonctionnement__explication--part {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-width: 20rem;
}
.fonctionnement__explication--part-bouton {
  display: flex;
  padding-left: 2.156rem;
  margin-left: 0.75rem;
  gap: 1.25rem;
  align-items: center;
  min-width: 19.25rem;
  max-width: 29.875rem;
  width: 100%;
  height: 4.524rem;
  font-size: 1rem;
  font-family: "Roboto", serif;
  font-weight: 500;
  background-color: #F6F6F6;
  border: none;
  border-radius: 1.25rem;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.15));
  transition: transform 300ms 100ms ease-in, opacity 300ms 100ms ease-in, filter 400ms ease-in-out;
}
@media screen and (min-width: 1024px) {
  .fonctionnement__explication--part-bouton {
    max-width: 30rem;
  }
}
@media screen and (min-width: 1081px) {
  .fonctionnement__explication--part-bouton {
    min-width: 20.156rem;
  }
}
.fonctionnement__explication--part-bouton:hover {
  transform: scale(1.05);
  opacity: 0.8;
  filter: drop-shadow(11px 17px 22px rgba(0, 0, 0, 0.45));
}
.fonctionnement__explication--part-bouton .fa-solid {
  color: #7E7E7E;
}
.fonctionnement__explication--part-bouton .fa-store {
  color: #9356DC;
}
.fonctionnement__explication--part-span {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  color: white;
  background-color: #9356DC;
  font-family: "Roboto", serif;
  font-weight: 500;
  font-size: 0.886rem;
}
.fonctionnement__titre {
  margin-bottom: 1.625rem;
}

.restoWrapper {
  background-color: #F6F6F6;
}

.resto {
  display: flex;
  flex-direction: column;
  max-width: 30.625rem;
  min-width: 20rem;
  margin: 0 1.063rem;
  padding: 3.375rem 0 4.125rem;
  position: relative;
}
@media screen and (min-width: 530px) {
  .resto {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1280px) {
  .resto {
    max-width: 67.5rem;
  }
}
.resto__titre {
  margin: 0 0 1.625rem 0.188rem;
}
.resto__titre h2 {
  margin: 0;
}
.resto__liste {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
.resto__liste a {
  text-decoration: none;
}
.resto__liste--card {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  max-width: 30.625rem;
  background-color: white;
  border-radius: 0.938rem;
  transition: transform 300ms 100ms ease-in, opacity 300ms 100ms ease-in, filter 400ms ease-in-out;
}
@media screen and (min-width: 1024px) {
  .resto__liste--card {
    min-width: 30rem;
  }
}
@media screen and (min-width: 1081px) {
  .resto__liste--card {
    min-width: 30.625rem;
  }
}
.resto__liste--card:hover {
  transform: scale(1.05);
  opacity: 0.8;
  filter: drop-shadow(11px 17px 22px rgba(0, 0, 0, 0.45));
}
.resto__liste--description {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  height: 2.813rem;
}
.resto__liste--favori {
  color: #101010;
  display: flex;
}
.resto__liste--favori-imageContainer {
  position: relative;
  padding-right: 0.563rem;
  padding-bottom: 1.063rem;
}
.resto__liste--favori-imageContainer i {
  font-size: 1.375rem;
  transition: 0.7s ease-in-out;
}
.resto__liste--favori-imageContainer i:hover {
  opacity: 0;
}
.resto__liste--favori-imageContenue {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.resto__liste--favori-imageContenue i {
  font-size: 1.375rem;
  background: linear-gradient(0deg, #9356DC, #FF79DA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transition: 0.7s ease-in-out;
}
.resto__liste--favori-imageContenue i:hover {
  opacity: 1;
}
.resto__liste--image {
  height: 11rem;
  overflow: hidden;
  max-width: 100%;
  position: relative;
  border-radius: 0.938rem 0.938rem 0 0;
}
.resto__liste--image-ala {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  object-position: center 80%;
}
.resto__liste--image-delice {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  object-position: center 80%;
}
.resto__liste--image-note {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  object-position: center 60%;
}
.resto__liste--image-palette {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  object-position: center 75%;
}
.resto__liste--ligne {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  gap: 1.875rem;
}
@media screen and (min-width: 1280px) {
  .resto__liste--ligne {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    gap: 0;
  }
}
.resto__liste--nomEtLieu {
  font-family: "Roboto", serif;
  color: black;
}
.resto__liste--nomEtLieu h3 {
  line-height: 1.25rem;
  margin: 0 0 0.313rem 0;
}
.resto__liste--nomEtLieu p {
  font-size: 1.063rem;
  font-weight: 300;
  line-height: 1.5rem;
  margin: 0;
}
.resto__liste--nouveau {
  position: absolute;
  font-family: "Roboto", serif;
  font-size: 0.875rem;
  color: #008766;
  line-height: 1.813rem;
  text-align: center;
  background-color: #99E2D0;
  width: 5rem;
  height: 1.813rem;
  z-index: 1;
  border-radius: 0.125rem;
  top: 0.813rem;
  right: 1.25rem;
  bottom: 8.25rem;
  border: none;
}

.footer__contenu {
  display: flex;
  flex-direction: column;
  font-family: "Roboto", serif;
  gap: 0.438rem;
}
@media screen and (min-width: 1024px) {
  .footer__contenu {
    flex-direction: row;
    gap: 2.5rem;
  }
}
.footer__contenu a {
  text-decoration: none;
  color: white;
}
.footer__contenu--article {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.688rem;
}
.footer__contenu i {
  font-size: 0.813rem;
  width: 0.75rem;
}
.footer__contenu--ligne {
  display: flex;
  flex-direction: column;
  gap: 0.438rem;
  padding-left: 0;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .footer__contenu--ligne {
    flex-direction: row;
    gap: 1rem;
  }
}

.footer__titre h3 {
  font-family: "Shrikhand", serif;
  font-weight: 500;
  margin: 0;
}

.footer__wrapper {
  background-color: #353535;
  color: white;
  padding: 1.563rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 1024px) {
  .footer__wrapper {
    flex-direction: row-reverse;
    gap: 5.313rem;
  }
}

.la-page {
  animation: showPage 3s ease-out;
}

.loader__container {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: black;
  z-index: 10;
  animation: fadeOut ease-in-out 3s forwards;
}
.loader__exterieur {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: conic-gradient(#FF79DA 15%, #9356DC 33%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin 4s cubic-bezier(0.15, 0.53, 0.08, 1) forwards;
}
.loader__interieur {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-color: black;
  animation: fadeOut 1s 3s forwards;
}

.headPage {
  width: 100%;
}
.headPage__banner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 3.938rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 768px) {
  .headPage__banner {
    height: 6.021rem;
  }
}
.headPage__banner--fleche {
  position: absolute;
  left: 1.438rem;
  font-size: 1.063rem;
  color: #353535;
  text-decoration: none;
}
.headPage__banner--fleche:hover {
  transform: scale(1.05);
  opacity: 0.8;
  filter: drop-shadow(11px 17px 22px rgba(0, 0, 0, 0.45));
}
.headPage__banner--logo-grand {
  display: none;
}
@media screen and (min-width: 768px) {
  .headPage__banner--logo-grand {
    display: inline;
    width: 200px;
  }
}
.headPage__banner--logo-petit {
  width: 162px;
}
@media screen and (min-width: 768px) {
  .headPage__banner--logo-petit {
    display: none;
  }
}
.headPage__image {
  height: 17.188rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .headPage__image {
    height: 23.938rem;
  }
}
.headPage__image--photo {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}
.headPage__image--photo-la-palette, .headPage__image--photo-la-note {
  object-position: center 60%;
}
.headPage__image--photo-a-la, .headPage__image--photo-le-delice {
  object-position: center 65%;
}

.main__container {
  margin: -3.438rem auto 0;
  padding: 2rem 1.063rem 2.5rem;
  background-color: #F6F6F6;
  border-radius: 2.5rem 2.5rem 0 0;
  max-width: 65.938rem;
  z-index: 2;
  position: relative;
  overflow: hidden;
}

.titreResto {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.titreResto h1 {
  font: 400 1.75rem "Shrikhand", serif;
  margin: 0;
}
.titreResto__favori {
  color: #101010;
  display: flex;
}
.titreResto__favori-imageContainer {
  position: relative;
}
.titreResto__favori-imageContainer i {
  font-size: 1.375rem;
  transition: 0.7s ease-in-out;
}
.titreResto__favori-imageContainer i:hover {
  opacity: 0;
}
.titreResto__favori-imageContenue {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.titreResto__favori-imageContenue i {
  font-size: 1.375rem;
  background: linear-gradient(0deg, #9356DC, #FF79DA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transition: 0.7s ease-in-out;
}
.titreResto__favori-imageContenue i:hover {
  opacity: 1;
}

.menuResto {
  max-width: 38.062rem;
  margin: 0 auto 2.5rem;
}
.menuResto h2 {
  transform: translateX(1000px);
  animation: appear_tete 1s ease-out forwards;
}
.menuResto__titre {
  font: 300 1rem "Roboto", serif;
  text-transform: uppercase;
  position: relative;
  margin: 0 auto;
}
.menuResto__titre--underline {
  border-bottom: 0.188rem solid #99E2D0;
  padding-bottom: 0.438rem;
}
.menuResto__liste {
  display: flex;
  flex-direction: column;
  align-content: space-between;
  list-style-type: none;
  padding: 0.75rem 0 0;
  gap: 0.656rem;
  width: 100%;
}
.menuResto__liste li {
  transform: translateX(1000px);
  animation: appear 1.5s cubic-bezier(0.31, 0.54, 0, 1.19) forwards;
}
.menuResto__liste li:nth-child(1) {
  animation-delay: 0.5s;
}
.menuResto__liste li:nth-child(2) {
  animation-delay: 0.7s;
}
.menuResto__liste li:nth-child(3) {
  animation-delay: 0.9s;
}
.menuResto__liste li:nth-child(4) {
  animation-delay: 1.1s;
}
.menuResto__liste--element {
  display: flex;
  height: 2.625rem;
  max-width: 100%;
  padding: 0.844rem 0.938rem;
  overflow: hidden;
  position: relative;
  border-radius: 0.938rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease-in-out;
}
.menuResto__liste--element:hover .menuResto__liste--element-barre {
  transform: translateX(0);
}
.menuResto__liste--element:hover .menuResto__liste--element-container {
  width: calc(100% - 3.688rem);
  cursor: pointer;
}
.menuResto__liste--element:hover .menuResto__liste--element-contenu-text,
.menuResto__liste--element:hover .menuResto__liste--element-contenu-sousText {
  padding-right: 2rem;
}
.menuResto__liste--element:hover .menuResto__liste--element-icone {
  transform: rotate(0deg);
}
.menuResto__liste--element-barre {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 3.688rem;
  height: 4.313rem;
  background-color: #99E2D0;
  top: 0;
  right: 0;
  color: white;
  font-size: 1.25rem;
  overflow: hidden;
  transform: translateX(3.688rem);
  transition: all 0.5s ease-in-out;
}
.menuResto__liste--element-container {
  display: flex;
  width: 100%;
  position: relative;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s ease-in-out;
}
.menuResto__liste--element-container-prix {
  font: 700 0.938rem "Roboto", serif;
  position: absolute;
  bottom: 0;
  right: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.menuResto__liste--element-contenu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.313rem;
  animation: text_reduit 1.5s forwards;
}
.menuResto__liste--element-contenu:nth-child(1) {
  animation-delay: 0.5s;
}
.menuResto__liste--element-contenu:nth-child(2) {
  animation-delay: 0.7s;
}
.menuResto__liste--element-contenu:nth-child(3) {
  animation-delay: 0.9s;
}
.menuResto__liste--element-contenu:nth-child(4) {
  animation-delay: 1.1s;
}
@media screen and (max-width: 361px) {
  .menuResto__liste--element-contenu {
    max-width: 16.875rem;
  }
}
.menuResto__liste--element-contenu-text {
  font: 500 1.125rem "Roboto", serif;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.menuResto__liste--element-contenu-sousText {
  font: 300 0.938rem "Roboto", serif;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.menuResto__liste--element-icone {
  transform: rotate(270deg);
  transition: all 0.5s ease-in-out;
}

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