/* ======================
   SECTION HERO
====================== */
.hero {
  position: relative;
  height: 40vh;
  overflow: hidden;
}

html, body {
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #0a0a0a 100%);
  z-index: 2;
}

.hero h1 {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
  padding: 0 20px;
  box-sizing: border-box;
  font-weight: bold;
  letter-spacing: 1px;
  text-shadow: 0 0 5px #ff2aa8, 0 0 10px #ff2aa8, 0 0 20px #ff2aa8;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.4rem;
    padding: 0 15px;
    line-height: 1.4;
  }
}

/* ======================
   TITRE PAGE
====================== */

.lux-title {
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
  font-family: 'Anton', sans-serif;
  font-size: 3.6rem;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  margin: 70px 0 0;
  letter-spacing: 3px;
  color: #ffffff;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.25);
  text-shadow:
    0 0 25px rgba(255, 40, 150, 0.9),
    0 0 60px rgba(255, 40, 150, 0.5),
    0 0 100px rgba(255, 40, 150, 0.35);
}

.lux-title span {
  background: linear-gradient(110deg, #e02a7fff, #f890d0ff, #e02a7fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;

  -webkit-text-stroke: 1px rgba(255, 120, 200, 0.5);


}

.lux-sub {
  text-align: center;
  margin-top: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 1px;
  color: #ffe3f6;

  text-shadow:
    0 0 10px rgba(255, 80, 170, 0.6),
    0 0 30px rgba(255, 80, 170, 0.4);
}

@media (max-width: 768px) {
  .lux-title {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }
}


/* ======================
   CTA HERO (invite.php)
====================== */
.cta-hero {
  margin-top: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-hero a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 26px;
  font-size: 1.2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
}

.cta-hero a.abonne {
  background: #ff2aa8;
  color: #fff;
  font-size: 1.4rem;
}
.cta-hero a.abonne:hover {
  background: #e6007e;
}

.cta-hero a.connect {
  background: #444;
  color: #fff;
  font-size: 1rem;
  font-weight: normal;
}


/* ======================
   REVEAL ANIMATIONS
====================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

.reveal-stagger {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal-stagger.is-visible { opacity: 1; transform: none; }

/* ======================
   EXTRA (invite.php)
====================== */
.video-card:hover img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.newsletter-section input[type="email"] {
  padding: 14px;
  border: 1px solid #db1895;
  border-radius: 5px;
  background: #000;
  color: #fff;
  width: 100%;
  max-width: 400px;
  font-size: 1rem;
}

.section-title {
  color:#ff2aa8;
  text-align:center;
  margin-bottom:10px;
}