//* ====== HERO ====== */

.hero {
  text-align: center;
  padding: 80px 20px 60px;
  color: white;
}

.hero-inner h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 12px;
}

.hero-inner p {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 24px;
}

/* ====== BOUTON ====== */

.liste-boutons button {
  background: #f0cc63;
  color: #0d5d2c;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

.liste-boutons button:hover:not([disabled]) {
  opacity: 0.9;
}

/* Responsif */
@media (max-width: 800px) {
  .hero {
    padding-top: 60px;
  }
}