@keyframes animloader {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 100%;
  }
}
@keyframes endloader {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    pointer-events: none;
  }
}
@keyframes slide {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
* {
  font-family: "Roboto", sans-serif;
}

html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

#main-container {
  width: 100%;
  box-sizing: border-box;
  min-width: 350px;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
  width: 100%;
}

h1 {
  font-size: 24px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

h2 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 30px;
}

.loader {
  background-color: #353535;
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation-name: endloader;
  animation-delay: 1.5s;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
.loader p {
  font-family: "Shrikhand", sans-serif;
  font-size: 40px;
  animation: animloader 1s ease-in-out infinite;
  background: linear-gradient(90deg, #353535, #F6F6F6, #353535);
  color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
  background-size: 200%;
  animation-direction: alternate;
  padding: 10px;
}

.btn {
  background: linear-gradient(to top, #9356DC, #FF79DA 100%);
  width: 218px;
  height: 50px;
  border-radius: 100em;
  border: none;
  color: white;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn:hover {
  filter: brightness(1.05);
}

.commander {
  background: linear-gradient(to top, #9356DC, #FF79DA 100%);
  width: 218px;
  height: 50px;
  border-radius: 100em;
  border: none;
  color: white;
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 500;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.commander:hover {
  filter: brightness(1.05);
}

.card {
  background-color: white;
  border-radius: 15px;
  filter: drop-shadow(0px 3px 15px rgba(0, 0, 0, 0.1));
  flex-direction: column;
  width: 100%;
  height: 251px;
  position: relative;
}

.card img {
  -o-object-fit: cover;
     object-fit: cover;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.card-text {
  gap: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.new {
  width: 80px;
  height: 29px;
  position: absolute;
  background: #99E2D0;
  color: #008766;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 13px;
  right: 13px;
  border-radius: 2px;
  box-shadow: 0px 4.01px 15.04px 0px rgba(0, 0, 0, 0.1019607843);
}

.heart-input {
  display: none;
}

.heart-label {
  cursor: pointer;
  font-size: 24px;
  z-index: 2;
}

.heart-full {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(#9356DC, #FF79DA);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.4s ease;
}

.heart-empty {
  transition: opacity 0.3s ease;
}

.heart-label:hover .heart-full {
  opacity: 1;
  clip-path: inset(0% 0 0 0);
}
.heart-label:hover .heart-vide {
  opacity: 0;
}

.plats {
  box-shadow: 0px 4.01px 15.04px 0px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  display: flex;
  height: 69px;
  background-color: white;
  margin-bottom: 12px;
  flex-direction: row;
  gap: 5px;
  width: 100%;
  border: none;
  justify-content: space-between;
  padding: 0;
  position: relative;
  opacity: 0;
  animation: slide 0.4s ease forwards;
}
.plats:hover .plat-prix {
  padding-right: 59px;
  transition: clip-path 0.4s ease;
}
.plats:hover .check {
  opacity: 1;
  clip-path: inset(0 0 0 0%);
}

.plat-full {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 100%;
}

.plat-title {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  padding-left: 15px;
  display: flex;
  flex-direction: row;
}

.plat-content {
  display: flex;
  justify-content: space-between;
  font-size: 15.03px;
  padding-left: 15px;
  padding-right: 15px;
}

.plat-description {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.check {
  color: white;
  background-color: #99E2D0;
  width: 59px;
  height: 69px;
  display: flex;
  font-size: 20px;
  border-radius: 0px 20px 20px 0px;
  opacity: 0;
  clip-path: inset(0 0 0 100%);
  transition: clip-path 0.4s ease;
  position: absolute;
  right: 0;
  top: 0;
  justify-content: center;
  align-items: center;
}

.menu:nth-of-type(1) .plats:nth-child(1) {
  animation-delay: 2.1s;
}

.menu:nth-of-type(1) .plats:nth-child(2) {
  animation-delay: 2.2s;
}

.menu:nth-of-type(1) .plats:nth-child(3) {
  animation-delay: 2.3s;
}

.menu:nth-of-type(2) .plats:nth-child(1) {
  animation-delay: 2.5s;
}

.menu:nth-of-type(2) .plats:nth-child(2) {
  animation-delay: 2.6s;
}

.menu:nth-of-type(2) .plats:nth-child(3) {
  animation-delay: 2.7s;
}

.menu:nth-of-type(3) .plats:nth-child(1) {
  animation-delay: 2.9s;
}

.menu:nth-of-type(3) .plats:nth-child(2) {
  animation-delay: 3s;
}

.menu:nth-of-type(3) .plats:nth-child(3) {
  animation-delay: 3.1s;
}

header {
  width: 100%;
  box-shadow: 0px 4px 4px 0px rgb(207.75, 207.75, 207.75);
  z-index: 100;
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  height: 63px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
header a {
  display: flex;
  justify-content: center;
}

.header-restaurant {
  width: 100%;
  z-index: 100;
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  height: 63px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
.header-restaurant a {
  display: flex;
  justify-content: center;
}

.logo {
  height: 36px;
}

.fleche {
  color: #353535;
  font-size: 30px;
  height: 30px;
  width: 30px;
  padding-left: 20px;
}

.empty {
  height: 30px;
  width: 30px;
}

.photo-presentation {
  width: 100%;
  height: 275px;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  top: 63px;
}

form {
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EAEAEA;
  box-shadow: 0px 4px 4px 0px rgb(182.25, 182.25, 182.25);
  gap: 17px;
  position: relative;
  z-index: 0;
  padding-top: 63px;
}

.recherche {
  border: none;
  background: #EAEAEA;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #353535;
  text-align: center;
  width: 140px;
}

footer {
  background-color: #353535;
  color: white;
  padding: 18px;
  gap: 7px;
}
@media (min-width: 768px) {
  footer {
    height: 114px;
    align-items: flex-end;
    flex-direction: row-reverse;
    padding-right: 25px;
    display: flex;
    gap: 19px;
  }
}
footer h2 {
  font-family: "Shrikhand", sans-serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  footer h2 {
    width: 139px;
    margin-left: 30px;
  }
}
footer a {
  display: flex;
  align-items: center;
  gap: 7px;
}

@media (min-width: 768px) {
  .link-contener {
    display: flex;
    flex-direction: row;
    margin-bottom: 24px;
    gap: 16px;
  }
}

.list-link {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 5px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .list-link {
    display: flex;
    flex-direction: row;
    gap: 16px;
  }
}

.presentation {
  background-color: #F6F6F6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 30px;
  text-align: center;
}

.fonctionnement {
  padding: 18px;
  padding-bottom: 48px;
  background-color: white;
}
@media (min-width: 768px) {
  .fonctionnement {
    padding-left: 15%;
    padding-right: 15%;
  }
}

@media (min-width: 768px) {
  .fonctionnement-container {
    display: flex;
    gap: 25px;
  }
}
@media (min-width: 1024px) {
  .fonctionnement-container {
    gap: 33px;
  }
}

.fonctionnement__etapes {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  width: 100%;
  align-items: center;
  position: relative;
}
.fonctionnement__etapes:hover .fonctionnement__logo {
  color: #9356DC;
}

.fonctionnement__logo {
  color: #7E7E7E;
}

.fonctionnement__bulle {
  background-color: #9356DC;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: white;
  position: absolute;
  left: -12px;
}

.etapes {
  box-shadow: 0px 4.01px 15.04px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 33px;
  padding-left: 33px;
  padding-right: 33px;
  height: 73px;
  width: 100%;
  background-color: #F6F6F6;
}
@media (min-width: 768px) {
  .etapes {
    padding-left: 15%;
    gap: 15%;
    padding-right: 15%;
  }
}
@media (min-width: 1024px) {
  .etapes {
    padding-left: 33px;
    padding-right: 33px;
    gap: 33px;
  }
}

.restaurants {
  background-color: #F6F6F6;
  padding: 18px;
  padding-bottom: 48px;
}
@media (min-width: 768px) {
  .restaurants {
    padding-left: 15%;
    padding-right: 15%;
  }
}

.restaurants-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.restaurants-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media (min-width: 768px) {
  .restaurants-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}
.restaurants-cards .card {
  display: flex;
  margin-bottom: 18px;
  position: relative;
}
.restaurants-cards img {
  width: 100%;
  height: 70%;
  border-radius: 15px 15px 0 0;
}
.restaurants-cards .card-content {
  padding: 15px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  box-sizing: border-box;
  align-items: center;
  height: 30%;
}

.restaurants-cards .heart-label {
  position: absolute;
  right: 20px;
  bottom: 20px;
}

.card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  z-index: 1;
  position: relative;
}

.card-content p {
  margin: 0;
}

.main-container h1 {
  font-family: "Shrikhand", sans-serif;
  font-size: 28px;
  font-weight: 400;
  display: block;
  color: #353535;
  margin-bottom: 0;
  margin-top: 0;
}

.main-container h2 {
  font-weight: 300;
  font-size: 16px;
  margin-top: 0;
  color: #353535;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}
.main-container h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #99E2D0;
}

.restaurant-container {
  padding-right: 12px;
  padding-left: 12px;
  background-color: #F6F6F6;
  border-radius: 50px 50px 0 0;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .restaurant-container {
    width: 70%;
    display: flex;
    margin: auto;
    gap: 40px;
  }
}

.title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  color: #353535;
}
@media (min-width: 768px) {
  .title {
    justify-content: center;
  }
}

.title .heart-label {
  position: relative;
  margin-left: 15px;
  bottom: unset;
  right: unset;
}

.menu {
  margin-bottom: 40px;
  width: 100%;
  opacity: 0;
  animation: slide 0.5s ease forwards;
}
@media (min-width: 768px) {
  .menu {
    width: 70%;
    margin: auto;
  }
}/*# sourceMappingURL=main.css.map */