/* Éclaircir le texte du menu principal */
.main-navigation a,
.menu a,
.navbar a,
.site-header nav a {
  color: #f5f5f5 !important;
}

.coaching-card {
  border: 1px solid #444; /* Liseré gris foncé */
  border-radius: 12px; /* Coins arrondis */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4); /* Ombre pour le relief */
  background-color: white;
  padding: 2rem;
  margin: 1rem;
}


a[href^="/"] {
  color: #ffefc0 !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

a[href^="/"]:hover {
  color: #ffffff !important;
}

/* Liens par défaut */
a {
  color: #ffefc0 !important;
  text-decoration: none; /* enlève le soulignement, optionnel */
  transition: color 0.3s ease;
}

/* Liens au survol */
a:hover {
  color: #ffffff !important; /* couleur différente au survol */
  text-decoration: underline; /* optionnel : ajoute soulignement au survol */
}

/* Liens au survol pour les fonds blancs*/
a.hover-white:hover {
  color: #4287f5 !important;
  text-decoration: underline !important;
}

h1 {
  text-align: center;
}

/* Décalage des tirets (li) */
.li-custom {
  margin-left: 5rem;
}


/* Ligne de séparation pour le footer */
body.page-id-4 .full-width-widget-area,
body.page-id-9 .full-width-widget-area,
body.page-id-510 .full-width-widget-area,
body.page-id-1121 .full-width-widget-area,
body.page-id-1130 .full-width-widget-area,
body.page-id-1132 .full-width-widget-area{
    position: relative;
}

body.page-id-4 .full-width-widget-area::before,
body.page-id-9 .full-width-widget-area::before,
body.page-id-510 .full-width-widget-area::before,
body.page-id-1121 .full-width-widget-area::before,
body.page-id-1130 .full-width-widget-area::before,
body.page-id-1132 .full-width-widget-area::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    border-top: 2px solid #ffefc0;
}

/* Liens hypertextes sur fond blanc */
a.link-text {
	color: #F5A327 !important;
}

a.link-text:hover {
  color: #4287f5 !important;
  text-decoration: underline !important;
}