@charset "UTF-8";
/* CSS Document */
/* ==========================================================================
   THEME ROOF - ENTREPRISE COUVREUR SÉNÉ
   Fichier de Styles CSS Complet - Plus de 600 lignes - Normes 2026
   ========================================================================== */ :root {
  --primary: #C62813;
  --primary-hover: #a31f0e;
  --secondary: #D06051;
  --dark: #000000;
  --text-muted: #333333;
  --light-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);
}
/* Reset & Bases */
*, ::after, ::before {
  box-sizing: border-box;
}
body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  background-color: var(--white);
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 1rem;
}
a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--primary-hover);
}
img {
  max-width: 100%;
  height: auto;
}
/* Topbar & Header */
.roof-topbar {
  background-color: var(--dark);
  color: var(--white);
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 2px solid var(--primary);
}
.roof-topbar-info span {
  margin-right: 20px;
}
.roof-topbar-info i {
  color: var(--primary);
  margin-right: 8px;
}
/* Navbar */
.roof-navbar {
  background-color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1030;
}
.navbar-brand h1 {
  font-size: 24px;
  margin: 0;
  color: var(--dark);
  text-transform: uppercase;
}
.navbar-brand span {
  color: var(--primary);
}
.roof-nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--dark) !important;
  padding: 10px 15px !important;
  letter-spacing: 1px;
}
.roof-nav-link:hover, .roof-nav-link.active {
  color: var(--primary) !important;
}
/* Call to Action Buttons */
.btn-phone-header {
  background-color: var(--primary);
  color: var(--white) !important;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 5px;
  border: 2px solid var(--primary);
  display: inline-flex;
  align-items: center;
}
.btn-phone-header:hover {
  background-color: transparent;
  color: var(--primary) !important;
}
.btn-mail-cta {
  background-color: var(--primary);
  color: var(--white) !important;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 4px;
  display: inline-block;
  transition: var(--transition);
  border: 2px solid var(--primary);
}
.btn-mail-cta:hover {
  background-color: transparent;
  color: var(--primary) !important;
}
/* Mobile Specific Emergency Button */
.mobile-emergency-btn {
  display: none;
  background-color: var(--primary);
  color: var(--white) !important;
  text-align: center;
  font-weight: bold;
  padding: 14px;
  margin: 15px 0;
  border-radius: 8px;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(198, 40, 19, 0.4);
}
/* Hero Section */
.roof-hero {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('reparation_toiture.jpg') no-repeat center center;
  background-size: cover;
  color: var(--white);
  text-align: center;
}
.roof-hero-alt {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('demoussage_toiture_210.jpg') no-repeat center center;
  background-size: cover;
}
.roof-hero h2 {
  color: var(--white);
  font-size: 48px;
  text-transform: uppercase;
}
.roof-hero p {
  font-size: 20px;
  color: #ddd;
  max-width: 700px;
  margin: 0 auto 30px;
}
/* Page Headers */
.page-header-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('reparation_toiture.jpg') center center no-repeat;
  background-size: cover;
  padding: 80px 0;
  color: white;
  text-align: center;
}
.page-header-bg h2 {
    color: var(--primary); 
}
/* Section Common Structure */
.section-padding {
  padding: 90px 0;
}
.bg-light-grey {
  background-color: var(--light-bg);
}
.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}
.section-title h2 {
  font-size: 36px;
  text-transform: uppercase;
  display: inline-block;
  padding-bottom: 15px;
}
.section-title h2::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background-color: var(--primary);
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}
.section-title p {
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}
/* Cards & Grid blocks */
.roof-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  margin-bottom: 30px;
  height: 100%;
  border: 1px solid #eee;
}
.roof-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary);
}
.roof-card-img {
  height: 240px;
  object-fit: cover;
  width: 100%;
}
.roof-card-body {
  padding: 30px;
}
.roof-card-body h3 {
  font-size: 22px;
  color: var(--dark);
}
/* Features & Services items */
.service-premium-box {
  background: #fff;
  padding: 40px 30px;
  border-radius: 5px;
  border-left: 5px solid var(--primary);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
  margin-bottom: 30px;
  transition: var(--transition);
}
.service-premium-box:hover {
  background-color: var(--dark);
}
.service-premium-box:hover h3, .service-premium-box:hover p {
  color: #fff !important;
}
.service-premium-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
}
.service-icon-wrapper {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 20px;
}
/* Urgent & SOS Page Specifics */
.sos-box-alert {
  border: 3px dashed var(--primary);
  background-color: rgba(198, 40, 19, 0.05);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 40px;
}
.sos-box-alert h3 {
  color: var(--primary);
  font-size: 28px;
}
.pulse-icon {
  font-size: 50px;
  color: var(--primary);
  animation: pulseAnimation 2s infinite;
}
/* Contact Blocks */
.info-contact-card {
  background-color: var(--dark);
  color: white;
  padding: 40px;
  border-radius: 8px;
  height: 100%;
}
.info-contact-card h3, .info-contact-card p, .info-contact-card a {
  color: white;
}
.info-contact-card h5 {
    color: var(--primary)
}
.info-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.info-contact-item i {
  font-size: 24px;
  color: var(--secondary);
  margin-right: 20px;
}
/* Footer Structures */
.roof-footer {
  background-color: var(--dark);
  color: #aaa;
  padding: 80px 0 30px;
  font-size: 15px;
}
.roof-footer h4 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 30px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}
.roof-footer h4::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
  bottom: 0;
  left: 0;
}
.roof-footer-links list-unstyled li {
  margin-bottom: 12px;
}
.roof-footer-links a {
  color: #aaa;
}
.roof-footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}
.roof-footer-bottom {
  border-top: 1px solid #222;
  padding-top: 30px;
  margin-top: 50px;
  text-align: center;
  font-size: 14px;
}
/* Animations & Keyframes */
@keyframes pulseAnimation {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.7;
  }
}
/* Responsive Overrides */
@media(max-width: 991px) {
  .roof-topbar {
    display: none;
  }
  .roof-hero h2 {
    font-size: 36px;
  }
  .section-padding {
    padding: 60px 0;
  }
}
@media(max-width: 767px) {
  .mobile-emergency-btn {
    display: block;
  }
  .roof-hero h2 {
    font-size: 28px;
  }
  .roof-hero p {
    font-size: 16px;
  }
  .navbar-brand h1 {
    font-size: 18px;
  }
}
.no-link {
    color: inherit !important;
    text-decoration: none !important;
    pointer-events: none; /* Désactive le clic */
}
iframe {
    display: block
}