@charset "UTF-8";
/* CSS Document */
/* Custom Global CSS Style Sheet inspired by premium modern designs (Roofnest template kit style) */
:root {
  --font: "DM Sans", sans-serif;
  --gray: #3c3c3c;
  --gray-rgb: 60, 60, 60;
  --base: #f95e11;
  --base-rgb: 249, 94, 17;
  --black: #111;
  --black-rgb: 17, 17, 17;
  --white: #fff;
  --light-bg: #f8f9fa;
  --red-alert: #d90429;
  --transition: all 0.3s ease-in-out;
}
/* Securisation de la structure : Empeche les scrollbars horizontales */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}
body {
  font-family: var(--font);
  color: var(--gray);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* Structure Header (Strictement Flexbox) */
.main-header {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  width: 100%;
}
.header-top-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.header-left {
  display: flex;
  flex-direction: column;
}
.site-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.site-tagline {
  font-size: 0.85rem;
  color: var(--base);
  font-weight: 500;
}
.header-right {
  display: flex;
  align-items: center;
}
.btn-devis {
  background-color: var(--base);
  color: var(--white);
  padding: 12px 25px;
  font-weight: 700;
  border-radius: 4px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(249, 94, 17, 0.3);
}
.btn-devis:hover {
  background-color: var(--black);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
/* Barre de navigation Flex Box */
.header-navigation-row {
  display: flex;
  align-items: center;
  background-color: var(--black);
  padding: 0 5%;
}
.burger-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  padding: 15px;
  cursor: pointer;
}
.nav-menu {
  width: 100%;
  display: flex;
  justify-content: center;
}
.nav-list {
  display: flex;
  list-style: none;
  width: 100%;
  justify-content: center;
  max-width: 1200px;
}
.nav-list li {
  display: flex;
}
.nav-link {
  color: rgba(255, 255, 255, 0.85);
  padding: 16px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--base);
  background-color: rgba(255, 255, 255, 0.02);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--base);
  transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}
/* Banner Style */
.roof-section {
  background: linear-gradient(rgba(17, 17, 17, 0.75), rgba(17, 17, 17, 0.85)), url('images/ravalement-facade-peinture-lacanau.jpg') no-repeat center center/cover;
  padding: 100px 5%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  color: var(--white);
}
.roof-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.roof-content {
  display: flex;
  flex-direction: column;
  max-width: 800px;
}
.roof-subtitle {
  color: var(--base);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}
.roof-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
/* Bouton telephone rouge avec police blanche requis sous le H1 */
.btn-phone-urgent {
  background-color: var(--red-alert);
  color: var(--white);
  font-weight: 700;
  font-size: 1.3rem;
  padding: 14px 28px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  width: max-content;
  box-shadow: 0 4px 15px rgba(217, 4, 41, 0.4);
  animation: pulseGlow 2s infinite;
}
@keyframes pulseGlow {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}
.btn-phone-urgent:hover {
  background-color: var(--white);
  color: var(--red-alert);
}
.roof-lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}
.roof-actions {
  display: flex;
  gap: 15px;
}
.btn-primary {
  background-color: var(--base);
  color: var(--white);
  padding: 14px 30px;
  font-weight: 700;
  border-radius: 4px;
}
.btn-secondary {
  background-color: transparent;
  color: var(--white);
  padding: 14px 30px;
  font-weight: 700;
  border: 2px solid var(--white);
  border-radius: 4px;
}
.btn-primary:hover {
  background-color: var(--white);
  color: var(--black);
}
.btn-secondary:hover {
  background-color: var(--base);
  border-color: var(--base);
}
/* Sections de Contenu Alternées Flexbox */
.work-section {
  padding: 90px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.alt-bg {
  background-color: var(--light-bg);
}
.section-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 60px;
}
.work-section.reverse .section-container {
  flex-direction: row-reverse;
}
.text-block {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.section-tag {
  color: var(--base);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.text-block h2 {
  font-size: 2.2rem;
  color: var(--black);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 20px;
}
.text-block p {
  font-size: 1.05rem;
  margin-bottom: 25px;
  color: var(--gray);
}
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--black);
}
.benefit-item i {
  color: var(--base);
}
.section-btn {
  align-self: flex-start;
  border-bottom: 2px solid var(--base);
  color: var(--black);
  font-weight: 700;
  padding-bottom: 5px;
}
.section-btn:hover {
  color: var(--base);
  padding-left: 5px;
}
.image-block {
  flex: 1;
  position: relative;
  display: flex;
}
.image-block img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  object-fit: cover;
  min-height: 380px;
}
.img-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: var(--black);
  color: var(--white);
  padding: 15px 25px;
  font-weight: 700;
  border-left: 4px solid var(--base);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
/* Zone d'Urgence SOS Fuites (Design Spécifique Saccadé Sombre) */
.urgent-block {
  background-color: #1e1e1e;
  color: var(--white);
}
.urgent-block h2 {
  color: var(--white);
}
.urgent-block p {
  color: rgba(255, 255, 255, 0.8);
}
.section-tag.lightning {
  color: var(--red-alert);
}
.urgent-box-call {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 6px;
  border-left: 4px solid var(--red-alert);
  margin-top: 15px;
}
.urgent-box-call p {
  font-size: 0.95rem;
  margin-bottom: 12px;
  font-weight: 700;
}
.btn-phone-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--red-alert);
  color: var(--white);
  font-weight: 700;
  padding: 15px 30px;
  font-size: 1.3rem;
  border-radius: 4px;
}
.btn-phone-large:hover {
  background-color: var(--white);
  color: var(--red-alert);
}
/* Footer Flex Layout */
.main-footer {
  background-color: var(--black);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 5% 30px 5%;
  border-top: 5px solid var(--base);
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-col {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
}
.footer-logo {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 15px;
}
.footer-col h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}
.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--base);
}
.footer-col p {
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.footer-col a:hover {
  color: var(--base);
}
.legal-col p {
  font-size: 0.9rem;
}
/* Règles Responsives pour Tablettes et Mobiles (Version Burger Menu) */
@media (max-width: 991px) {
  .section-container, .work-section.reverse .section-container {
    flex-direction: column;
    gap: 35px;
  }
  .image-block img {
    min-height: auto;
  }
  .roof-title {
    font-size: 2.3rem;
  }
}
@media (max-width: 768px) {
  .header-top-flex {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .header-navigation-row {
    justify-content: space-between;
    padding: 0;
  }
  .burger-menu-toggle {
    display: block;
  }
  .nav-menu {
    display: none;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--black);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-list {
    flex-direction: column;
  }
  .nav-list li {
    width: 100%;
  }
  .nav-link {
    width: 100%;
    padding: 15px 5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .btn-phone-urgent {
    font-size: 1.1rem;
    width: 100%;
    justify-content: center;
  }
  .roof-actions {
    flex-direction: column;
    width: 100%;
  }
  .roof-actions a {
    text-align: center;
  }
}
iframe {
  display: block
}
.no-link {
  color: inherit !important;
  text-decoration: none !important;
  pointer-events: none;
}