/* ====== RSE PAGE STYLE ====== */

/* Titre principal */
.page-title {
  font-size: 2.2em;
  font-weight: bold;
  color: #2c5f2d; /* vert foncé pour l'engagement durable */
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
}

/* Texte introductif */
.rse-content .lead {
  font-size: 1.2em;
  line-height: 1.6;
  color: #444;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

/* Galerie horizontale RSE */
.rse-gallery {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.rse-card {
  position: relative;
  flex: 0 0 30%;
  max-width: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  background: #f9f9f9;
  transition: transform 0.3s ease;
}

.rse-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.rse-card:hover {
  transform: translateY(-5px);
}

.rse-card:hover img {
  transform: scale(1.05);
}

/* Overlay titre */
.rse-card .overlay-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px;
  background: rgba(44, 95, 45, 0.9); /* vert foncé semi-transparent */
  color: #fff;
  font-weight: bold;
  font-size: 1.1em;
  text-align: center;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s ease;
}

.rse-card:hover .overlay-title {
  opacity: 1;
  transform: translateY(0);
}

/* Section texte détaillé */
.rse-content section {
  margin-top: 40px;
}

.rse-content h3 {
  color: #2c5f2d;
  margin-top: 25px;
  margin-bottom: 10px;
}

.ection-content p {
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .rse-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Ajustement du titre sur mobile */
@media (max-width: 768px) {
  .page-title {
    margin-top: 10px !important;   /* réduit l’espace au-dessus */
    margin-bottom: 15px !important; /* espace sous le titre */
    font-size: 1.8em;              /* optionnel : taille plus adaptée */
  }
}

/* Ajuster la taille du titre RSE */
.page-title {
  font-size: 26px;        /* taille plus élégante */
  font-weight: bold;
  color: #366150;         /* vert Espace24 */
  text-align: center;
  margin-top: 40px;       /* espace entre le menu et le titre */
  margin-bottom: 20px;    /* espace avant le contenu */
  line-height: 1.4;
}

/* Version mobile */
@media (max-width: 767px) {
  .page-title {
    font-size: 22px;      /* plus petit sur mobile */
    margin-top: 30px;
    margin-bottom: 15px;
  }
}
