  :root {
    --primary-color: #133c52; /*#1e526f*/
    --dark-blue: #0a2240
    --gold-color: #f3c30f;
    --text-color: #ffffff;
    --border-radius: 8px;
  }

.mm-body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #222;
}

/* ===== SECTION INFOS ===== */
.infos {
  background: #f7f7f7;
  padding: 60px 16px;
}

.infos-container {
  max-width: 1100px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;

  text-align: center;
}

.info-box {
  background: #fff;
  border-radius: 16px;
  padding: 28px 22px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.info-box h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 700;
}

.info-box p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* ===== HERO FULL SCREEN ===== */
.hero {
  height: 100vh;
  width: 100%;
  position: relative;

  /* Remplace par ton image */
  background-image: url(../library/HEADER_MAMMA.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* voile sombre pour lisibilité */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* bouton centré */
.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 34px;
  border-radius: 999px;

  background: #ffffff;
  color: #111;
  text-decoration: none;

  font-size: 1.1rem;
  font-weight: 800;

  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.hero-button:hover {
  transform: translateY(-2px);
  background: #111;
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .infos-container {
    grid-template-columns: 1fr;
  }

  .infos {
    padding: 40px 14px;
  }

  .info-box {
    padding: 22px 18px;
  }
}
