/* =======================================================
   🦸 SECTION HERO - CSS Optimisé
   ======================================================= */
#hero-section {
  min-height: 740px;
  color: white;
  padding: 60px 5% 20px;
  display: flex;
  align-items: center;
  position: relative;
}

#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;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#hero-section h1 {
  font-size: 44px;
  margin-bottom: 20px;
}

#hero-section button:hover {
  background-color: #F02820;
  cursor: pointer;
}