/*========================= ABOUT ANIMATIONS ========================= */
.about h2 {
  opacity: 1;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.about .intro {
  opacity: 1;
  transform: translateY(40px);
  transition: all 1s ease;
  margin-bottom: 4rem;
}

.about-content {
  flex-direction: row;
  gap: 4rem;
}


.about-image img {
  width: 90%;
  max-width: 800px;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
  /* juste pour hover */
  opacity: 1;
  /* visible par défaut */
  transform: none;
  /* GSAP s’occupe du reste */
}

.about-image img.reveal {
  transform: scale(1) translateY(0);
  opacity: 1;
}


.buleabout {
  flex-direction: row;
  justify-content: center;
  gap: 10rem;
}

.buleimage {
  width: 250px;
  height: 250px;
  margin-bottom: 3rem;
}

/* ========================= ORBES (desktop) ========================= */
/* desktop (ajuste taille / positions) */
.orbe {
  width: 300px;
  height: 300px;
}

.orbe:nth-child(1) {
  top: 20vh;
  left: 5%;
}

.orbe:nth-child(2) {
  top: 35vh;
  left: 60%;
}

.orbe:nth-child(3) {
  top: 10vh;
  left: 80%;
}
