/* ============ HERO ============ */
:root {
  --hero-indent: 20%;          /* même valeur que .hero__inner padding-left */
  --container-max: 1200px;     /* largeur max du contenu (à adapter) */
}

.hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  background: url("../../images/accueil.png") center 60% / cover no-repeat;
  margin-top: 0;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.8)
    );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  transform: translateY(-200px);
}

.hero__eyebrow {
    color: #E0C15A;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 35px;
    margin-top: 450px;
}

.hero__actions {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}

.hero__title {
    font-size: 65px;
    color: #fff;
    margin-bottom: 20px;
}

.hero__subtitle {
    font-size: 27px;
    color: #eaeaea;
    margin-bottom: 30px;
}

/* HOVER */
.btn-secondary {
  background: transparent;
  border: 1px solid #E0C15A;
  color: #E0C15A;
}

.btn-secondary:hover {
  background: #E0C15A;
  color: #1c1d21;
  transform: translateY(-2px);
}

/* ========================= */
/* HERO ACCUEIL - RESPONSIVE */
/* ========================= */

@media (max-width: 992px) {
  .hero {
    min-height: 30vh !important;
    padding: 120px 24px 80px !important;
    background-position: center center !important;
  }

  .hero__overlay {
    background: rgba(0, 0, 0, 0.55) !important;
  }

  .hero__content {
    max-width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .hero__eyebrow {
    font-size: 16px !important;
    line-height: 1.4 !important;
    margin-bottom: 18px !important;
    margin-top: 350px;
  }

  .hero__title {
    font-size: 44px !important;
    line-height: 1.08 !important;
    margin-bottom: 20px !important;
  }

  .hero__subtitle {
    font-size: 18px !important;
    line-height: 1.6 !important;
    margin: 0 auto 28px !important;
    max-width: 720px !important;
  }

  .hero__actions {
    display: flex !important;
    justify-content: center !important;
    gap: 14px !important;
    flex-wrap: wrap !important;
    margin-top: 20px;
  }

  .hero__actions .btn {
    min-height: 54px;
    padding: 0 24px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 30vh !important;
    min-height: 30vh !important;
    max-height: 30vh !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;
    padding: 20px 16px 46px !important;
    overflow: hidden !important;
    text-align: center !important;
    background-position: center 32% !important;
    background-size: cover !important;
  }

  .hero__content {
    transform: translateY(-50px) !important;
    margin-top: 0 !important;
    max-width: 100% !important;
    position: relative;
    z-index: 2;
  }

  .hero__overlay {
    background: rgba(0, 0, 0, 0.62) !important;
  }

  .hero__eyebrow {
    font-size: 14px !important;
    margin-bottom: 10px !important;
  }

  .hero__title {
    font-size: 26px !important;
    line-height: 1.1 !important;
    margin-bottom: 12px !important;
  }

  .hero__subtitle {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin-bottom: 16px !important;
  }

  .hero__actions {
    display: flex !important;
    justify-content: center !important;
  }

  .hero__actions .btn {
    min-height: 44px !important;
    padding: 0 18px !important;
    font-size: 14px !important;
    width: auto !important;
    min-width: 220px !important;
  }
}


@media (max-width: 480px) {
  .hero {
    padding: 95px 16px 60px !important;
    min-height: 50vh;
  }

  .hero__eyebrow {
    font-size: 15px !important;
    line-height: 1.35 !important;
  }

  .hero__title {
    font-size: 20px !important;
    line-height: 1.12 !important;
  }

  .hero__subtitle {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  .hero__actions .btn {
    min-height: 42px !important;
    font-size: 14px !important;
  }
}

.hero__actions .btn,
  .hero__actions .btn-primary,
  .hero__actions .btn-secondary {
    width: 100% !important;
    max-width: 150px !important;  
    border-radius: 10px !important;
    margin: 0 auto !important;
    font-size: 14px !important;
    font-weight: 700 !important;
  }

  .hero__actions .btn-secondary {
    border-width: 1px !important;
  }


@media (max-width: 1200px) {
  .approach-row {
    flex-wrap: wrap;
    gap: 30px;
  }
}

