/*video en fond sur la page d'accueil*/

:root{
  --header-h: 72px; 
}

.hero-video {
  position: relative;
  min-height: 50vh;
  overflow: hidden;
  background: #000; /* fallback */
}

.hero-video__bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video__media video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.hero-video__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 1;
}

.hero-video__content_container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.hero-video__content_container h1 {
  font-size: 30px;
  color: #f57224; /* orange DuraDalle */
  margin: 0;
}

.hero-video__content_container p {
  font-weight: bold;
  margin-top: 1rem;
}


/*mot DURADALLE sur la video accueil*/
.hero-video__content_container h1 { 
  font-family: Coolvetica;
  color: #f37a21;
  font-size: 250px;
  margin-top: 150px;
}


/*phrase sous DURADALLE sur video accueil*/
.hero-video__content_container p {   
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 30px;
  color: #ffff;
}



/*liste à puce sous le paragraphe*/
.product-benefits {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  max-width: 640px;
}

/* Chaque item */
.product-benefits li{
  position: relative;
  padding-left: 22px;
  font-size: 17px;
  line-height: 1.5;
  color: #1a1a1a;
  font-weight: 500;
}

/* Puce custom (barre orange) */
.product-benefits li::before{
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff7a18; /* orange DuraDalle */
}



/* ========================= */
/* HERO ACCUEIL - RESPONSIVE */
/* ========================= */
@media (max-width: 600px) {

/*mot DURADALLE sur la video accueil*/
.hero-video__content_container h1 { 
  font-family: Coolvetica;
  color: #f37a21;
  font-size: 75px;
  margin-top: 60px;
}

/*phrase sous DURADALLE sur video accueil*/
.hero-video__content_container p {   
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 20px;
  color: #ffff;
}

.hero-video {
  position: relative;
  min-height: 30vh;
  overflow: hidden;
  background: #000; /* fallback */
}

}

