/* ===================================================
   CHARTE GRAPHIQUE FIT in GROUP - Alignement Web
   =================================================== */

/* 1. Police (Noto Sans en remplacement web d'Ebrima) */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&amp;display=swap');

body, p, li, span, div, a, input, textarea, button {
  font-family: 'Noto Sans', Arial, sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Sans', Arial, sans-serif !important;
  font-weight: 700 !important;
  color: #2E59A3 !important; /* Bleu Pantone 286 */
}

/* 2. Liens */
a {
  color: #2E59A3; /* Bleu Pantone 286 */
  transition: color 0.2s ease;
}
a:hover {
  color: #EC5A4F; /* Rouge/Corail Pantone 485 */
}

/* 3. Boutons et CTA (Elementor + Gutenberg + formulaires) */
.elementor-button,
.wp-block-button__link,
button:not(.mfp-close),
input[type="submit"] {
  background-color: #EC5A4F !important;
  border-color: #EC5A4F !important;
  color: #FFFFFF !important;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.elementor-button:hover,
.wp-block-button__link:hover,
button:not(.mfp-close):hover,
input[type="submit"]:hover {
  background-color: #2E59A3 !important;
  border-color: #2E59A3 !important;
  color: #FFFFFF !important;
}