/* ============================================
   ULTRA PREMIUM 3D HERO TEXT
   Centered | Cinematic depth | Magic shimmer
   ============================================ */

/* Initial State - Hidden before GSAP animation */
.hero-cinematic-title,
.hero-cinematic-subtitle,
.hero-cta-group .btn-feminine-luxury {
  opacity: 0;
  visibility: hidden;
}

/* Base title — centered layout */
.hero-cinematic-title {
  display: flex;
  flex-direction: column;
  align-items: center;       /* Center each line */
  text-align: center;        /* Center text within lines */
  gap: 0.05em;
  transform-style: preserve-3d;
  perspective: 1200px;
  position: relative;
  z-index: 10;
}

/* Each line as a 3D block */
.hero-title-line {
  display: block;
  position: relative;
  line-height: 1.05;

  /* Deep multi-layer 3D shadow stack */
  text-shadow:
    /* Top bevel highlight */
    0 1px 0   rgba(255, 255, 255, 0.6),
    /* Progressive depth layers */
    0 2px 0   rgba(200, 100, 160, 0.3),
    0 3px 0   rgba(180, 80, 140, 0.25),
    0 4px 0   rgba(160, 60, 120, 0.2),
    0 5px 0   rgba(140, 40, 100, 0.15),
    0 6px 0   rgba(120, 20, 80, 0.1),
    /* Soft ambient spread */
    0 8px 10px  rgba(0, 0, 0, 0.3),
    0 15px 25px rgba(0, 0, 0, 0.2),
    0 25px 40px rgba(255, 46, 147, 0.12),
    /* Outer cinematic glow for video contrast */
    0 0 80px rgba(0, 0, 0, 0.6);

  /* Subtle tilt for 3D perspective feel */
  transform: perspective(800px) rotateX(2deg);
  transition: text-shadow 0.6s ease, transform 0.6s ease;
}

.hero-cinematic-title:hover .hero-title-line {
  transform: perspective(800px) rotateX(0deg);
  text-shadow:
    0 1px 0   rgba(255, 255, 255, 0.7),
    0 2px 0   rgba(220, 120, 180, 0.4),
    0 4px 0   rgba(180, 80, 140, 0.3),
    0 6px 0   rgba(140, 40, 100, 0.2),
    0 10px 15px rgba(0, 0, 0, 0.3),
    0 20px 35px rgba(255, 46, 147, 0.2),
    0 0 100px rgba(0, 0, 0, 0.5);
}

/* ============================================
   MAGIC WORD — Iridescent Aurora Color (inline)
   ============================================ */

.hero-magic-word {
  display: inline;

  /* Iridescent gradient: gold → magenta → violet → cyan */
  background: linear-gradient(
    90deg,
    #ffd700 0%,
    #ff69b4 20%,
    #ff2e93 35%,
    #bf5fff 55%,
    #00d4ff 75%,
    #ffd700 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  /* Flowing aurora animation */
  animation: magicShimmer 3s linear infinite;

  /* Glowing depth for the magic word */
  filter: drop-shadow(0 0 18px rgba(255, 46, 147, 0.7))
          drop-shadow(0 0 35px rgba(191, 95, 255, 0.5));

  /* Same size as its parent line, bold for punch */
  font-size: 1em;
  font-weight: 700;
  font-style: italic;
}

@keyframes magicShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Reflective light sweep on the full title */
.hero-cinematic-title::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 70%
  );
  background-size: 200% 100%;
  animation: lightSweep 6s ease-in-out infinite;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 11;
}

@keyframes lightSweep {
  0%   { background-position: -100% center; }
  60%  { background-position: 200% center; }
  100% { background-position: 200% center; }
}

/* Soft Subtitle Glow */
.hero-cinematic-subtitle {
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .hero-cinematic-title {
    align-items: center;
    text-align: center;
  }
}
