@charset "UTF-8";
/* +++++ MAPS +++++*/
/* +++++ MIXINS +++++*/
/* +++++ GLOBAL +++++*/
* {
  font-family: "Roboto", sans-serif;
}

/*+++++ ROOT +++++*/
:root {
  --bg-grey-color: #F6F6F6;
  --bg-white-color: #ffffff;
  --bg-localisation-color: #eaeaea;
  --bg-footer-color: #353535;
  --button-main-color: #9356DC;
  --button-second-color: #FF79DA;
  --etiquette-main-color: #99E2D0;
}

/*+++++ BODY +++++*/
body {
  margin: 0;
}

/*+++++ LOADER +++++*/
/* .loader-container{
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: hideLoader 0.5s forwards;
  animation-delay: 3s;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  background: var(--bg-grey-color);
  z-index: 9999;
}
.loader{
    display: block;
    position: relative;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 25px solid transparent;
    border-top-color: #9356DC;
    animation: spin 1.5s linear infinite;
}
.loader::before, .loader::after{
    content: "";
    position: absolute;
    border-radius: 50%;
}
.loader::before{
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 20px solid transparent;
    border-top-color: #FF79DA;
    animation: spin 1.1s linear infinite;
}
.loader::after{
    top: 60px;
    left: 60px;
    right: 60px;
    bottom: 60px;
    border: 15px solid transparent;
    border-top-color:  #99E2D0;
    animation: spin 0.8s linear infinite;
}
.site-content {
    opacity: 0;
    animation: showSite 0.1s forwards;
    animation-delay: 3s;
  } */
/* +++++ HEADER +++++ */
.header__container-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 63px;
}
.header__container-logo-image {
  height: 36px;
  margin: 20px 0 0 0;
}
.header__container-localisation {
  height: 50px;
  margin: 10px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  background-color: var(--bg-localisation-color);
  box-shadow: 0px 3px 17px rgba(0, 0, 0, 0.6);
}
.header__container-localisation-icone {
  color: #353535;
  position: relative;
  right: 20px; /*Permet de garder le centrage du texte*/
}
.header__container-localisation-texte {
  color: var(--bg-footer-color);
  font-size: 16px;
  font-weight: 500;
}

/* +++++ SECTION RESERVER +++++ */
.section-reserver {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 30px;
  background: var(--bg-grey-color);
}
.section-reserver__contenu {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-reserver__titre-h1 {
  margin: 20px 0px 0px 0px;
  font-weight: 700;
  font-size: 24px;
}
.section-reserver__texte {
  text-align: center;
  font-weight: 300;
  font-size: 18px;
  margin: 20px 0 0 0;
}
.section-reserver__bouton {
  position: relative;
  overflow: hidden;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  margin: 30px 0 30px 0;
  width: 218px;
  text-decoration: none;
  color: white;
  padding: 15px;
  border-radius: 30px;
  background: linear-gradient(to top left, #9356DC, #FF79DA);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: box-shadow 300ms ease-in-out;
}
.section-reserver__bouton::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top left, rgb(154.175, 100.525, 220.775), rgb(255, 136.3, 222.2246268657));
  opacity: 0;
  transition: opacity 300ms ease-in-out;
  border-radius: 30px;
  z-index: 0;
}
.section-reserver__bouton span {
  position: relative;
  z-index: 1;
}
.section-reserver__bouton:hover {
  background: linear-gradient(to top left, rgb(148.725, 92.175, 218.925), rgb(255, 141.4, 223.6328358209));
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
}
.section-reserver__bouton:hover::after {
  opacity: 1;
}

/* +++++ SECTION FONCTIONNEMENT+++++ */
.section-fonctionnement {
  padding: 0 30px;
  background-color: var(--bg-white-color);
}
.section-fonctionnement__contenu {
  display: flex;
  flex-direction: column;
}
.section-fonctionnement__titre {
  margin: 20px 0 20px 0;
  font-size: 24px;
  font-weight: 700;
}
.section-fonctionnement__bouton {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  background-color: var(--bg-grey-color);
  margin-bottom: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  padding: 10px 0;
}
.section-fonctionnement__bouton-pastille {
  width: 22px;
  height: 22px;
  background-color: var(--button-main-color);
  color: white;
  font-weight: 400;
  font-size: 14px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  right: 10px;
}
.section-fonctionnement__bouton-icone {
  color: #7e7e7e;
}

/* +++++ SECTION RESTAURANTS +++++ */
.section-restaurants {
  background-color: var(--bg-grey-color);
  padding: 0 20px;
}
.section-restaurants__contenu {
  display: flex;
  flex-direction: column;
  padding: 0 0 50px 0;
}
.section-restaurants__titre {
  margin: 40px 0 0 0;
  font-size: 24px;
  font-weight: 700;
}
.section-restaurants__carte {
  background-color: var(--bg-white-color);
  border-radius: 20px;
  position: relative;
  margin: 20px 0 0 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.section-restaurants__carte-lien {
  text-decoration: none;
  color: #000000;
}
.section-restaurants__carte-image {
  width: 100%;
  aspect-ratio: 6/4;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.section-restaurants__carte-etiquette {
  width: 70px;
  background-color: var(--etiquette-main-color);
  position: absolute;
  top: 0;
  right: 10px;
  padding: 6px;
  border-radius: 5px;
  color: #3d8665;
  font-weight: 600;
}
.section-restaurants__carte-etiquette--display3, .section-restaurants__carte-etiquette--display4 {
  display: none;
}
.section-restaurants__carte-titre {
  margin: 10px 0 0 10px;
  font-size: 18px;
  font-weight: 700;
}
.section-restaurants__carte-texte {
  margin: 5px 0px 10px 10px;
  font-size: 17px;
  font-weight: 300;
}
.section-restaurants__carte-coeur-vide, .section-restaurants__carte-coeur-plein {
  font-size: 20px;
  position: absolute;
  bottom: 30px;
  right: 25px;
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}
.section-restaurants__carte-coeur-vide {
  color: #101010;
  z-index: 2;
  opacity: 1;
}
.section-restaurants__carte-coeur-vide:hover {
  opacity: 0;
}
.section-restaurants__carte-coeur-plein {
  z-index: 1;
  opacity: 0;
  background: linear-gradient(#9356DC, #FF79DA);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-restaurants__carte-coeur-plein:hover {
  opacity: 1;
  transform: scale(1.3);
}

/* État actif du cœur après clic */
.coeurs-container.active .section-restaurants__carte-coeur-vide {
  opacity: 0;
}
.coeurs-container.active .section-restaurants__carte-coeur-plein {
  opacity: 1;
  transform: scale(1.1);
}

/* +++++ FOOTER +++++ */
.section-footer {
  margin: 0 0 0 0;
  padding: 20px;
  background-color: var(--bg-footer-color);
  color: white;
}
.section-footer__lien {
  margin: 8px 0;
}
.section-footer__lien-icone1 {
  color: white;
  margin: 0 10px 0 0;
}
.section-footer__lien-icone2 {
  color: white;
  margin: 0 4px 0 0;
}
.section-footer__lien-texte {
  font-size: 16px;
  text-decoration: none;
  color: white;
}

/*+++++ MEDIA QUERIES DESKTOP +++++*/
@media (min-width: 1024px) {
  /* +++++ HEADER +++++ */
  .header__container-logo {
    height: 96px;
  }
  .header__container-localisation {
    margin: 10px 0 0 0;
    box-shadow: none; /* désactive le box shadow en Desktop*/
  }
  /* +++++ SECTION RESERVER +++++ */
  .section-reserver__titre-h1 {
    font-size: 40px; /*24px en mobile*/
  }
  .section-reserver__bouton {
    margin: 20px 0 30px 0; /*Margin bottom 50px en mobile*/
  }
  /* +++++ SECTION FONCTIONNEMENT+++++ */
  .section-fonctionnement {
    padding: 50px 180px 30px 180px;
  }
  .section-fonctionnement__contenu {
    flex-direction: row; /*Column en mobile*/
    justify-content: space-around;
  }
  .section-fonctionnement__bouton {
    width: 30%;
  }
  .section-fonctionnement__bouton-texte {
    font-size: 16px;
    font-weight: 500;
  }
  /* +++++ SECTION RESTAURANTS +++++ */
  .section-restaurants {
    padding: 50px 180px 30px 180px;
  }
  .section-restaurants__contenu {
    flex-direction: row; /*column sur mobile*/
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .section-restaurants__titre {
    margin: 0; /*margin top 40px en mobile*/
  }
  .section-restaurants__carte {
    margin: 30px 10px 0 0; /*margin right 0 en mobile*/
    width: calc(50% - 40px); /* permet de faire 2 colonnes et 2 rangées en desktop en enlevant la margin right de 20px ajoutée plus haut*/
  }
  .section-restaurants__carte-image {
    aspect-ratio: 3/1; /*6/4 en mobile*/
  }
  .section-restaurants__carte-coeur-vide, .section-restaurants__carte-coeur-plein {
    font-size: 25px;
  }
  /* +++++ FOOTER +++++ */
  .section-footer {
    display: flex; /*Aligner le logo et les liens en Desktop*/
    flex-direction: row;
    justify-content: flex-end;
  }
  .section-footer__logo {
    order: 2; /*on change l'ordre pour passer le logo à la suite des liens en Desktop*/
    margin: 15px 0 0 90px;
  }
  .section-footer__contenu {
    order: 1; /*on change l'ordre pour passer le logo à la suite des liens en Desktop*/
    display: flex; /*Aligner les liens en Desktop*/
    flex-direction: row; /*Aligner les liens en Desktop*/
    gap: 30px;
    margin: 20px 0 0 0;
  }
  .section-footer__lien-texte--mentions {
    margin-left: 20px; /*margin left à gauche de Mentions Légales sur Desktop*/
  }
}
/*+++++ KEYFRAMES +++++*/
/* @keyframes spin{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

@keyframes hideLoader {
0% {
    opacity: 1;
    pointer-events: auto;
}
90% {
    opacity: 0;
    pointer-events: auto;
}
100% {
    opacity: 0;
    pointer-events: none;
}
}

@keyframes showSite {
0% {
    opacity: 0;
}
100% {
    opacity: 1;
}
} */

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