@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Arizonia&family=Shrikhand&display=swap");
* {
  text-decoration: none;
  font-family: "Roboto", sans-serif;
}

/*--Les Mixin--*/
/*--Les Mixin--*/
@keyframes enso {
  0% {
    opacity: 0, 5;
  }
  70% {
    opacity: 0, 3;
  }
  100% {
    display: none;
  }
}
@keyframes chargeur {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(360deg) scale(1.2);
  }
  100% {
    transform: rotate(720deg) scale(1);
  }
}
@keyframes coulissement1 {
  from {
    width: 300px;
  }
  to {
    width: 220px;
  }
}
@keyframes slide1 {
  from {
    left: 262px;
  }
  to {
    left: 222px;
  }
}
@keyframes coulissement {
  from {
    width: 300px;
  }
  to {
    width: 290px;
  }
}
@keyframes slide {
  from {
    left: 262px;
  }
  to {
    left: 222px;
  }
}
body {
  margin: 0px;
  height: 1275px;
}

h2 {
  font-size: 18px;
  font-weight: 600;
}

main {
  height: 1448px;
}

header {
  display: flex;
  justify-content: center;
}

.toppage {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 90px;
}
.toppage a {
  display: flex;
  position: absolute;
  left: 20px;
}
.toppage a i {
  color: black;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0px 80px;
  width: 90%;
}
.logo img {
  width: 162px;
  height: 30px;
  padding: 14px 16px;
}

.image-principal img {
  width: 100%;
  height: 275px;
  -o-object-fit: cover;
     object-fit: cover;
}

.all-menu {
  background-color: #F6F6F6;
  border-radius: 40px 40px 0px 0px;
  position: relative;
  top: -80px;
  padding: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.all-menu .menu {
  display: flex;
  justify-content: center;
  align-items: center;
}
.all-menu .menu .menu-titre {
  display: flex;
  align-items: center;
  font-size: 21px;
}
.all-menu .menu .menu-titre h1 {
  font-family: "Shrikhand", serif;
  font-size: 28px;
  font-weight: 400;
  margin-left: 25px;
  margin-right: 20px;
}

.like {
  position: relative;
  cursor: pointer;
}
.like:hover .likedimg {
  opacity: 1;
  transition: all 4S;
}

.likedimg {
  position: absolute;
  left: 0px;
  opacity: 0;
}

@keyframes opacityFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.menu-sous-titre {
  border-bottom: solid 3px rgb(153, 226, 208);
  width: 40px;
}
.menu-sous-titre h2 {
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.menu-cards {
  margin-bottom: 40px;
}
.menu-cards .card-solo {
  width: 319px;
  height: 42px;
  align-items: center;
  background-color: #FFF;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  margin: 15px 0px;
  padding: 15px;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  animation: opacityFade 2S;
}
.menu-cards .card-solo:hover .secleft {
  animation: coulissement1 330ms forwards;
}
.menu-cards .card-solo:hover .valide {
  transform: translate(-100%, 0);
}
.menu-cards .card-solo:hover .prix {
  transform: translate(-80%, 0);
}

@keyframes coulissement {
  from {
    width: 300px;
  }
  to {
    width: 220px;
  }
}
@keyframes slide {
  from {
    left: 262px;
  }
  to {
    left: 222px;
  }
}
.secleft {
  height: 43px;
  width: 300px;
  margin: 0px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  transform: scaleX(0) 330ms ease-in-out;
}
.secleft .focus {
  animation: coulissement 330ms ease-in-out;
}
.secleft h2 {
  margin: 0px 0px 5px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 18px;
  font-weight: 500;
}
.secleft p {
  margin: 0px;
  font-size: 14px;
  font-weight: 300;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.prix {
  color: black;
  display: flex;
  justify-content: end;
  width: 72px;
  height: 72px;
  align-items: self-end;
  position: absolute;
  left: 262px;
  font-weight: 700;
  transition: transform 330ms ease-in-out;
}

.valide {
  width: 59px;
  height: 72px;
  background: #99E2D0;
  color: white;
  border-radius: 0px 15px 15px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 349px;
  transition: transform 330ms ease-in-out;
}

.btn-con {
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-con :hover {
  border-radius: 25px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.15) 100%), linear-gradient(201deg, #9356DC -5.2%, #FF79DA 110.74%);
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.35);
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  margin: 40px 0px;
  width: 186px;
  height: 50px;
  border-radius: 25px;
  background: linear-gradient(193deg, #9356DC -11.44%, #FF79DA 123.93%);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.all {
  height: 1275px;
}

/*-- footer--*/
.sectionftr {
  background-color: #353535;
  padding: 22px 25px;
}
.sectionftr .footerLogo img {
  width: 139px;
  height: 27px;
  margin-bottom: 16px;
}
.sectionftr .footerlink1 {
  display: flex;
  margin-bottom: 5px;
}
.sectionftr .footerlink1 i {
  color: white;
  margin-right: 11px;
}
.sectionftr .footerlink1 a {
  color: white;
}
.sectionftr .footerlink2 {
  display: flex;
  margin-bottom: 5px;
}
.sectionftr .footerlink2 i {
  color: white;
  margin-right: 11px;
  width: 14px;
  height: 13px;
}
.sectionftr .footerlink2 a {
  color: white;
}

.footerlink3 a {
  margin-bottom: 5px;
  color: white;
}

/* Le code ci-dessous correspond à la version responsive uniquement */
/****** Media queries ***********/
/* Medium devices (tablets, less/equal than 600px)*/
@media (min-width: 649px) {
  .toppage a {
    left: 50px;
  }
  .logo {
    width: 90%;
  }
  .menu-cards {
    margin-bottom: 40px;
  }
  .menu-cards .card-solo {
    width: 605px;
  }
  .menu-cards .card-solo:hover .secleft {
    animation: coulissement 330ms forwards;
  }
  .menu-cards .card-solo .valide {
    left: 635px;
  }
  .menu-cards .card-solo .prix {
    left: 546px;
  }
  h1 {
    margin-left: 0px;
    font-family: "shrikhand";
  }
  .footerLogo {
    display: flex;
    justify-content: end;
    align-items: flex-end;
    padding-top: 19px;
    margin-left: 70px;
  }
  .sectionftr {
    display: flex;
    flex-direction: row-reverse;
  }
  .allFooterLink {
    display: flex;
    gap: 20px;
    padding-top: 22px;
  }
  .footerlink3 {
    display: flex;
    gap: 6px;
  }
  .all-menu {
    max-width: 1055px;
    margin: auto;
  }
  @keyframes coulissement {
    from {
      width: 300px;
    }
    to {
      width: 290px;
    }
  }
  @keyframes slide {
    from {
      left: 262px;
    }
    to {
      left: 222px;
    }
  }
}
/* Medium devices (tablets, less/equal than 1183px)*//*# sourceMappingURL=stylemenu1.css.map */