/* Style de base du lien de menu */
header nav a {
  position: relative;
  text-decoration: none;
  display: inline-block;
}

/* Trait permanent visible sous chaque lien */
header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 25%; /* Tiret visible même sans survol */
  height: 2px;
  background-color: #ff5c38; /* Couleur du trait */
  transition: width 0.3s ease;
}

/* Survol : le trait s’allonge */
header nav a:hover::after {
  width: 100%;
}
/* Supprimer le soulignement noir par défaut */
header nav a {
  text-decoration: none !important;
  box-shadow: none !important;
  border-bottom: none !important;
}
.widgettitle {
	background-color: #1d1d1b !important;
	color: white;
	padding: 8px 12px;
	font-weight: bold;
}




