/* HERO CINEMATIC TYPOGRAPHY
 * Luxury Serif Editorial Style
 */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600&display=swap');

.hero-content-wrapper {
  position: relative;
  z-index: 50; /* Above all atmospheric effects */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 0 2rem;
}

.hero-cinematic-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(3rem, 10vw, 128px); /* Dramatic scale */
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
  z-index: 10;
  
  /* Compositional Polish */
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  
  /* Initial state for JS reveal */
  opacity: 0;
  filter: blur(20px);
  transform: translateY(30px);
}

.hero-cinematic-title em {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(135deg, #ffffff 30%, var(--hot-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-cinematic-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  max-width: 600px;
  margin: 0 auto 4rem;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(20px);
}

.hero-cinematic-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: var(--hot-pink);
  margin-bottom: 2rem;
  display: block;
  opacity: 0;
  transform: translateY(15px);
}

@media (max-width: 768px) {
  .hero-cinematic-title {
    font-size: clamp(2.5rem, 15vw, 4rem);
    line-height: 1.1;
  }
}

.hero-cta-group {
  display: flex;
  gap: 2rem;
  justify-content: center;
  position: relative;
  z-index: 60;
}

@media (max-width: 768px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .hero-cta-group .btn-feminine-luxury {
    width: 100%;
    text-align: center;
  }
}

