/* ===== HERO CAROUSEL COHERENT ===== */
/* HERO adapté pour desktop */
.hero {
  position: relative;
  width: 100vw;
  max-width: 100%;
  min-height: 90vh;
  height: 90vh;
  overflow: hidden;
  background: #0F1116;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  margin-bottom: 2rem;
}
.carousel-container {
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100%;
  min-height: 90vh;
  z-index: 1;
}
.hero-picture, .hero-img {
  width: 100vw;
  max-width: 100vw;
  height: 90vh;
  min-height: 90vh;
  object-fit: cover;
  display: block;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.hero-content {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  right: 0;
  z-index: 6;
  display: flex;
  align-items: stretch;
  height: 100%;
  pointer-events: none;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-title {
  font-family: var(--font-title, 'Orbitron', Arial, sans-serif);
  font-size: 3.2rem;
  color: #fff;
  font-weight: 800;
  margin: 0 0 1.2rem 0;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}
.hero-subtitle {
  color: #fff;
  font-size: 1.35rem;
  margin: 0 0 2.2rem 0;
  font-weight: 400;
  position: relative;
  z-index: 2;
}
.hero-btn {
  display: inline-block;
  background: #fff;
  color: #0F1116;
  border-radius: 250px;
  padding: 1rem 3rem;
  font-size: 1.08rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,168,255,0.18);
  transition: var(--transition, 0.3s);
  margin-top: 0.5rem;
  pointer-events: auto;
  border: none;
  cursor: pointer;
}
.hero-btn-absolute {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  position: relative;
  left: 0;
  right: 0;
  bottom: 0;
  transform: none;
  z-index: 30;
  pointer-events: auto;
  min-width: 180px;
  box-shadow: 0 4px 24px rgba(0,168,255,0.18);
}
.hero-btn:hover {
  background: #0c0f1479;
  color: #fff;
  border: 1px solid #46546F;
}

@media (max-width: 700px) {
  .hero-content {
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 1.2rem;
    height: 100%;
  }

  .hero-title {
    font-size: 2.1rem;
    text-align: left;
    margin-bottom: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #fff;
  }
  .hero-subtitle {
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 1.2rem;
    text-align: left;
    font-weight: 400;
  }
  .hero-btn {
    font-size: 1rem;
    padding: 0.7rem 2.2rem;
    border-radius: 999px;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    display: block;
    width: auto;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,168,255,0.18);
    background: #fff;
    color: #0F1116;
    font-weight: 700;
  }
  .hero-btn-absolute {
    display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  position: relative;
  left: 0;
  right: 0;
  bottom: 0;
  transform: none;
  z-index: 30;
  pointer-events: auto;
  min-width: 180px;
  box-shadow: 0 4px 24px rgba(0,168,255,0.18);
  }

}