@charset "UTF-8";
/* CSS Document */
/* ==========================================================================
   THEME.CSS - LES COUVREURS ZINGUEURS ROQUETTOIS
   Contient ~200 classes CSS optimisées, animations et composants structurels
   ========================================================================== */
/* 1. INITIALISATION GENERALE ET ANTI-DECALAGE HORIZONTAL */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden; /* Résolution complète de l'effet barre de défilement horizontale */
  scroll-behavior: smooth; /* Ancre dynamique native fluide */
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #333333;
}
/* 2. CLASSES DE TYPOGRAPHIE & TITRAGES (GOOGLE FONTS) */
.font-family-inter {
  font-family: 'Inter', sans-serif;
}
.font-family-montserrat {
  font-family: 'Montserrat', sans-serif;
}
.font-weight-light {
  font-weight: 300;
}
.font-weight-normal {
  font-weight: 400;
}
.font-weight-bold {
  font-weight: 700;
}
.font-weight-black {
  font-weight: 900;
}
.highlight-red {
  color: #ec0000;
}
.text-micro {
  font-size: 0.75rem;
}
.text-small {
  font-size: 0.9rem;
}
.text-light-muted {
  color: #cccccc;
}
/* 3. COULEURS SPECIFIQUES CORPORATE CONTRAINTES */
.bg-black {
  background-color: #000000 !important;
}
.bg-red-corporate {
  background-color: #ec0000 !important;
}
.bg-dark-grey {
  background-color: #333333 !important;
}
.text-corporate-red {
  color: #ec0000 !important;
}
/* 4. DESIGN TOP-BAR INFO */
.top-bar-info {
  background-color: #333333;
  color: #ffffff;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 2px solid #ec0000;
}
.top-bar-info a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.top-bar-info a:hover {
  color: #ec0000;
}
/* 5. STYLISATION NAVBAR STANDARDS */
.navbar-custom {
  background-color: #000000;
  padding: 10px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.navbar-custom .nav-link {
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 16px !important;
  position: relative;
  transition: color 0.3s;
}
.navbar-custom .nav-link:hover, .navbar-custom .nav-link.active {
  color: #ec0000 !important;
}
.navbar-custom .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 16px;
  background-color: #ec0000;
  transition: width 0.3s ease;
}
.navbar-custom .nav-link:hover::after, .navbar-custom .nav-link.active::after {
  width: calc(100% - 32px);
}
.btn-action-nav {
  background-color: #ec0000;
  color: #ffffff !important;
  font-weight: 700;
  border-radius: 4px;
  padding: 8px 20px !important;
  border: 1px solid #ec0000;
  transition: all 0.3s ease;
}
.btn-action-nav:hover {
  background-color: transparent;
  color: #ec0000 !important;
}
.dynamic-logo-svg {
  max-height: 65px;
  width: auto;
}
/* 6. HERO SECTION DESIGN & ANIMATIONS */
.hero-section-wrapper {
  background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.6)), url('presta-ravalement-facade.jpg') no-repeat center center;
  background-size: cover;
  min-height: 70vh;
  padding: 100px 0;
}
.badge-tag-top {
  background-color: rgba(236, 0, 0, 0.15);
  color: #ec0000;
  border: 1px solid #ec0000;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 50px;
}
.main-display-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
}
.lead-hero-text {
  font-size: 1.15rem;
  color: #dddddd !important;
}
.btn-primary-custom {
  background-color: #ec0000;
  color: #ffffff;
  border: 2px solid #ec0000;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.btn-primary-custom:hover {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.btn-outline-custom {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.btn-outline-custom:hover {
  background-color: #ffffff;
  color: #000000;
}
/* 7. STRUCTURE SECTION-V1 CLASSES INTEGRATION (ABOUT SECTION) */
.section-padding-lg {
  padding: 85px 0;
}
.p_relative {
  position: relative;
}
.about_left__section {
  position: relative;
  padding-right: 20px;
}
.image-custom-border {
  border-left: 6px solid #ec0000;
}
.experience-badge-box {
  position: absolute;
  bottom: -20px;
  right: 0;
  background-color: #ec0000;
  color: #ffffff;
  padding: 20px 30px;
  border-radius: 4px;
  box-shadow: 0 10px 20px rgba(236, 0, 0, 0.3);
  text-align: center;
  z-index: 2;
}
.experience-badge-box h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0;
}
.experience-badge-box span {
  font-size: 0.8rem;
  text-uppercase: uppercase;
  font-weight: 600;
}
/* 8. PRESTATIONS (ESSENTIAL BLOCKS STYLE CLASSES CARD) */
.eb-custom-card-wrapper {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eeeeee;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.transition-hover-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12) !important;
}
.card-img-top-custom {
  height: 220px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.transition-hover-card:hover .card-img-top-custom {
  transform: scale(1.08);
}
.eb-card-item-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
}
.eb-card-item-description {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.eb-btn-card-anchor {
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.2px;
  transition: letter-spacing 0.3s;
}
.eb-btn-card-anchor:hover {
  letter-spacing: 0.8px;
}
/* 9. ESSENTIAL BLOCKS DEMO ACCORDION COMPONENT CLASSES (INJECTED) */
.eb-accordion-container-root {
  width: 100%;
}
.eb-accordion-item-wrapper {
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.eb-accordion-item-wrapper:hover {
  border-color: #ec0000;
}
.eb-accordion-title-header {
  background-color: #ffffff;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s;
}
.eb-accordion-title-header:hover {
  background-color: #fff5f5;
}
.eb-accordion-title-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333333;
}
.eb-accordion-icon-toggle {
  font-size: 1rem;
  color: #ec0000;
  transition: transform 0.3s ease;
}
.eb-accordion-item-wrapper.open-panel .eb-accordion-icon-toggle {
  transform: rotate(45deg);
}
.eb-accordion-content-panel {
  border-top: 1px solid #edf2f7;
  background-color: #fafafa;
  line-height: 1.7;
  font-size: 0.98rem;
  color: #4a5568;
  animation: fadeInAccordion 0.4s ease-out;
}
/* 10. FOCUS SECTION CLASSES */
.border-red-accent {
  border: 4px solid #ec0000;
}
.bullet-focus-list .bullet-item i {
  font-size: 1.2rem;
}
/* 11. FORMULAIRE & SÉCURITÉ COMPATIBILITÉ CLASSES */
.rounded-custom {
  border-radius: 12px;
}
.border-top-red {
  border-top: 5px solid #ec0000;
}
.form-label {
  font-size: 0.95rem;
  color: #333333;
}
.input-group-text {
  background-color: #f8f9fa;
  color: #333333;
  border-right: none;
}
.form-control, .form-select {
  border-left: none;
  padding: 10px 12px;
}
.form-control:focus, .form-select:focus {
  border-color: #ec0000;
  box-shadow: 0 0 0 0.25rem rgba(236, 0, 0, 0.15);
}
/* 12. ANIMATIONS SPECIFIQUES CLASSES */
@keyframes fadeInAccordion {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn-animated-pulse:not([disabled]) {
  animation: hvr-pulse 2s infinite;
}
@keyframes hvr-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}
.text-animate-fade {
  animation: fadeInUp 0.8s ease-out;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Responsive Overrides classes */
@media (max-width: 991.98px) {
  .main-display-title {
    font-size: 2.2rem;
  }
  .section-padding-lg {
    padding: 50px 0;
  }
}
iframe {
  display: block
}
.no-link {
  color: inherit !important;
  text-decoration: none !important;
  pointer-events: none;
}
/* Alignement et dimensionnement du visuel SVG */
.dynamic-logo-svg {
    max-height: 65px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

/* Bloc texte HTML classique */
.logo-text-group {
    line-height: 1.2;
}

.logo-brand-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 900;
    color: #ffffff; /* Rendu en blanc classique */
    letter-spacing: 0.5px;
    display: block;
}

.logo-brand-sub {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #ec0000; /* Rouge corporate pour créer le contraste dynamique */
    letter-spacing: 1px;
    display: block;
}

.logo-brand-desc {
    font-family: 'Inter', sans-serif;
    font-size: 8px;
    font-weight: 600;
    color: #ffffff; /* Rendu en blanc classique */
    letter-spacing: 0.3px;
    display: block;
    opacity: 0.85; /* Légère transparence pour la hiérarchie visuelle */
}