@charset "UTF-8";
/* CSS Document */
/* ==========================================================================
   CHARTE GRAPHIQUE EXIGÉE & PROTECTION ANTI-BARRE DE DÉFILEMENT HORIZONTALE
   ========================================================================== */ :root {
  --color-black: #000000;
  --color-orange: #de4e00;
  --color-blue: #005aff;
  --color-white: #ffffff;
  --color-red-alert: #db0000;
  --color-green-alert: #3cab00;
}
/* Règle stricte anti-décalage de mise en page */
html, body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  background-color: var(--color-white);
  color: #333333;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
/* TOP BAR INFO */
.top-bar {
  background-color: var(--color-black);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 2px solid var(--color-orange);
}
a {
  text-decoration: none
}
.top-bar a {
  color: #fff;
  text-decoration: none;
}
.top-info span {
  vertical-align: middle;
  color: var(--color-orange);
}
.top-hours {
    display: flex;
  justify-content: center;
  align-items: center;
}
/* ENTETE ET ENCRES */
.main-header {
  background-color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
}
.brand-main {
  color: var(--color-black);
  font-weight: 800;
  font-size: 18px;
  display: block;
}
.brand-sub {
  color: var(--color-orange);
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
}
.nav-menu a {
  color: var(--color-black);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  padding: 8px 12px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-menu a:hover {
  color: var(--color-orange);
}
.btn-contact-nav {
  background-color: var(--color-blue);
  color: #fff !important;
  border-radius: 4px;
}
/* RESPONSIVE BURGER */
.burger-menu {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  padding: 0;
}
.burger-menu .bar {
  background-color: var(--color-black);
  height: 3px;
  width: 100%;
  border-radius: 2px;
}
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  transition: left 0.3s;
}
.mobile-nav-overlay.open {
  left: 0;
}
.mobile-menu-box {
  width: 270px;
  height: 100%;
  background: #fff;
  padding: 40px 20px;
  position: relative;
}
.close-mobile-menu {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  background: none;
  border: none;
}
.mobile-menu-box ul li {
  margin-bottom: 18px;
}
.mobile-menu-box ul li a {
  color: #000;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
}
.no-scroll {
  overflow: hidden !important;
}
/* HERO ET BOUTONS OBLIGATOIRES */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('expert_facadier.jpg') center/cover no-repeat;
  min-height: 400px;
}
.btn-hero-phone {
  display: inline-flex;
  align-items: center;
  background-color: var(--color-red-alert);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 4px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(219, 0, 0, 0.3);
}
.phone-mobile-banner {
  background-color: #db0000;
  padding: 12px 10px;
}
.phone-mobile-banner a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
}
/* SECTIONS STRUCTURE */
.section-padding {
  padding: 60px 0;
}
.badge.bg-custom {
  background-color: var(--color-orange);
  color: #fff;
}
.section-title {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--color-blue);
}
.seo-text-block p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
  text-align: justify;
}
.image-wrapper {
  overflow: hidden;
  border-radius: 4px;
}
.image-wrapper img {
  transition: transform 0.3s;
    object-fit: inherit;
  width: 100%;
}
.image-wrapper:hover img {
  transform: scale(1.02);
}
/* CONTRAINTES FORMULAIRE */
.form-hp {
  display: none !important;
  visibility: hidden !important;
}
.break-word {
  word-break: break-all;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--color-orange);
}
iframe {
  display: block
}
.no-link {
  color: inherit !important;
  text-decoration: none !important;
  pointer-events: none;
}
.btn-outline-dark {
    background: #005Aff !important;
    color: white !important
}
.btn-outline-dark:hover {
    background: #db0000 !important;
}