@charset "UTF-8";
/* CSS Document */
/* Artisan Couvreur Merville - Custom Theme 
   Colors: Black (#111), Dark Green (#1a3a3a), Grey (#999999)
*/ :root {
  --primary: #1a3a3a;
  --secondary: #999999;
  --dark: #111111;
  --light: #f4f4f4;
  --white: #ffffff;
  --transition: all 0.3s ease-in-out;
}
body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
}
/* Typography */
h1, h2, h3 {
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
}
.text-green {
  color: var(--primary);
}
.text-grey {
  color: var(--secondary);
}
/* Header & Nav */
.top-bar {
  background: var(--dark);
  color: white;
  padding: 10px 0;
  font-size: 14px;
}
.navbar {
  background: var(--white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}
.nav-link {
  font-weight: 600;
  color: var(--dark) !important;
  margin: 0 15px;
  transition: var(--transition);
}
.nav-link:hover {
  color: var(--primary) !important;
}
/* Phone Button Mobile */
.mobile-call-btn {
  display: none;
  background: var(--primary);
  color: white;
  padding: 12px;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  margin: 15px 0;
  border: 2px solid #fff;
}
/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('reparation_toiture.jpg');
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  color: white;
  text-align: center;
}
.hero-section h1 {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 20px;
}
.btn-main {
  background: var(--primary);
  color: white;
  padding: 15px 35px;
  border-radius: 0;
  border: none;
  font-weight: 700;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}
.btn-main:hover {
  background: var(--dark);
  transform: translateY(-3px);
  color: white;
}
/* Sections */
.section-padding {
  padding: 80px 0;
}
.section-title {
  position: relative;
  margin-bottom: 50px;
  text-align: center;
}
.section-title::after {
  content: '';
  width: 60px;
  height: 3px;
  background: var(--primary);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
/* Cards & Services */
.service-card {
  background: var(--white);
  border: 1px solid #eee;
  padding: 30px;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-10px);
}
.service-card i {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 20px;
}
.img-zoom {
  overflow: hidden;
}
.img-zoom img {
  transition: var(--transition);
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.img-zoom:hover img {
  transform: scale(1.1);
}
/* Ravalement Section */
.facade-section {
  background: var(--light);
}
.facade-img {
  border-left: 10px solid var(--primary);
}
/* Stats */
.stat-box {
  background: var(--primary);
  color: white;
  padding: 40px;
  text-align: center;
}
.stat-box h2 {
  color: white;
  font-size: 3rem;
}
/* Footer */
footer {
  background: var(--dark);
  color: white;
  padding: 60px 0 20px;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: var(--secondary);
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--primary);
}
.copy-bar {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 13px;
  color: var(--secondary);
}
/* Responsive */
@media (max-width: 991px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  .mobile-call-btn {
    display: block;
  }
}
@media (max-width: 768px) {
  .section-padding {
    padding: 50px 0;
  }
}