:root { --primary-color: #2522d8; --secondary-color: #0a2a4a;   --fuchsia: #d4145a; }
    .text-primary { color: var(--primary-color) !important; }
    .bg-primary { background-color: var(--primary-color) !important; }
    .btn-primary { background-color: var(--primary-color); border-color: var(--primary-color); }
    .btn-primary:hover { background-color: #201db9; border-color: #201db9; }
    .bg-fuchsia { background-color: var(--fuchsia) !important; color: white; }
    .icon-box { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 1.5rem; margin-bottom: 1rem; 
    }

/* Navbar Épurée */
.navbar-clean {
  background-color: #ffffff !important;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.navbar-clean .nav-link {
  color: #4a5568 !important;
  font-weight: 500;
  transition: color 0.2s ease;
}
.navbar-clean .nav-link:hover, 
.navbar-clean .nav-link.active {
  color: var(--primary-color) !important;
}

/* Structure Hero avec balise vide en background */
.hero-page {
  position: relative;
  padding: 5rem 0; /* Ajuste la hauteur ici */
  background-color: var(--secondary-color);
  color: #ffffff;
  overflow: hidden;
}

/* La balise vide qui charge l'image en arrière-plan */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/cleaning.jpg'); /* Ton image locale unique */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2; /* Ajuste entre 0.1 et 0.3 selon la clarté de ton image */
  z-index: 1;
}

.hero-bg-paiement{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/paiement.jpg'); /* Ton image locale unique */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2; /* Ajuste entre 0.1 et 0.3 selon la clarté de ton image */
  z-index: 1;
}

.hero-bg-flyers{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/plumber.jpg'); /* Ton image locale unique */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2; /* Ajuste entre 0.1 et 0.3 selon la clarté de ton image */
  z-index: 1;
}
.hero-bg-catalogue{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/traiteur.jpg'); /* Ton image locale unique */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2; /* Ajuste entre 0.1 et 0.3 selon la clarté de ton image */
  z-index: 1;
}

.hero-bg-contacts{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/electrician.jpg'); /* Ton image locale unique */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2; /* Ajuste entre 0.1 et 0.3 selon la clarté de ton image */
  z-index: 1;
}

.hero-bg-about{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/birthday.jpg'); /* Ton image locale unique */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2; /* Ajuste entre 0.1 et 0.3 selon la clarté de ton image */
  z-index: 1;
}

/* Force le contenu à passer au-dessus de l'image */
.hero-page .container {
  position: relative;
  z-index: 2;
}