/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 05 2025 | 13:04:02 */
/* H1 - Titre principal */
h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c3e50;            /* texte foncé */
  margin-bottom: 1rem;
  padding: 12px 16px;
}

/* H2 - Sous-titre section */
h2 {
  font-size: 1.7rem;
  font-weight: 700;
  color: #2c3e50;            /* texte foncé */
  margin-bottom: 1rem;
  padding: 10px 14px;
}

/* H3 - Sous-sections */
h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;             /* texte foncé sur fond bleu doux */
  padding: 8px 12px;
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
}

/* Ajustements pour écrans mobiles */
@media (max-width: 768px) {
  h1 {
    font-size: 1.6rem;
    padding: 10px 12px;
  }
  h2 {
    font-size: 1.4rem;
    padding: 8px 10px;
  }
  h3 {
    font-size: 1.2rem;
    padding: 6px 8px;
  }
  h4 {
    font-size: 1.1rem;
    padding: 4px 6px;
  }
  h5 {
    font-size: 1rem;
  }
  h6 {
    font-size: 0.9rem;
  }
}


/* H4 - détails ou petites rubriques */
h4 {
  font-size: 1.3rem;
  font-weight: 500;
  color: #ffffff;             /* texte blanc */
  padding: 6px 10px;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* H5 - accent léger */
h5 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #2c3e50;             /* gris foncé */
  margin-top: 1rem;
  margin-bottom: 0.3rem;
  font-style: italic;
}

/* H6 - tout petit titre */
h6 {
  font-size: 1rem;
  font-weight: 400;
  color: #7f8c8d;             /* gris doux */
  margin-top: 0.8rem;
  margin-bottom: 0.2rem;
}

