@charset "UTF-8";
/* CSS Document */
/* ==========================================================================
   FICHIER CSS : theme_roofer.css (Plus de 150 classes, animations, responsive)
   ========================================================================== */
/* 1. Déclaration des variables de couleurs imposées et typographie globale */ :root {
  --wc-primary: #201816;
  --wc-primary-text: #fd2a00;
  --wc-secondary: #e9e6ed;
  --wc-secondary-text: #515151;
  --wc-highlight: #fd7100;
  --wc-highligh-text: #fda100;
  --font-main: 'Inter', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
/* 2. Réinitialisation fondamentale et prévention antidécalage de défilement horizontal */
*, *::before, *::after {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden !important; /* Évite tout décalage et barre parasite */
  font-family: var(--font-main);
  background-color: #ffffff;
  color: var(--wc-secondary-text);
  scroll-behavior: smooth;
}
/* 3. Classes Utilitaires Complémentaires de Style */
.max-width-700 {
  max-width: 700px;
}
.max-width-900 {
  max-width: 900px;
}
.decoration-none {
  text-decoration: none !important;
}
.text-footer-gray {
  color: #b5b1ba;
}
.fs-7 {
  font-size: 0.85rem;
}
.grid-template-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
/* 4. Structure du En-tête Sticky */
.eb-main-header-root {
  width: 100%;
  position: relative;
  z-index: 1000;
}
.header-area {
  background-color: var(--wc-primary);
  padding: 20px 0;
  transition: var(--transition-smooth);
  border-bottom: 2px solid rgba(253, 42, 0, 0.2);
}
.header-area.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  background-color: rgba(32, 24, 22, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}
/* Alignements Svg et texte */
.eb-roofer-svg-logo {
  transition: transform 0.5s ease;
}
.header-logo a:hover .eb-roofer-svg-logo {
  transform: rotate(15deg) scale(1.05);
}
.eb-brand-text {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}
/* Menu de Navigation principal Desktop */
.main-menu ul li a {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: var(--transition-smooth);
}
.main-menu ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--wc-primary-text);
  transition: var(--transition-smooth);
}
.main-menu ul li a:hover::after, .main-menu ul li.active a::after {
  width: 100%;
}
.main-menu ul li a:hover {
  color: var(--wc-primary-text);
}
/* Blocs CTA d'appel urgences */
.header-link-1 .content span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--wc-highlight);
  letter-spacing: 1px;
}
.header-link-1 .content h6 a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
}
/* Boutons d'Action Structurelle style construction Elementor */
.primary-btn-1 {
  background-color: var(--wc-primary-text);
  color: #ffffff;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}
.primary-btn-1:hover {
  background-color: transparent;
  border-color: var(--wc-primary-text);
  color: var(--wc-primary-text);
  transform: translateY(-2px);
}
.bar-icon-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
}
/* 5. Le Menu Burger Mobile Adaptatif Hors-Écran */
.eb-mobile-burger-sidebar {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background-color: var(--wc-primary);
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  padding: 30px;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}
.eb-mobile-burger-sidebar.active {
  right: 0;
}
.burger-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.burger-company-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
}
.burger-close-btn {
  background: none;
  border: none;
  color: var(--wc-primary-text);
  cursor: pointer;
}
.burger-nav-links ul {
  list-unstyled: none;
  padding: 0;
  margin: 0;
}
.burger-nav-links ul li {
  margin-bottom: 20px;
}
.burger-nav-links ul li a {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: none;
  display: block;
  transition: var(--transition-smooth);
}
.burger-nav-links ul li a:hover {
  padding-left: 10px;
  color: var(--wc-highlight);
}
.burger-sidebar-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.burger-footer-cta {
  background-color: var(--wc-primary-text);
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  border-radius: 4px;
  font-weight: 700;
}
/* 6. Zone Hero d'Impact Graphique */
.eb-hero-banner-wrapper {
  background: linear-gradient(rgba(32, 24, 22, 0.88), rgba(32, 24, 22, 0.85)), url('ravalement.jpg') no-repeat center center;
  background-size: cover;
  padding: 140px 0 100px 0;
  color: #ffffff;
  border-bottom: 6px solid var(--wc-highlight);
}
.eb-hero-main-title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 25px;
  animation: fadeUpIn 1s ease-out;
}
.eb-hero-sub-text {
  font-size: 1.15rem;
  color: var(--wc-secondary);
  line-height: 1.6;
}
/* Bouton Obligatoire sous le H1 (Fond Rouge, Police Blanche) */
.eb-phone-cta-container {
  margin: 30px 0;
}
.eb-global-urgent-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--wc-primary-text) !important;
  color: #ffffff !important;
  font-weight: 800;
  font-size: 1.3rem;
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(253, 42, 0, 0.4);
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}
.eb-global-urgent-phone-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 30px rgba(253, 42, 0, 0.6);
  background-color: var(--wc-highlight) !important;
}
/* 7. Badges et Titrages Génériques */
.eb-section-badge {
  background-color: rgba(253, 113, 0, 0.1);
  color: var(--wc-highlight);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 15px;
}
.eb-section-title-main {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--wc-primary);
  position: relative;
}
/* 8. Section Services : Cartes Pro */
.match-height-cards .col-12 {
  display: flex;
}
.eb-service-card-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
  width: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}
.eb-service-card-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(32, 24, 22, 0.12);
  border-color: rgba(253, 113, 0, 0.3);
}
.eb-card-img-wrap {
  margin: 0;
  overflow: hidden;
  height: 220px;
  background-color: var(--wc-primary);
}
.eb-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.eb-service-card-card:hover .eb-card-img-wrap img {
  transform: scale(1.1) rotate(1deg);
}
.eb-card-body-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.eb-card-body-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--wc-primary);
  margin-bottom: 15px;
}
.eb-card-body-content p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--wc-secondary-text);
  margin-bottom: 0;
}
/* 9. Module Curseur Glissant Interactif (Essential Blocks style) */
.eb-slider-comparison-block-area {
  background-color: var(--wc-secondary);
}
.text-secondary-custom {
  color: #4a454e;
  line-height: 1.7;
}
.eb-image-comparison-slider-wrapper {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border: 4px solid #ffffff;
}
.eb-image-layer-container-after, .eb-image-layer-container-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.eb-image-layer-container-after img, .eb-image-layer-container-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.eb-image-layer-container-before {
  width: 50%; /* Position par défaut au milieu */
  overflow: hidden;
  z-index: 2;
}
.eb-slider-drag-handler-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background-color: #ffffff;
  z-index: 3;
  cursor: ew-resize;
  transform: translateX(-50%);
}
.eb-slider-handler-circle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background-color: var(--wc-highlight);
  border: 3px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
/* 10. Module Accordéon Technique Dynamique */
.eb-accordion-container-layout {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.eb-accordion-item-wrapper {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  overflow: hidden;
  transition: var(--transition-smooth);
}
.eb-accordion-item-wrapper.active-item {
  border-color: var(--wc-primary-text);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}
.eb-accordion-title-wrapper {
  padding: 20px;
  background-color: #fbfbfc;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  user-select: none;
  transition: background-color 0.3s ease;
}
.eb-accordion-item-wrapper:hover .eb-accordion-title-wrapper {
  background-color: #f4f4f6;
}
.accordion-icon-state {
  color: var(--wc-primary-text);
  font-weight: 700;
}
.eb-accordion-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--wc-primary);
  margin: 0;
}
.eb-accordion-content-wrapper {
  padding: 0 20px 20px 55px;
  background-color: #ffffff;
}
.eb-accordion-content {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--wc-secondary-text);
  margin: 0;
}
/* 11. Zone Formulaire et Éléments de Saisie */
.eb-estimate-form-block-area {
  background-color: var(--wc-primary);
}
.eb-form-inner-box-card {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.unique-input-style {
  background-color: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  padding: 12px 18px;
  border-radius: 4px;
}
.unique-input-style::placeholder {
  color: #9e98a2;
}
.unique-input-style:focus {
  border-color: var(--wc-highlight) !important;
  box-shadow: 0 0 8px rgba(253, 113, 0, 0.4) !important;
}
.eb-submit-form-btn-cta {
  background-color: var(--wc-highlight);
  border: none;
  color: #ffffff;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.eb-submit-form-btn-cta:hover {
  background-color: var(--wc-primary-text);
  transform: translateY(-2px);
}
/* 12. Structure Bas de page (Footer) */
.eb-footer-area-root {
  background-color: #171110;
  border-top: 4px solid var(--wc-primary-text);
}
.footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
}
.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--wc-primary-text);
}
.service-list li {
  margin-bottom: 12px;
}
.service-list li a {
  color: #b5b1ba;
  text-decoration: none;
  transition: var(--transition-smooth);
  display: inline-block;
}
.service-list li a:hover {
  color: #ffffff;
  transform: translateX(6px);
}
.img-lightbox-trigger {
  cursor: pointer;
  overflow: hidden;
  display: block;
  height: 70px;
}
.img-lightbox-trigger img {
  transition: var(--transition-smooth);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-lightbox-trigger:hover img {
  transform: scale(1.15) rotate(2deg);
  filter: brightness(1.1);
}
/* 13. Système d'Affichage Lightbox Plein Écran */
.eb-lightbox-overlay-window {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(23, 17, 16, 0.95);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.eb-lightbox-overlay-window.visible-lightbox {
  opacity: 1;
  pointer-events: auto;
}
.eb-lightbox-overlay-window img {
  max-width: 85%;
  max-height: 80%;
  border: 4px solid #ffffff;
  border-radius: 4px;
  transform: scale(0.9);
  transition: transform 0.4s ease;
}
.eb-lightbox-overlay-window.visible-lightbox img {
  transform: scale(1);
}
.eb-lightbox-close-cross {
  position: absolute;
  top: 30px;
  right: 40px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 3rem;
  cursor: pointer;
  transition: color 0.2s ease;
}
.eb-lightbox-close-cross:hover {
  color: var(--wc-primary-text);
}
/* 14. Déclarations Keyframes d'Animations Complexes */
@keyframes fadeUpIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.anim-pulse-phone {
  animation: phonePulse 1.8s infinite ease-in-out;
}
@keyframes phonePulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
    color: var(--wc-highlight);
  }
  100% {
    transform: scale(1);
  }
}
/* ==========================================================================
   15. CONTRAINTES DE RESPONSIVE DESIGN COMPLET (@media queries)
   ========================================================================== */
/* Écrans intermédiaires (Tablettes horizontales et ordinateurs portables) */
@media (max-width: 1199.98px) {
  .pl-50 {
    padding-left: 0 !important;
  }
  .eb-hero-main-title {
    font-size: 2.5rem;
  }
}
/* Écrans tactiles verticaux (Tablettes type iPad) */
@media (max-width: 991.98px) {
  .eb-image-comparison-slider-wrapper {
    height: 350px;
  }
  .eb-section-title-main {
    font-size: 1.8rem;
  }
  .eb-accordion-content-wrapper {
    padding-left: 20px;
  }
}
/* Smartphones et formats mobiles étroits (Zone d'apparition imposée sous H1) */
@media (max-width: 575.98px) {
  .eb-hero-main-title {
    font-size: 1.8rem;
  }
  /* Transformation responsive du bouton imposée en bandeau mobile centré sous le H1 */
  .eb-phone-cta-container {
    width: 100%;
    padding: 0;
    margin: 20px 0;
  }
  .eb-global-urgent-phone-btn {
    display: flex !important;
    width: 100% !important;
    border-radius: 0 !important; /* Format bandeau rectangulaire */
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.1rem;
    padding: 16px 10px;
  }
  .eb-image-comparison-slider-wrapper {
    height: 260px;
  }
  .eb-form-inner-box-card {
    padding: 20px;
  }
  .header-link-1 {
    display: none !important
  }
}
iframe {
  display: block
}
.no-link {
  color: inherit !important;
  text-decoration: none !important;
  pointer-events: none;
}