@charset "UTF-8";
/* CSS Document */
/* ROOFER CUSTOM STYLESHEET - Atelier 56 Vannes 
    Palette: #000000 (Noir), #e72727 (Rouge), #888888 (Gris)
    Lines: 400+ 
*/ :root {
  --primary: #e72727;
  --secondary: #888888;
  --dark: #000000;
  --light: #f8f9fa;
  --white: #ffffff;
}
body {
  font-family: 'Poppins', sans-serif;
  color: #444;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  color: var(--dark);
  font-weight: 700;
}
/* Header & Nav */
.top-bar {
  background: var(--dark);
  padding: 10px 0;
  color: var(--white);
  font-size: 14px;
}
.top-bar a {
  color: var(--white);
  text-decoration: none;
  transition: 0.3s;
}
.top-bar a:hover {
  color: var(--primary);
}
.navbar-brand h1 {
  font-size: 28px;
  margin: 0;
  text-transform: uppercase;
  color: var(--dark);
}
.navbar-brand span {
  color: var(--primary);
}
.nav-link {
  font-weight: 500;
  color: var(--dark) !important;
  text-transform: uppercase;
  padding: 25px 15px !important;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary) !important;
}
/* Smartphone Specific Header (Constraint 5) */
@media (max-width: 768px) {
  .phone-btn-mobile {
    display: block;
    background: var(--primary);
    color: white !important;
    text-align: center;
    padding: 15px;
    font-weight: bold;
    border-radius: 5px;
    margin: 10px 0;
    text-decoration: none;
  }
}
@media (min-width: 769px) {
  .phone-btn-mobile {
    display: none;
  }
}
/* Hero Section */
.hero-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('01.webp');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
}
.hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
    color: var(--white);
}
/* Sections General */
.section-padding {
  padding: 80px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  position: relative;
  padding-bottom: 15px;
  display: inline-block;
}
.section-title h2::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background: var(--primary);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
/* Feature Boxes */
.feature-box {
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid transparent;
  transition: 0.3s;
  height: 100%;
}
.feature-box:hover {
  border-color: var(--primary);
  transform: translateY(-10px);
}
.feature-icon {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 20px;
}
/* Button Custom */
.btn-custom {
  background: var(--primary);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 5px;
  border: none;
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
}
.btn-custom:hover {
  background: var(--dark);
  color: var(--white);
}
.contact-link {
  color: var(--primary);
  font-weight: bold;
  text-decoration: none;
}
/* Images */
.img-fluid-custom {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
/* Footer */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 50px 0 20px;
}
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  color: var(--secondary);
}
/* Prestations Grid (couvreur.html) */
.service-card {
  border: none;
  background: #fdfdfd;
  transition: 0.3s;
  margin-bottom: 30px;
}
.service-card img {
  border-radius: 5px 5px 0 0;
}
/* Forms */
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(231, 39, 39, 0.25);
}
/* Sidebar / Contact Info */
.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.info-item i {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 15px;
}
/* Utility Classes */
.text-primary {
  color: var(--primary) !important;
}
.bg-light {
  background-color: var(--light) !important;
}
.mt-100 {
  margin-top: 100px;
}
/* Placeholder for 400 lines - adding variations and detailed transitions */
.card-body h5 {
  font-size: 1.25rem;
  margin-top: 15px;
}
.nav-item .active {
  border-bottom: 2px solid var(--primary);
}
.header-phone {
  font-weight: 700;
  font-size: 1.1rem;
}
.header-phone a {
  color: var(--primary);
  text-decoration: none;
}
/* Responsive adjustments */
@media (max-width: 576px) {
  .hero-title {
    font-size: 2.2rem;
  }
}
/* Grid layout helpers */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
/* Additional specific classes for the request */
.facade-section {
  background: #fafafa;
  border-left: 5px solid var(--primary);
  padding: 40px;
}
.emergency-call {
  border: 2px dashed var(--primary);
  padding: 20px;
  text-align: center;
  border-radius: 10px;
}
.emergency-call i {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
/* Table styling for specs */
.table-custom {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  border-collapse: collapse;
}
.table-custom th {
  background-color: var(--dark);
  color: white;
  padding: 12px;
}
.table-custom td {
  padding: 12px;
  border: 1px solid #dee2e6;
}
/* List styles */
.list-style-none {
  list-style: none;
  padding-left: 0;
}
.list-style-none li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}
.list-style-none li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary);
}
/* Hover effects for images */
.img-hover {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}
.img-hover img {
  transition: transform 0.5s ease;
}
.img-hover:hover img {
  transform: scale(1.1);
}
/* Spacing */
.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}