body {
  background-color: var(--clr-claire);
  width: 100dvw;
  overflow-x: hidden;
}
body .calendrier {
  width: 100dvw;
  height: 100dvh;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: left;
  align-items: center;
}
body .calendrier .foret {
  position: absolute;
  height: auto;
  z-index: -1;
  filter: brightness(0.5);
  -o-object-fit: cover;
  object-fit: cover;
  min-width: 100%; /* S'assure que l'image couvre la largeur */
  min-height: 100%; /* S'assure que l'image couvre la hauteur */
}
body .calendrier .texte {
  color: var(--clr-claire);
  width: 50%;
  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;
}
body .calendrier .case {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 85%;
  left: 50%;
  height: 30%;
  width: 100%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: end;
}
body .calendrier .case div {
  width: 20%;
  height: 100%;
  text-align: justify;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.5);
  margin: 25px;
  padding: 20px;
}
body .calendrier .case div h3 {
  font-size: 1.5rem;
}
body .calendrier .case div h3, body .calendrier .case div p {
  text-align: left;
  width: 100%;
  padding: 10px;
  margin: 10px;
}
body .conteneur {
  display: flex;
  justify-content: space-between;
  min-height: 50dvh;
  height: 50dvh;
  width: 100%;
  overflow: hidden;
}
body .conteneur .texte {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  width: 34%;
  color: white;
}
body .conteneur .texte:nth-of-type(1) {
  background-color: var(--clr-secondaire);
}
body .conteneur .texte:nth-of-type(2) {
  background-color: var(--clr-principale);
}
body .conteneur .texte h2 {
  font-size: 3rem;
  padding: 20px;
}
body .conteneur .texte p {
  font-size: 1.1rem;
  padding: 20px;
  text-align: left;
}
body .conteneur .ours {
  width: 34%;
  background-repeat: no-repeat;
  background-position: center;
}
body .conteneur-deux .texte {
  width: 50%;
  background-color: var(--clr-secondaire) !important;
}
body .conteneur-deux .ours {
  width: 50%;
}

/* Tablette */
@media screen and (max-width: 1024px) {
  body .calendrier .texte {
    width: 80%;
  }
  body .calendrier .texte h1 {
    font-size: 4rem;
    margin-bottom: 25px;
  }
  body .calendrier .case {
    justify-content: space-around;
  }
  body .calendrier .case div {
    width: 30%;
  }
  body .conteneur .texte h2 {
    font-size: 1.5rem;
  }
  body .conteneur .texte p {
    font-size: 1rem;
  }
}
/* Mobile */
@media screen and (max-width: 768px) {
  body .calendrier {
    height: auto;
    flex-direction: column;
  }
  body .calendrier .texte {
    padding-left: 0;
    width: 100%;
  }
  body .calendrier .texte h1, body .calendrier .texte h2 {
    text-align: center;
  }
  body .calendrier .texte h1 {
    font-size: 3rem;
  }
  body .calendrier .texte h2 {
    text-align: center;
  }
  body .calendrier .case {
    flex-direction: column;
    position: relative;
    transform: unset;
    top: unset;
    left: unset;
  }
  body .calendrier .case div {
    width: 80%;
  }
  body .conteneur {
    flex-direction: column;
    height: auto;
    min-height: unset;
  }
  body .conteneur .texte {
    width: 100%;
  }
  body .conteneur .ours {
    display: none;
  }
  body .conteneur-deux .ours {
    display: none;
  }
}/*# sourceMappingURL=calendrier-single.css.map */