/* Importation depuis Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');


/*
Section avec background ayant une forme courbée à droite
*/
.section-curved-right {
  position: relative;
  overflow-x: hidden;
}

.section-curved-right::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40%;
  background-color: #EBFFF6;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;

  z-index: 0;
}

.section-curved-right>* {
  position: relative;
  z-index: 1;
}

/* Section contenant une grid avec image à droite (la dernière colonne) qui passe derrière en mode mobile */
.section-img-right {
  position: relative;
}
@media (max-width: 768px) {
  .section-img-right .row {
    display: block;
  }
  /* Colonne texte : reprend toute la largeur, passe devant */
  .section-img-right .row>.col:first-child {
    position: relative;
    z-index: 1;
    width: 100%;
  }
  .section-img-right .row>.col:last-child {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.06;
    filter: blur(2px);
    pointer-events: none;
  }
  .section-img-right .row>.col:last-child img {
    width: 85%;
    height: auto;
  }
}


/* Animation de révélation lors du scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}