@charset "UTF-8";
/* Variable des couleurs principales & les font family  */
/* Apparence des boutons & des cards */
/*.header, .main, .footer {
    max-width: 1440px;
    margin: 0 auto;
}*/
:root, body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}

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

h1, h2 {
  font-family: "Shrikhand", serif;
}

h1, h2, h3, p {
  margin: 0 0 5px 0;
  padding: 0;
}

/* Header des pages de restaurants : Logo & flèche retour */
/*** Header : logo et flèche de retour ***/
.header {
  position: relative;
  overflow: hidden;
}
.header img {
  display: block;
  margin: 15px auto;
}
.header__previous {
  position: absolute;
  top: 30%;
  left: 25px;
}
.header__lieu {
  display: none;
}

/*** Footer : Mobile first ***/
.footer {
  background-color: #353535;
  color: white;
  padding: 20px;
}
@media (min-width: 768px) {
  .footer {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
}
.footer img {
  height: 30px;
}
@media (min-width: 768px) {
  .footer img {
    width: auto;
    height: 20px;
  }
}
@media (min-width: 768px) and (min-width: 1024px) {
  .footer img {
    height: 30px;
  }
}
@media (min-width: 768px) {
  .footer__box {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
  }
}
.footer__box--contain {
  margin: 10px 0;
}
@media (min-width: 768px) {
  .footer__box--contain {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
  }
}
.footer__box--contain-txt {
  font-size: 14px;
  margin: 0 15px 5px 0;
}
@media (min-width: 1024px) {
  .footer__box--contain-txt {
    font-size: 16px;
  }
}
.footer__box--contain-txt:hover {
  color: #FF79DA;
  cursor: pointer;
}
.footer__box--contain-link {
  color: white;
  font-size: 14px;
  display: block;
  margin: 0 15px 5px 0;
}
@media (min-width: 1024px) {
  .footer__box--contain-link {
    font-size: 16px;
  }
}
.footer__box--contain-link:hover {
  color: #FF79DA;
}

.main .restaurant img {
  width: 100%;
  display: block;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  height: 250px;
  z-index: -1;
}
@media (min-width: 768px) {
  .main .restaurant img {
    height: 300px;
  }
}
@media (min-width: 1024px) {
  .main .restaurant img {
    height: 350px;
  }
}
.main .restaurant__content {
  padding: 20px;
  border-radius: 35px 35px 0 0;
  margin: -40px auto 0 auto;
  background-color: #F6F6F6;
  max-width: 1024px;
}
.main .restaurant__content-title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.main .restaurant__content-title h1 {
  width: 95%;
}
.main .restaurant__content-title .likeBtn {
  width: 5%;
  position: relative;
}
.main .restaurant__content-title .likeBtn .fa-solid {
  color: transparent;
  background: linear-gradient(110deg, #FF79DA, #9356DC);
  -webkit-background-clip: text;
          background-clip: text;
  position: absolute;
}
.main .restaurant__content-title .likeBtn .fa-heart {
  margin-top: 15px;
}
.main .restaurant__content-title .likeBtn .fa-regular {
  position: absolute;
  transition: all 0.3s ease-in;
}
.main .restaurant__content-title .likeBtn .heart-hidden {
  transform: scale(0);
  transition: all 300ms ease-in;
}
@media (min-width: 768px) {
  .main .restaurant__content-title {
    max-width: 768px;
    margin: 30px auto;
    font-size: 26px;
  }
}
.main .restaurant__content-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .main .restaurant__content-menu {
    align-items: center;
  }
}
@media (min-width: 768px) {
  .main .restaurant__content-menu--title {
    width: 100%;
    margin: 0 0 0 10px;
    padding: 0 0 0 10px;
    max-width: 768px;
  }
}
.main .restaurant__content-menu--title h2 {
  margin: 40px 0 0 0;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 16px;
}
.main .restaurant__content-menu--title .underline {
  text-decoration: underline;
  width: 10%;
  font-size: 30px;
  font-weight: 900;
  color: #99E2D0;
  margin: -25px 0 10px 0;
  display: block;
}
.main .restaurant__content-menu--assiette {
  border-radius: 15px;
  background: white;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin: 10px 0;
  width: 100%;
  max-width: 768px;
}
.main .restaurant__content-menu--assiette label {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px 10px;
  overflow: hidden;
  width: 100%;
  transition: all 0.3s ease-in;
}
.main .restaurant__content-menu--assiette label .label__title {
  font-size: 18px;
  font-weight: 700;
  width: 60%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.main .restaurant__content-menu--assiette label .choix-txt {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.main .restaurant__content-menu--assiette label .choix-txt--description {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 80%;
}
.main .restaurant__content-menu--assiette input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: none;
}
.main .restaurant__content-menu--assiette .checkbox-faBtn {
  background-color: #99E2D0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-width: 70px;
  margin-left: 5px;
  margin-right: -3px;
  transition: all 0.3s ease-in;
  width: 0%;
}
.main .restaurant__content-menu--assiette .checkbox-faBtn .fa-check {
  background-color: white;
  border-radius: 25px;
  padding: 3px;
  color: #99E2D0;
  visibility: hidden;
  transition: all 0.15s ease-in;
}
.main .restaurant__content-menu input[type=submit] {
  background: linear-gradient(#FF79DA, #9356DC);
  border-radius: 25px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  color: white;
  padding: 13px 18px;
  border: none;
  padding: 15px 10%;
  margin: 40px auto;
}

.restaurant__content-title .likeBtn:hover .fa-solid {
  transform: scale(1);
}
.restaurant__content-title .likeBtn:hover .fa-regular {
  opacity: 0;
}
.restaurant__content-menu--title {
  animation: tada 300ms ease-in forwards;
}
.restaurant__content-menu--title--1 {
  animation-delay: 3.6s;
}
.restaurant__content-menu--title--2 {
  animation-delay: 3.9s;
}
.restaurant__content-menu--title--3 {
  animation-delay: 4.2s;
}
.restaurant__content-menu--assiette {
  animation: apparitionGauche 300ms ease-out both;
}
.restaurant__content-menu--assiette--1 {
  animation-delay: 300ms;
}
.restaurant__content-menu--assiette--2 {
  animation-delay: 600ms;
}
.restaurant__content-menu--assiette--3 {
  animation-delay: 900ms;
}
.restaurant__content-menu--assiette--4 {
  animation-delay: 1200ms;
}
.restaurant__content-menu--assiette--5 {
  animation-delay: 1500ms;
}
.restaurant__content-menu--assiette--6 {
  animation-delay: 1800ms;
}
.restaurant__content-menu--assiette--7 {
  animation-delay: 2100ms;
}
.restaurant__content-menu--assiette--8 {
  animation-delay: 2400ms;
}
.restaurant__content-menu--assiette--9 {
  animation-delay: 2700ms;
}
.restaurant__content-menu--assiette--10 {
  animation-delay: 3000ms;
}
.restaurant__content-menu--assiette input[type=checkbox] + .checkbox-faBtn {
  transition: all 0.3s ease-in;
}
.restaurant__content-menu--assiette input[type=checkbox]:checked + .checkbox-faBtn {
  width: 20%;
  transition: all 0.3s ease-in;
}
.restaurant__content-menu--assiette input[type=checkbox]:checked + .checkbox-faBtn .fa-check {
  visibility: visible;
}
.restaurant__content-menu--assiette input[type=checkbox]:checked + .checkbox-faBtn + label {
  width: 80%;
  transition: all 0.3s ease-in;
}
@media (min-width: 1024px) {
  .restaurant__content-menu--assiette:hover input[type=checkbox] + .checkbox-faBtn {
    transition: all 0.3s ease-in;
    width: 20%;
  }
  .restaurant__content-menu--assiette:hover input[type=checkbox] + .checkbox-faBtn .fa-check {
    visibility: visible;
  }
  .restaurant__content-menu--assiette:hover input[type=checkbox] + label {
    width: 80%;
    transition: all 0.3s ease-in;
  }
}
.restaurant__content-menu input[type=submit]:hover {
  opacity: 0.9;
  cursor: pointer;
}

@keyframes animation-accueil {
  from {
    opacity: 0;
    display: none;
  }
  to {
    opacity: 1;
  }
}
@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes chargement {
  from {
    transform: scaleY(0.5);
  }
  to {
    transform: scaleY(1);
  }
}
@keyframes load {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes block-chargement {
  from {
    width: 100%;
  }
  to {
    transform: scale(0);
    display: none;
    margin: 0;
  }
}
@keyframes ploof {
  0% {
    visibility: hidden;
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes apparitionGauche {
  0% {
    transform: scale(0) translateX(-2000px);
    opacity: 0;
  }
  50% {
    transform: scale(0.5, 1.3) translateX(100px);
    opacity: 0.8;
  }
  75% {
    transform: scale(1) translateX(30px);
    opacity: 0.9;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes flamme {
  0% {
    transform: translateX(10px) scale(0.8);
  }
  24% {
    transform: scale(1.05) translateX(-3px) translateY(4px);
    opacity: 0.8;
  }
  38% {
    transform: scale(0.8) translateX(2px) translateY(6px);
    opacity: 0.7;
  }
  56% {
    transform: scale(0.5) translateX(-4px) translateY(9px);
    opacity: 0.5;
  }
  72% {
    transform: scale(0.4) translateX(3px) translateY(12px);
    opacity: 0.4;
  }
  88% {
    transform: scale(0.25) translateX(-2px) translateY(15px);
    opacity: 0.2;
  }
  100% {
    transform: scale(0.1) translateX(3px) translateY(18px);
    opacity: 0.1;
  }
}
@keyframes tada {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}/*# sourceMappingURL=restaurants.css.map */