#hero-section {
  min-height: 740px;
  background: url("../images/hero-background.png") center/cover no-repeat;
  color: white;
  padding: 60px 5% 20px;
  display: flex;
  align-items: center;
}

#hero-section p {
  margin-bottom: 20px;
}

#hero-section button {
  background-color: #FF3B30;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 5px;
}

.button:hover {
  background-color: #F02820;
  cursor: pointer;
}

.hero-content {
  margin: auto;
  padding: 0 20px;
}

.images-hero {
  width: 490px;
  height: 340px;
  object-fit: cover;
  border-radius: 8px;
}
/* =======================================================
   🦸 SECTION HERO (Accueil)
   ======================================================= */
#hero-section {
  min-height: 720px;
  background-image: url("../images/hero-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 60px 5% 20px;
  display: flex;
  align-items: center;
}

/* =======================================================
   📝 CONTENU DU HERO (texte + bouton)
   ======================================================= */
.hero-content {
  margin: auto;
  padding: 0 20px;
}

#hero-section h1 {
  font-size: 44px;
  margin-bottom: 20px;
}

#hero-section p {
  font-size: 18px;
}


/* =======================================================
   🔘 BOUTON HERO
   ======================================================= */
#hero-section button {
  background-color: #FF3B30;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

#hero-section button:hover {
  background-color: #F02820;
  cursor: pointer;
}

/* =======================================================
   🖼️ IMAGE DU HERO (si utilisée)
   ======================================================= */
.images-hero {
  width: 490px;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
  filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.08));
}

/* =======================================================
   🖼️  IMAGES GÉNÉRIQUES
   ======================================================= */
