/* 
 * HERO PARALLAX POUR PAGES CHAMBRES/GÎTES
 * Remplace le fond à icônes par une image fixe du carousel
 * Maintenance facilitée: une seule règle CSS pour toutes les pages
 */

/* Section hero avec fond d'icônes par défaut */
.additional_cover_room_show,
.additional_cover.additional_cover_room_show,
div.additional_cover_room_show {
  /* Hauteur fixe */
  height: 450px !important;
  min-height: 450px !important;
  max-height: 450px !important;
  
  /* Effet parallax - fond fixe */
  background-attachment: fixed !important;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  
  /* Marges nulles */
  margin: 0 !important;
  padding: 0 !important;
}

/* Overlay pour meilleure lisibilité du texte */
.additional_cover_room_show .site__cover-scrim-opacity {
  opacity: 0.5 !important;
}

/* Titres sur le hero */
.additional_cover_room_show h1,
.additional_cover_room_show h3 {
  color: white !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9) !important;
}

/* Suppression de l'espace blanc sous le hero */
.additional_cover_room_show + .wrapper_container__site,
.additional_cover_room_show + div {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
