@charset "UTF-8";
body {
  width: 100dvw;
  overflow-x: hidden;
  background-color: var(--clr-claire);
}
body .calendrier {
  width: 100dvw;
  height: 100dvh;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
}
body .calendrier .foret {
  position: absolute;
  min-width: 100%; /* S'assure que l'image couvre la largeur */
  min-height: 100%; /* S'assure que l'image couvre la hauteur */
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
  z-index: -1;
}
body .calendrier .texte {
  color: var(--clr-claire);
  width: 40%;
  height: 100%;
  padding-left: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body .calendrier .texte h1, body .calendrier .texte h2 {
  letter-spacing: 3px;
}
body .calendrier .texte h1 {
  font-size: 6rem;
  text-align: left;
}
body .calendrier .texte h2 {
  text-align: left;
  font-family: "Chapaza", sans-serif;
}
body .calendrier .date {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 20%;
  height: 100%;
}
body .calendrier .date .chiffre {
  width: 50%;
  height: 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}
body .calendrier .date .chiffre h3 {
  color: var(--clr-claire);
  font-size: 2rem;
  letter-spacing: 3px;
  text-shadow: -2px 6px 3px var(--clr-secondaire);
  position: relative;
  transition: font-size ease-in 300ms, transform ease-in 1000ms;
  top: 0%;
}
body .calendrier .date .chiffre .grand {
  font-size: 4rem;
}
body .calendrier .date .trait {
  height: 50%;
  width: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body .calendrier .date .trait div {
  border-bottom: 3px solid var(--clr-claire);
  width: 100%;
}
body .calendrier .caroussel {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 85%;
  left: 50%;
  display: flex;
  color: var(--clr-claire);
  width: 85%;
  height: 20%;
  letter-spacing: 2px;
  border-bottom: solid var(--clr-claire) 3px;
}
body .calendrier .caroussel .container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  cursor: pointer;
  border-bottom: solid var(--clr-accent) 0px;
  transition: border-bottom ease 50ms;
}
body .calendrier .caroussel .container img {
  width: 10%;
  height: auto;
  margin-right: 20px;
}
body .calendrier .caroussel .container div p {
  font-size: 1.1rem;
}
body .calendrier .caroussel .container div a {
  font-size: 1.2rem;
  color: var(--clr-claire);
  padding-top: 10px;
  text-shadow: -2px 4px 5px var(--clr-secondaire);
}
body .carte {
  min-height: 100dvh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--clr-claire);
  position: relative;
}
body .carte .image {
  width: 70%; /* L'image occupe 70% de la largeur de la carte */
  max-width: 600px; /* Limite la taille pour les grands écrans */
  height: auto; /* Maintient les proportions de l'image */
  transition: width 0.3s ease;
}
body .carte .notation {
  display: flex;
  justify-content: space-between;
  text-align: center;
  width: 100%;
  height: 50%;
  padding-top: 50px;
  z-index: 2;
}
body .carte .notation .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  flex-direction: column;
  cursor: pointer;
  scale: 0.9;
  width: 25%;
  background-color: var(--clr-claire-secondaire);
  transition: scale ease-in 300ms;
  border-radius: 25px;
}
body .carte .notation .container .container-image {
  height: 66%;
  width: 100%;
  overflow: hidden;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}
body .carte .notation .container .container-image .lieu {
  width: auto;
  height: 100%;
  border-radius: 25px;
}
body .carte .notation .container .etoile, body .carte .notation .container .texte {
  padding: 30px;
}
body .carte .notation .container .texte {
  height: 34%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px;
}
body .carte .notation .container .texte h3 {
  font-size: 2.2rem;
}
body .carte .notation .container .texte a {
  letter-spacing: 0.5px;
  opacity: 0.7;
  font-size: 1.1rem;
  color: black;
}
body .carte .notation .grand {
  scale: 1.1;
}
body .carte .image {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 1;
}

@media screen and (max-width: 1024px) {
  body .calendrier .texte {
    width: 90%;
  }
  body .calendrier .caroussel {
    flex-direction: column;
    border-bottom: unset;
  }
  body .calendrier .caroussel .container {
    display: none;
  }
  body .carte {
    height: auto;
  }
  body .carte .image {
    display: none;
  }
  body .carte .notation {
    flex-direction: column;
  }
  body .carte .notation .container {
    width: 90%;
  }
  body .carte .notation .container .texte {
    padding: 20px;
  }
  body .carte .notation .container .texte h3 {
    font-size: 3rem;
  }
  body .carte .notation .container .texte a {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 768px) {
  body .calendrier .texte {
    width: 90%;
  }
  body .calendrier .texte h1 {
    font-size: 2rem;
    margin-bottom: 25px;
  }
  body .calendrier .texte h2 {
    font-size: 1rem;
  }
  body .calendrier .caroussel {
    flex-direction: column;
    border-bottom: unset;
  }
  body .calendrier .caroussel .container {
    display: none;
  }
  body .carte {
    height: auto;
  }
  body .carte .image {
    display: none;
  }
  body .carte .notation {
    flex-direction: column;
  }
  body .carte .notation .container {
    width: 90%;
  }
  body .carte .notation .container .container-image .lieu {
    width: 100%;
    height: auto;
  }
  body .carte .notation .container .texte {
    padding: 20px;
  }
  body .carte .notation .container .texte h3 {
    font-size: 2rem;
  }
  body .carte .notation .container .texte a {
    font-size: 1.5rem;
  }
}/*# sourceMappingURL=calendrier.css.map */