/**
 * Page d'accueil (index) - arrière-plan type salle serveur / informatique
 * Image : salle_serveur.jpg (à placer dans images/it_service/)
 * Vous pouvez remplacer par votre propre image de salle serveur.
 */
body.page-index {
  position: relative;
}

body.page-index::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Image : salle_serveur.jpg dans images/it_service/ (ou slide2.jpg pour tester) */
  background-image: linear-gradient(
      rgba(30, 40, 55, 0.82),
      rgba(30, 40, 55, 0.78)
    ),
    url('../images/it_service/salle_serveur.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -2;
}

/* Fallback si l'image n'existe pas : fond sombre */
body.page-index {
  background-color: #1e2837;
}

/* Légère surbrillance des sections pour garder la lisibilité */
body.page-index .section {
  position: relative;
  z-index: 0;
}

body.page-index .light_silver {
  background-color: rgba(245, 247, 250, 0.97);
}

body.page-index .padding_layout_1:not(.light_silver) {
  background-color: rgba(255, 255, 255, 0.96);
}
