:root {
  --primary-color: #D32F2F; /* Rouge Canada */
  --secondary-color: #ffffff;
  --text-color: #000;
  --shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Styles Généraux & Layout */
body {
  overflow-y: hidden !important;   /* bloque la scrollbar interne */
background-color: #f9f9f9;
  color: var(--text-color);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0rem;
}

.hero {
  position: relative;
  height: 50vh;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--nav-height);
  background: #fff;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}
.hero .hero-content {
  position: relative;
  z-index: 2;
  color: var(--secondary-color);
  padding: 1.5rem;
  max-width: 700px;
  animation: fadeInUp 1s ease-out;
  transition: transform 0.6s ease;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
/* La div de background lazy-load */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* L’image <img> à l’intérieur du <picture> doit recouvrir complètement */
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Style g
énéral du container FAQ */
.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.faq-title {
  text-align: center;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;  margin-top: 1.5rem;

}
.faq-lead {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

/* Cartes FAQ */
.faq-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.faq-card:hover {
  transform: translateY(-3px);
}
.faq-card h5 {
  margin-top: 0;
  font-size: 1.3rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.faq-card p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  text-align: left;
}
.faq-card ul, .faq-card ol {
  margin-left: 1.5rem;
  font-size: 0.95rem;
}

/* Bouton CTA */
.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 50px;
  background-color: var(--primary-color) !important; /* rouge #D32F2F */
  color: var(--secondary-color) !important;          /* texte blanc   */
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}


/* Survol : rouge un peu plus foncé */
.cta-button:hover {
  background-color: #b71c1c !important;  /* foncé, cohérent avec ta charte */
  color: var(--secondary-color) !important;
    transform: scale(1.05);

}

/* Collapse FAQ */
.collapse-content {
  margin-top: 1rem;
  display: none;
  text-align: left;
}
.collapse-content.active {
  display: block;
}

/* Responsive */
@media screen and (max-width: 600px) {

  .faq-title {
    font-size: 1.75rem;
  }
}

