/* =========================
   HERO GÉNÉRIQUE
========================= */

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  color: #ffffff;
  overflow: hidden;
}

.hero__background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.hero__inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 3;
  width: 100%;
  padding-bottom: 4rem;
}

.hero__title {
  margin: 0 0 0.5rem;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
}

.hero__subtitle {
  max-width: 640px;
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.9;
  text-align: center;
  letter-spacing: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
  }

  .hero__inner {
    padding-bottom: 2.5rem;
  }
}
