/*
Theme Name: Codesk Child
Description: Child theme for the Codesk themes
Author: gaviathemes
Template: codesk
*/

.breadcrumb-main {
  position: relative;
  background-image: url("https://laviedesanctification.com/wp-content/uploads/2025/07/image1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay noir semi-transparent */
.breadcrumb-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* noir avec opacité 50% */
  z-index: 1;
}

/* Pour que le texte reste au-dessus de l'overlay */
.breadcrumb-main * {
  position: relative;
  z-index: 2;
}

.breadcrumb a[href*="laviedesanctification.com"] {
    font-size: 0; /* cache le texte Home */
    position: relative;
}

.breadcrumb a[href*="laviedesanctification.com"]::after {
    content: "Accueil"; 
    font-size: 16px; 
    color: inherit; 
    position: relative;
    top: 0;
    left: 0;
}

/* Modification de la couleur */
:root {
    --tec-color-accent-primary: #FF6600 !important;
}
/* Ne plus afficher le texte du numéro, mais garder la flèche SVG */
.gva-list-number.style-1 .list-number-item .number span {
  color: transparent !important;   /* masque le texte */
  font-size: 0 !important;         /* s'assure qu'aucun espace texte n'apparaît */
  line-height: 0 !important;
}

/* Forcer l'affichage et l'alignement du SVG même s'il est dans le span */
.gva-list-number.style-1 .list-number-item .number span svg {
  display: inline-block !important;
  font-size: initial !important;
  width: auto;          /* ajuste selon ton SVG ; tu peux fixer width: 20px; si besoin */
  height: auto;
  vertical-align: middle;
}

/* Optionnel : si la flèche est trop à gauche/droite, ajuste la marge */
.gva-list-number.style-1 .list-number-item .number svg {
  margin-left: 6px; /* adapte la valeur */
  margin-top: -5px;
}



