/* media querie for different devices : https://css-tricks.com/snippets/css/media-queries-for-standard-devices/ */

.carousel-container {
    height: 80vh; /* 80% of the viewport height */
    overflow: hidden;
}

.carousel-inner,
.carousel-item {
    height: 100%; /* Remplit tout l'espace disponible */
}

.carousel-item img {
    object-position: center;
    height: 80vh;
    object-fit: scale-down; /* Évite la déformation et ajuste bien l'image */
}

/* .carousel-control-next-icon,
.carousel-control-prev-icon {
  filter: invert(1);
} */



.carousel-control-prev-icon,
.carousel-control-next-icon {
  height: 100px;
  width: 100px;
  outline: black;
  background-size: 100%, 100%;
  /* border-radius: 50%;
  border: 1px solid black; */
  background-image: none;
}

.carousel-control-next-icon:after
{
  content: '>';
  font-size: 55px;
  color: red;
}

.carousel-control-prev-icon:after {
  content: '<';
  font-size: 55px;
  color: red;
}

.photo-intervenant {
  max-width: 250px;
}

ul.liste_perso li::marker {
    content: "⟡";/*👉 */
    font-weight: bold;
    color: hotpink;
}

ul.liste_perso li {
  padding-inline-start: 1ch;
}

.ratio-9x16 {
  aspect-ratio: 9 / 16;
  width: 100%;
}

.humour {
    /* background: #1e1e2f; */
    border-radius: 12px;
    padding: 20px 30px;
    max-width: 600px;
    margin: auto;
    box-shadow: 0 0 15px #ff3c78;
    position: relative;
    overflow: hidden;
  }
  .humour h1 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ff3c78;
    text-shadow: 0 0 8px #ff3c78;
  }
  .humour p {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .emoji {
    display: inline-block;
    margin: 0 5px;
    animation: bounce 1.2s infinite;
    transform-origin: 50% 50%;
  }
  .emoji:nth-child(2) { animation-delay: 0.2s; }
  .emoji:nth-child(3) { animation-delay: 0.4s; }
  .emoji:nth-child(4) { animation-delay: 0.6s; }
  .emoji:nth-child(5) { animation-delay: 0.8s; }
  .emoji:nth-child(6) { animation-delay: 1s; }
  @keyframes bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-12px) scale(1.2); }
  }
  /* Highlight important words */
  .highlight {
    color: #ff77aa;
    font-weight: 700;
    text-shadow: 0 0 6px #ff77aa;
  }
