@charset "UTF-8";
/* ==========================================================================
   THEME ROOF ADVANCED - LES ARTISANS DU TOIT LANGUIDIC
   Fichier de Styles CSS Premium - Normes Modernes 2026 - UX/UI Optimisé
   ========================================================================== */

:root {
  --primary: #C62813;
  --primary-hover: #a31f0e;
  --secondary: #E05340;
  --dark: #111111;
  --dark-accent: #1a1a1a;
  --text-muted: #444444;
  --light-bg: #fdfdfd;
  --grey-bg: #f8f9fa;
  --white: #ffffff;
  --font-main: 'Montserrat', sans-serif;
  --font-heading: 'Barlow', sans-serif;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --shadow-sm: 0 4px 6px rgba(0,0,0,0.02);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.05);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.08);
  --shadow-xl: 0 30px 60px rgba(0,0,0,0.12);
}

/* Reset & Typographies Avancées */
*, ::after, ::before {
  box-sizing: border-box;
}
body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
}
a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--primary-hover);
}
img {
  max-width: 100%;
  height: auto;
}

/* Structure & Mises en page Globales */
.section-padding {
  padding: 100px 0;
}
.bg-light-grey {
  background-color: var(--grey-bg);
}
.max-w-700 {
  max-width: 700px;
  margin: 0 auto;
}
.layout-row-gap {
  --bs-gutter-y: 40px;
}
.rounded-custom {
  border-radius: 12px;
}
.border-top-accent {
  border-top: 4px solid var(--primary);
}

/* Topbar Premium */
.roof-topbar {
  background-color: var(--dark);
  color: var(--white);
  padding: 12px 0;
  font-size: 14px;
  border-bottom: 3px solid var(--primary);
}
.roof-topbar-info span {
  margin-right: 25px;
  font-weight: 500;
}
.roof-topbar-info i {
  color: var(--primary);
  margin-right: 8px;
}
.topbar-email {
  font-size: 13px;
  color: #ccc;
  font-weight: 500;
}

/* Barre de Navigation (Sticky Modernisé) */
.roof-navbar {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: var(--transition);
}
.navbar-brand h1 {
  font-size: 24px;
  line-height: 1;
  color: var(--dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0px;
}
.navbar-brand h1 span {
  color: var(--primary);
}
.brand-sub {
  font-size: 11px;
  display: block;
  letter-spacing: 3px;
  color: #666;
  font-weight: 700;
  font-family: var(--font-heading);
}
.roof-nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--dark) !important;
  padding: 12px 18px !important;
  letter-spacing: 0.5px;
  font-size: 15px;
  position: relative;
}
.roof-nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 5px;
  left: 18px;
  background-color: var(--primary);
  transition: var(--transition);
}
.roof-nav-link:hover::after, .roof-nav-link.active::after {
  width: calc(100% - 36px);
}
.roof-nav-link:hover, .roof-nav-link.active {
  color: var(--primary) !important;
}

/* Boutons Modernes UI Extrapolés */
.btn-phone-header {
  background-color: var(--primary);
  color: var(--white) !important;
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 10px 22px;
  border-radius: 6px;
  border: 2px solid var(--primary);
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(198, 40, 19, 0.2);
}
.btn-phone-header:hover {
  background-color: transparent;
  color: var(--primary) !important;
  transform: translateY(-2px);
  box-shadow: none;
}
.btn-modern-primary {
  background-color: var(--primary);
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 15px;
  padding: 15px 32px;
  border-radius: 6px;
  display: inline-block;
  border: 2px solid var(--primary);
  box-shadow: 0 6px 20px rgba(198, 40, 19, 0.25);
}
.btn-modern-primary:hover {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--white) !important;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.btn-modern-secondary {
  background-color: transparent;
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 15px;
  padding: 15px 32px;
  border-radius: 6px;
  display: inline-block;
  border: 2px solid var(--white);
}
.btn-modern-secondary:hover {
  background-color: var(--white);
  color: var(--dark) !important;
  transform: translateY(-3px);
}

/* Bouton d'urgence mobile */
.mobile-emergency-btn {
  background-color: var(--primary);
  color: var(--white) !important;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  padding: 16px;
  margin: 20px 0;
  border-radius: 8px;
  font-size: 16px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(198, 40, 19, 0.4);
}

/* Section Hero Avancée style Fixroof Template */
.roof-hero-advanced {
  position: relative;
  padding: 160px 0;
  background: url('reparation_toiture.jpg') no-repeat center center;
  background-size: cover;
  color: var(--white);
  display: flex;
  align-items: center;
}
.hero-overlay {
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.75) 50%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}
.roof-hero-advanced .container {
  z-index: 2;
}
.header-row-padding {
  padding: 20px 0;
}
.hero-badge {
  background-color: rgba(198, 40, 19, 0.15);
  border: 1px solid var(--primary);
  color: var(--secondary);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  letter-spacing: 1px;
}
.hero-title {
  color: var(--white);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}
.hero-lead {
  font-size: 18px;
  color: #e0e0e0;
  max-width: 800px;
  margin-top: 20px;
  margin-bottom: 35px;
}
.hero-features-list {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 35px;
  border-radius: 12px;
  backdrop-filter: blur(5px);
}
.feat-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 600;
}
.feat-item:last-child { margin-bottom:0; }
.feat-item i {
  color: var(--primary);
  font-size: 20px;
  margin-right: 15px;
}

/* Titres de Section Standardisés */
.section-title {
  position: relative;
  margin-bottom: 50px;
}
.subtitle-badge {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  display: block;
  margin-bottom: 10px;
}
.title-bold {
  font-size: 38px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
}
.section-title.text-center h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--primary);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}
.title-desc {
  margin-top: 30px;
  font-size: 16px;
  color: #666;
}

/* Conteneurs Médias & Effets */
.image-wrapper-modern {
  position: relative;
  padding-left: 20px;
  padding-bottom: 20px;
}
.image-wrapper-modern::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 80%; height: 80%;
  border: 6px solid var(--grey-bg);
  z-index: 0;
  border-radius: 12px;
}
.image-wrapper-modern img {
  position: relative;
  z-index: 1;
}
.experience-badge {
  position: absolute;
  top: 30px; left: -10px;
  background-color: var(--primary);
  color: var(--white);
  padding: 20px 25px;
  border-radius: 8px;
  z-index: 2;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.experience-badge .number {
  font-size: 32px;
  font-family: var(--font-heading);
  font-weight: 800;
  display: block;
  line-height: 1;
}
.experience-badge .text {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Cartes d'Engagements Structurées */
.roof-card-advanced {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
  border: 1px solid #f0f0f0;
}
.roof-card-advanced:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}
.roof-card-body-advanced {
  padding: 40px 35px;
}
.service-icon-wrapper-advanced {
  font-size: 45px;
  color: var(--primary);
  margin-bottom: 25px;
  display: inline-block;
}
.roof-card-body-advanced h3 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 15px;
}
.roof-card-body-advanced p {
  font-size: 15px;
  margin: 0;
  color: #555;
}

/* Grilles Spécifiques pour la section Façade & Peinture */
.section-facade-bg {
  background-color: var(--white);
}
.facade-gallery-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.grid-item-main {
  grid-column: 1 / span 9;
  z-index: 2;
}
.grid-item-sub {
  grid-column: 6 / span 7;
  margin-top: -120px;
  z-index: 3;
  border: 8px solid var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
}
.image-zoom-effect {
  transition: var(--transition);
}
.image-zoom-effect:hover {
  transform: scale(1.02);
}
.advanced-check-list {
  padding-left: 0;
  list-style: none;
}
.advanced-check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 15px;
}
.advanced-check-list li i {
  position: absolute;
  left: 0; top: 4px;
  color: var(--primary);
  font-size: 18px;
}

/* Section Cartographie Intégrée */
.map-section-wrapper {
  position: relative;
  overflow: hidden;
  line-height: 0;
  display: block;
}
.map-overlay-info {
  position: absolute;
  top: 40px; left: 40px;
  background: rgba(255,255,255,0.96);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  max-width: 380px;
  z-index: 2;
  border-left: 4px solid var(--primary);
}
.map-overlay-info h4 {
  font-size: 18px;
  margin-bottom: 10px;
}
.map-overlay-info p {
  font-size: 14px;
  line-height: 1.6;
}

/* Pied de page avancé (Structure Triplée SEO) */
.roof-footer-advanced {
  background-color: var(--dark);
  color: #b0b0b0;
  padding: 90px 0 0px;
  font-size: 15px;
  border-top: 5px solid var(--primary);
}
.roof-footer-advanced h4 {
  color: var(--white);
  font-size: 19px;
  margin-bottom: 35px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 12px;
}
.roof-footer-advanced h4::after {
  content: '';
  position: absolute;
  width: 45px;
  height: 3px;
  background-color: var(--primary);
  bottom: 0; left: 0;
}
.footer-brand-box p {
  line-height: 1.7;
}
.footer-emergency-call {
  background-color: var(--dark-accent);
  padding: 20px;
  border-radius: 6px;
  border: 1px dashed rgba(255,255,255,0.1);
}
.emergency-link {
  font-size: 24px;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--white) !important;
  display: inline-block;
  margin-top: 5px;
}
.footer-navigation-list li {
  margin-bottom: 14px;
}
.footer-navigation-list a {
  color: #b0b0b0;
  display: flex;
  align-items: center;
}
.footer-navigation-list a i {
  font-size: 12px;
  margin-right: 10px;
  transition: var(--transition);
}
.footer-navigation-list a:hover {
  color: var(--white);
}
.footer-navigation-list a:hover i {
  transform: translateX(4px);
  color: var(--primary);
}
.footer-info-details li {
  display: flex;
  margin-bottom: 22px;
  align-items: flex-start;
}
.footer-info-details li i {
  font-size: 20px;
  margin-right: 15px;
  margin-top: 3px;
}
.roof-footer-bottom-advanced {
  border-top: 1px solid #222;
  padding: 30px 0;
  margin-top: 60px;
  font-size: 14px;
  color: #777;
}

/* Neutralisation Liens d'Infrastructures */
.no-link {
  color: inherit !important;
  text-decoration: none !important;
  pointer-events: none;
}

/* Gestion Responsive et Adaptations Écrans */
@media (max-width: 991px) {
  .section-padding { padding: 70px 0; }
  .hero-title { font-size: 38px; }
  .title-bold { font-size: 28px; }
  .grid-item-sub { margin-top: -60px; }
  .roof-navbar { padding: 12px 0; }
}

@media (max-width: 767px) {
  .hero-title { font-size: 28px; }
  .hero-lead { font-size: 15px; }
  .navbar-brand h1 { font-size: 19px; }
  .grid-item-sub { position: relative; margin-top: 0; grid-column: 1 / span 12; border: none; }
  .grid-item-main { grid-column: 1 / span 12; }
  .facade-gallery-grid { gap: 15px; }
}
/* ==========================================================================
   MODULES BURGER MENU & MOBILE NAVIGATION OVERLAY (2026 UX Standards)
   ========================================================================== */

/* Bouton Déclencheur Burger */
.burger-trigger {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  padding: 0;
  z-index: 1040;
}
.burger-bar {
  width: 100%;
  height: 3px;
  background-color: var(--dark);
  border-radius: 4px;
  transition: var(--transition);
  transform-origin: left center;
}

/* Tiroir de Navigation Mobile */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: -100%; /* Caché par défaut à droite */
  width: 100%;
  height: 100vh;
  background-color: rgba(17, 17, 17, 0.98); /* Fond sombre premium */
  backdrop-filter: blur(15px);
  z-index: 2000;
  transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  display: flex;
  justify-content: flex-end;
}

/* État actif : Le menu glisse à l'écran */
.mobile-menu-overlay.is-active {
  right: 0;
}

.mobile-menu-container {
  width: 100%;
  max-width: 400px;
  background-color: #161616;
  height: 100%;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.mobile-menu-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.burger-close {
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  transition: var(--transition);
}
.burger-close:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

/* Liens à l'intérieur du menu mobile */
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white) !important;
  padding: 15px 20px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  transition: var(--transition);
  border-left: 0 solid var(--primary);
}
.mobile-nav-link i {
  color: rgba(255, 255, 255, 0.3);
  transition: var(--transition);
  width: 25px;
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  background-color: rgba(198, 40, 13, 0.1);
  color: var(--secondary) !important;
  border-left: 4px solid var(--primary);
  padding-left: 25px;
}
.mobile-nav-link:hover i, .mobile-nav-link.active i {
  color: var(--primary);
}

/* Verrouillage du scroll body quand le menu est ouvert */
body.mobile-menu-open {
  overflow: hidden;
}
#urgences-fuites h4,
#urgences-fuites h3 {
    color: var(--primary-hover) !important;
}