body {
  background-color: #f3e8ff;
  color: black;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 18px;
  margin: 0;
  padding: 20px;
}
.ex {
  font-family: 'Poppins', sans-serif;
  font-size: 72px;
  font-weight: 800;
  color: #6a4b9a; /* violet chic */
  text-align: center;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 40px 0;
  
  /* Animation */
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 0.3s;
}

/* Animation keyframes */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




a {
  display: block;
  margin: 20px 0;
  color: black;
  font-weight: 600;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.style1 {
  background-color: #f3e8ff;
  padding: 20px;
  margin: 30px 0;
  border-radius: 10px;
}
p {
  font-family: 'Playfair Display', serif;
  font-size: 25px;
  line-height: 1.6;
  color: #333333; /* texte sombre sur fond violet pâle */
}
/* Animation d'apparition pour les images */
img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  margin-bottom: 20px;

  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpImg 1s ease forwards;
  animation-delay: 0.5s;
  transition: transform 0.3s ease;
}

/* Zoom doux au survol */
img:hover {
  transform: scale(1.05);
  cursor: pointer;
}

/* Animation clé fadeUp pour les images */
@keyframes fadeUpImg {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pour animer plusieurs images avec des délais différents */
.image-row img:nth-child(1) {
  animation-delay: 0.4s;
}
.image-row img:nth-child(2) {
  animation-delay: 0.6s;
}
.image-row img:nth-child(3) {
  animation-delay: 0.8s;
}
.image-row img {
  width: 250px;
  height: auto;
}




