
  body {
    background: url("fond-processus.png") repeat;
      background-size: 600px 600px; /* ajuste si besoin */ 
  }
  

/* 🧱 Section globale */
.processus {
  color: #333;
  font-family: 'Montserrat', sans-serif;
  padding: 80px 20px;
  text-align: center;
}

/* 🧑‍🎓 Titre principal */
.processus h1 {
  padding-top: 40px;
  font-family: 'Domine', serif;
  margin-bottom: 20px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #4c2f21;
}

/* ✍️ Texte d’intro */
.processus .intro {
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;;
  opacity: 0.9;
}

/* 🧩 Grille des étapes */
.steps {
  display: grid;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

/* 💬 Bulles blanches */
.step {
  background: white;
  padding: 30px;
  border-radius: 16px;
  text-align: left;
  transition: box-shadow 0.3s ease;
  color: #333;;
}

/* ✨ Effet hover */
.step:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* ✏️ Titre étape */
.step h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent-dark);
  font-family: 'Domine', serif;
}

/* 🧾 Texte étape */
.step p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;;
  opacity: 0.85;
}

body, p, span, .step p, .processus .intro {
  font-family: 'Montserrat', sans-serif;
}

.step h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #c69c7b; /* ou var(--color-accent-dark) si défini */
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: 'Domine', serif;
}

.step h2 img {
  width: 36px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  object-fit: contain; 
}

.step:hover h2 img {
  transform: scale(1.1) rotate(-3deg);
  transition: transform 0.3s ease;
}

/* ✨ Animation fade-in au chargement */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/*-COULEUR FOOTER-*/

.site-footer {
  background: url("../Processus/fond-processus.png") repeat;
  background-size: 600px 600px;
}