/* =====================================================
   STYLE_GLOBAL.CSS — Base commune à toutes les pages
===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --orange: #F47921;
  --orange-dark: #a05017;
  --dark: #2f2f2f;
  --grey: #6C6D70;
  --light-bg: #f7f7f7;
  --font: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: #333;
  background: #fff;
  line-height: 1.65;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; padding: 0; }

/* ================= TOP BAR ================= */
.top_bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 40px;
  background: #f9f9f9;
  border-bottom: 1px solid #ececec;
  font-size: 13px;
  color: var(--orange);
  font-weight: 500;
}

.top_page { margin: 0; font-size: 13px; font-weight: 500; }

/* ================= NAVIGATION ================= */
.zone_nav {
  position: relative;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
}

.logo { max-width: 30%; height: auto; }

.menu {
  display: flex;
  gap: 20px;
  align-items: center;
}

.menu a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  transition: color 0.2s;
}

.menu a:hover,
.menu a#cette_page { color: var(--orange); }

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ================= ELEMENTS COMMUNS ================= */
.trait {
  display: block;
  width: 50px;
  height: 4px;
  background: var(--orange);
  margin: 10px 0 18px;
  border-radius: 2px;
}

.barre_grise {
  display: block;
  width: 60px;
  height: 3px;
  background: #e0e0e0;
  margin-bottom: 20px;
  border-radius: 2px;
}

/* ================= SECTION MARQUE (PARALLAX BASE) ================= */
.section_marque {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  padding: 100px 80px;
}

.section_marque::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section_marque .contenu {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.section_marque h1,
.section_marque h2 {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 1.3;
}

.section_marque ul {
  list-style: disc;
  padding-left: 20px;
  margin: 15px 0;
}

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

/* ================= DEMANDE DEVIS ================= */
.demande_devis {
  background: var(--orange);
  color: #fff;
  text-align: center;
  padding: 20px 20px;
}

#devis {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

#numero_devis {
  display: inline-block;
  padding: 14px 35px;
  border: 3px solid #fff;
  background: #fff;
  color: var(--grey);
  font-size: 26px;
  font-weight: 700;
  font-family: var(--font);
  letter-spacing: 2px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
}

#numero_devis:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

/* ================= IMAGE DROITE / TEXTE GAUCHE ================= */
.image_droite {
  display: flex;
  gap: 50px;
  padding: 70px 80px;
  align-items: center;
}

.bloc_image, .bloc_texte { flex: 1; }

.image_chantier {
  width: 75%;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

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

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

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

/* ================= MARQUAGE RESPECT ================= */
.marquage_respect { background: var(--light-bg); padding: 80px 15%; }

.marquage_respect .titre_section,
.titre_section {
  color: var(--orange);
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.3;
  max-width: 55%
}

.contenu_respect {
  display: flex;
  gap: 60px;
  align-items: center;
}

.texte_respect {
  flex: 1;
  color: #444;
  font-size: 16px;
  line-height: 1.8;
}

.texte_respect h2 {
  color: var(--orange);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 1.35;
}

.texte_respect p { margin-bottom: 15px; }

.texte_respect ul { list-style: disc; padding-left: 20px; margin: 15px 0; }
.texte_respect li { margin-bottom: 8px; }

.images_respect {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.images_respect img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.images_respect img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

.marquage_respect.inverse .contenu_respect { flex-direction: row-reverse; }

.texte_respect .liens { list-style: none; padding: 0; margin: 15px 0; }
.texte_respect .liens a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.texte_respect .liens a:hover { color: var(--orange-dark); text-decoration: underline; }
.texte_respect .liens li { margin-bottom: 6px; }

/* ================= BLOC MOBILIER ================= */
.bloc_mobilier { max-width: 1000px; margin: auto; padding: 70px 40px; }

.bloc_mobilier h1 {
  color: #1f2f6e;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.35;
  text-transform: uppercase;
}

.bloc_mobilier p { color: #4b5a8a; line-height: 1.75; margin-bottom: 16px; }

.bloc_mobilier .liste_respectueux { list-style: disc; padding-left: 20px; color: #4b5a8a; margin: 16px 0; }
.bloc_mobilier .liste_respectueux li { margin-bottom: 6px; }

/* ================= ZONE INTERVENTION ================= */
.Zone_intervention { max-width: 1000px; margin: 0 auto; padding: 40px 40px 80px; }

.Zone_intervention p { color: #555; line-height: 1.8; margin-bottom: 16px; }

.Zone_intervention .liste_respectueux { list-style: disc; padding-left: 20px; color: #555; margin: 12px 0; }
.Zone_intervention .liste_respectueux li { margin-bottom: 6px; }

.Zone_intervention iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  margin-top: 20px;
}

/* ================= FOOTER ================= */
.footer { background: var(--dark); color: #dcdcdc; }

.footer_contenu {
  max-width: 1200px;
  margin: auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer_col h3 {
  color: var(--orange);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer_col p { font-size: 14px; line-height: 1.8; color: #cfcfcf; }
.footer_col ul { list-style: none; padding: 0; }
.footer_col ul li { margin-bottom: 10px; }

.footer_col a {
  position: relative;
  color: #cfcfcf;
  text-decoration: none;
  font-size: 14px;
  padding-left: 14px;
  transition: color 0.25s ease;
}

.footer_col a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--orange);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.footer_col a:hover { color: var(--orange); }
.footer_col a:hover::before { opacity: 1; }

.footer_bas {
  background: #1f1f1f;
  text-align: center;
  padding: 15px;
  font-size: 13px;
  color: #888;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 900px) {
  .top_bar { padding: 8px 20px; }
  .zone_nav { padding: 12px 20px; }

  .hamburger { display: flex; }

  .menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 0;
    gap: 0;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    border-top: 2px solid #f0f0f0;
  }

  .menu.open { display: flex; }

  .menu a {
    padding: 14px 24px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    width: 100%;
    letter-spacing: 0;
  }

  .menu a::after { display: none; }
  .menu a:last-child { border-bottom: none; }

  .image_droite { flex-direction: column; padding: 40px 25px; gap: 30px; }
  .image_chantier { width: 100%; }
  .section_marque { padding: 70px 25px; }
  .marquage_respect { padding: 50px 25px; }

  .contenu_respect,
  .marquage_respect.inverse .contenu_respect { flex-direction: column; gap: 30px; }

  .titre_section { max-width: 100%; }

  .bloc_mobilier { padding: 50px 25px; }
  .Zone_intervention { padding: 30px 25px 60px; }

  .footer_contenu { grid-template-columns: 1fr; text-align: center; padding: 40px 20px; }
  .footer_col a { padding-left: 0; }
  .footer_col a::before { display: none; }
}

@media (max-width: 600px) {
  .top_bar { display: none; }
  .logo { max-width: 130px; }
  .section_marque h1, .section_marque h2 { font-size: 20px; }
  .bloc_texte h1, .titre_section { font-size: 20px; }
  .texte_respect h2 { font-size: 19px; }
  #devis { font-size: 16px; }
  #numero_devis { font-size: 20px; padding: 12px 20px; }
  .Zone_intervention iframe { height: 280px; }
}
