@charset "UTF-8";
/* CSS Document */
/* ==========================================================================
   VARIABLES ET CONFIGURATION GLOBALE (NORMES CSS3)
   ========================================================================== */ :root {
  --primary-color: #007bff;
  --primary-hover: #0056b3;
  --secondary-color: #ffc107;
  --dark-bg: #1c1c1c;
  --light-bg: #f8f9fa;
  --text-white: #ffffff;
  --text-dark: #333333;
  --danger-color: #dc3545;
  --danger-hover: #bd2130;
  --gray-steps: #6c757d;
  --font-main: 'Roboto', sans-serif;
  --transition-fast: all 0.3s ease;
}
*, *::before, *::after {
  box-sizing: border-box;
}
body {
  font-family: var(--font-main);
  background-color: var(--dark-bg);
  color: var(--text-white);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}
/* ==========================================================================
   BARRE SUPÉRIEURE ET EN-TÊTE
   ========================================================================== */
.top-bar {
  background-color: var(--primary-color);
  color: var(--text-white);
  text-align: center;
  padding: 0.6em 1em;
  font-size: 0.9rem;
}
.top-bar a {
  color: var(--text-white);
  text-decoration: none;
  transition: var(--transition-fast);
}
.top-bar a:hover {
  text-decoration: underline;
}
header {
  background-color: var(--secondary-color);
  color: var(--text-dark);
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
header h1 {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 700;
}
/* ==========================================================================
   NAVIGATION NAV & MENU BURGER (100% CSS VIA CHECKBOX)
   ========================================================================== */
nav {
  background-color: var(--gray-steps);
  position: relative;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu-toggle, .burger-icon {
  display: none;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
nav ul li a {
  display: block;
  color: var(--text-white);
  padding: 1rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}
nav ul li a:hover, nav ul li a.active {
  background-color: var(--primary-color);
  color: var(--text-white);
}
/* Responsive Navigation (Tablettes & Smartphones) */
@media (max-width: 991px) {
  .nav-container {
    justify-content: flex-end;
    padding: 0.5rem 1rem;
  }
  .burger-icon {
    display: block;
    cursor: pointer;
    color: var(--text-white);
    font-size: 1.8rem;
    padding: 0.5rem;
    transition: var(--transition-fast);
  }
  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--gray-steps);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  nav ul li {
    width: 100%;
    text-align: center;
  }
  nav ul li a {
    padding: 1.2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  /* Déclencheur du menu burger */
  .menu-toggle:checked ~ ul {
    display: flex;
  }
}
/* ==========================================================================
   BOUTON TÉLÉPHONE FIXE (CALL TO ACTION)
   ========================================================================== */
.cta-phone-btn {
  position: inherit;
  bottom: 30px;
  right: 30px;
  background-color: var(--danger-color);
  color: var(--text-white) !important;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-fast);
  max-width: max-content;
  margin: 1em auto 0;
}
.cta-phone-btn:hover {
  background-color: var(--danger-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.6);
  color: var(--text-white);
}
@media (max-width: 576px) {
  .cta-phone-btn {
    bottom: 15px;
    right: 15px;
    padding: 10px 18px;
    font-size: 0.9rem;
  }
}
/* ==========================================================================
   CONTENU ET SECTIONS
   ========================================================================== */
.content {
  padding: 4rem 1rem;
  max-width: 1100px;
  margin: 0 auto;
}
.section-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}
.page-intro {
  font-size: 1.15rem;
  color: #cccccc;
  max-width: 800px;
  margin: 0 auto 3rem auto;
}
/* Grille de services / contenus */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}
.service-card {
  background-color: #252525;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: var(--transition-fast);
  border: 1px solid #333;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}
.service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: var(--transition-fast);
}
.service-card:hover img {
  scale: 1.03;
}
.service-card-body {
  padding: 1.8rem;
  text-align: left;
}
.service-card-body h3 {
  margin-top: 0;
  color: var(--secondary-color);
  font-size: 1.4rem;
}
/* Bloc focus thématique complet (Ravalement, etc.) */
.focus-block {
  background-color: #252525;
  border-radius: 12px;
  padding: 3rem;
  margin: 4rem 0;
  border-left: 5px solid var(--primary-color);
}
/* ==========================================================================
   PAGE CONTACT ET FORMULAIRE / BLOCS INFOS
   ========================================================================== */
.contact-info-box {
  background-color: #252525;
  border-radius: 8px;
  padding: 2.5rem;
  text-align: left;
  height: 100%;
  border-top: 4px solid var(--secondary-color);
}
.contact-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: var(--transition-fast);
}
.contact-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}
/* ==========================================================================
   PIED DE PAGE (FOOTER)
   ========================================================================== */
footer {
  background-color: #0b0b0b;
  color: #aaaaaa;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 0;
  border-top: 3px solid var(--primary-color);
  font-size: 0.9rem;
}
footer p {
  margin: 0.5rem 0;
}
footer a {
  color: var(--text-white);
  text-decoration: none;
}
footer a:hover {
  color: var(--secondary-color);
}
.no-link {
  color: inherit !important;
  text-decoration: none !important;
  pointer-events: none;
}
iframe {
  display: block
}