p {
  font-size: 18px;
}

body {
  margin: 0; /* essentiel pour éviter un décalage blanc autour */
}

.hero {
  position: relative;
  width: 100%;              /* pleine largeur */
  height: 30vh;            /* ajuste la hauteur comme tu veux */
  background: center/cover no-repeat; /* l'image sera injectée en JS */
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%; /* zone où le dégradé apparaît */
  background: linear-gradient(to bottom, transparent, #111111);
  /* adapte "white" à la couleur de fond de ta page */
}

/* ====== RESPONSIVE ====== */

/* Tablettes */
@media (max-width: 900px) {
  p {
    font-size: 16px;
  }

  .hero {
    height: 25vh;
  }
}

/* Mobiles */
@media (max-width: 600px) {
  p {
    font-size: 14px;
  }

  .hero {
    height: 20vh;
  }
}