/* =====================================================
   STYLE_INDEX.CSS — Styles spécifiques à l'accueil
===================================================== */

/* Section marque hero */
.section_marque {
  background-image: url("photos/index/bandeau_principal.jpg");
  color: #2f2f2f;
}

.section_marque::before { background: rgb(0, 0, 0,0.3); }
.section_marque .trait { background: #2f2f2f; }

.titre_contenu { margin-bottom: 20px; font-size: 90px; }

/* Parallax texte */
.parallax-text { will-change: transform; padding-left: 20%; }

/* Textes hero */
.hero-titre-text {
  color: #fff;
  font-size: 65px;
  display: block;
  line-height: 1.1;
}

.hero-list-text {
  color: #F47921;
  font-size: 50px;
  display: block;
  line-height: 1.5;
}

/* Section présentation */
.section_presentation { padding: 80px; }

.presentation_contenu {
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}

.presentation_video,
.presentation_texte { flex: 1 1 45%; }

.presentation_video iframe {
  width: 100%;
  height: 315px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.presentation_texte h1 {
  color: var(--orange);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.35;
}

.presentation_texte p { color: #555; margin-bottom: 14px; line-height: 1.75; }

.presentation_texte ul { list-style: disc; padding-left: 18px; margin: 12px 0; color: #555; }
.presentation_texte li { margin-bottom: 6px; }

/* img arrondie */
.img_arrondie {
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.phone-badge {
  display: inline-block;
  background-color: #f47924;
  color: white;
  font-size: 35px;

  padding: 10px 25px;
  border-radius: 999px;
  border: 2px solid #f47924;

  transition: all 0.3s ease;
  cursor: pointer;
}

.phone-badge:hover {
  background-color: white;
  color: #f47924;
  border: 2px solid #ffffff;
  font-size: 35px;
}



/* Section marque 2 (bandeau orange) */
.section_marque2 {
  position: relative;
  background-image: url("photos/index/bandeau_respect_env.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  padding: 100px 80px;
  overflow: hidden;
}

.section_marque2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgb(0, 0, 0, 0.5);
  z-index: 0;
}

.section_marque2 .contenu2 {
  position: relative;
  z-index: 1;
  max-width: 70%;
  color: #FFF;
  padding-left: 10%;
}

.section_marque2 h1 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.liste_respectueux {
  list-style: disc;
  padding-left: 20px;
  margin: 12px 0;
}

.liste_respectueux li { margin-bottom: 8px; }

/* Bloc mobilier (accueil) */
.bloc_mobilier { padding: 70px 80px; }

.bloc_mobilier h1 {
  font-size: 32px;
  color: var(--orange);
}
/* Responsive */
@media (max-width: 900px) {
  .section_presentation { padding: 50px 25px; }
  .presentation_contenu { flex-direction: column; gap: 30px; }
  .section_marque2 { padding: 60px 25px; }
  .section_marque2 .contenu2 { max-width: 100%; padding-left: 0; }
  .bloc_mobilier { padding: 50px 25px; }
  .parallax-text { padding-left: 5%; }
  .hero-titre-text { font-size: 38px; }
  .hero-list-text { font-size: 28px; }
  .titre_contenu { font-size: 55px; }
  .phone-badge { font-size: 22px; }
  .phone-badge:hover { font-size: 22px; }
}

@media (max-width: 600px) {
  .presentation_video iframe { height: 220px; }
  .section_marque2 h1 { font-size: 20px; }
  .hero-titre-text { font-size: 24px; }
  .hero-list-text { font-size: 18px; }
  .titre_contenu { font-size: 30px; }
  .phone-badge { font-size: 18px; padding: 8px 16px; }
  .phone-badge:hover { font-size: 18px; }
}
