@charset "UTF-8";
/* CSS Document */
/* VARIABLES ET RESET */ :root {
  --primary: #0f1c3f; /* Bleu Marine Profond */
  --accent: #ffb400; /* Jaune/Or Rafter */
  --text-body: #555555;
  --light-bg: #f8f9fa;
  --white: #ffffff;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, .logo {
  font-family: 'Montserrat', sans-serif;
  color: var(--primary);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
/* HEADER */
.top-bar {
  background: var(--primary);
  color: var(--white);
  padding: 10px 0;
  font-size: 13px;
}
.top-bar a, .top-bar a:hover {
  color: white
}
.top-bar a:hover {
  opacity: 0.8;
  text-decoration: underline
}
.contact-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact-info span {
  margin-right: 20px;
}
.contact-info i {
  color: var(--accent);
  margin-right: 8px;
}
nav {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.logo {
  font-size: 24px;
  font-weight: 800;
}
.logo span {
  color: var(--accent);
}
.nav-links {
  display: flex;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 700;
  margin-left: 30px;
  text-transform: uppercase;
  font-size: 14px;
  transition: 0.3s;
}
.nav-links a:hover {
  color: var(--accent);
}
/* Theme ROOF SECTION */
.themeroof {
  background: linear-gradient(rgba(15, 28, 63, 0.85), rgba(15, 28, 63, 0.85)), url('couvreur_cherbourg_sur_toiture.webp') center/cover;
  height: 70vh;
  display: flex;
  align-items: center;
  color: var(--white);
}
.themeroof-content {
  max-width: 700px;
}
.badge {
  background: var(--accent);
  color: var(--primary);
  padding: 5px 15px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  border-radius: 3px;
}
.themeroof h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin: 20px 0;
  line-height: 1.1;
}
.btn {
  display: inline-block;
  padding: 15px 25px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  margin-right: 15px;
  transition: 0.3s;
  margin-top: 20px;
}
.btn-primary {
  background: var(--accent);
  color: var(--primary);
}
.btn-secondary {
  background: var(--white);
  color: var(--primary);
}
.btn-tertiary {
  background: red;
  color: white;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.themeroof-btns {
  display: flex
}
/* SERVICES */
.services {
  padding: 100px 0;
  background: var(--light-bg);
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.line {
  width: 70px;
  height: 4px;
  background: var(--accent);
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.service-box {
  background: var(--white);
  padding: 50px 30px;
  text-align: center;
  transition: 0.4s;
  border-bottom: 3px solid transparent;
}
.service-box:hover {
  border-color: var(--accent);
  transform: translateY(-10px);
}
.icon-wrap {
  width: 80px;
  height: 80px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 30px;
  color: var(--accent);
  transition: 0.4s;
}
.service-box:hover .icon-wrap {
  background: var(--accent);
  color: var(--white);
}
/* TECH INFO */
.tech-info {
  padding: 100px 0;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.img-side img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 20px 20px 0 var(--accent);
}
.feature-list {
  list-style: none;
  margin-top: 30px;
}
.feature-list li {
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.feature-list i {
  color: var(--accent);
  margin-right: 15px;
  font-size: 1.2rem;
}
/* FOOTER */
footer {
  background: var(--primary);
  color: #abb8c3;
  padding: 80px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 100px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}
.white {
  color: var(--white);
}
footer h4 {
  color: var(--white);
  margin-bottom: 25px;
  text-transform: uppercase;
}
footer p {
  margin-bottom: 15px;
}
footer i {
  color: var(--accent);
  margin-right: 10px;
}
.copyright {
  text-align: center;
  padding-top: 30px;
  font-size: 14px;
}
footer a, .footer a:hover {
  color: white
}
.footer a:hover {
  opacity: 0.8;
  text-decoration: underline
}
/* RESPONSIVE */
@media (max-width: 992px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .themeroof h1 {
    font-size: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  } /* On cache le menu sur mobile pour simplifier */
  .contact-info {
    flex-direction: column;
    text-align: center;
  }
  .themeroof-btns {
    flex-direction: column;
  }
  .logo {
    font-size: 24px;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .footer-contact p {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
/* SECTION AVIS / QR CODE */
.reviews-section {
  padding: 80px 0;
  background-color: var(--white);
  border-top: 1px solid #eee;
}
.review-action {
  margin-top: 30px;
}
.review-action i {
  margin-right: 10px;
}
.qr-side {
  display: flex;
  justify-content: center;
  align-items: center;
}
.qr-card {
  background: var(--light-bg);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 2px dashed var(--accent);
}
.qr-card p {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size: 14px;
}
.qr-card img {
  width: 150px;
  height: 150px;
  display: block;
}
/* Ajustement responsive pour la section avis */
@media (max-width: 992px) {
  .reviews-section .grid-2 {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .qr-side {
    margin-top: 40px;
  }
}