/* ULTRA PREMIUM CINEMATIC TYPOGRAPHY */

:root {
  --cinematic-easing: cubic-bezier(0.16, 1, 0.3, 1);
  --gold-accent: #d4af37;
  --hot-pink: #ff2e93;
}

.cinematic-h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(80px) rotateX(20px); /* Perspective tilt */
  filter: blur(10px);
  /* 3D Extrusion Effect */
  text-shadow: 
    0 1px 0 rgba(255,255,255,0.4),
    0 2px 0 rgba(255,46,147,0.3),
    0 3px 0 rgba(255,46,147,0.2),
    0 4px 0 rgba(255,46,147,0.15),
    0 5px 0 rgba(255,46,147,0.1),
    0 6px 1px rgba(0,0,0,.1),
    0 0 5px rgba(0,0,0,.1),
    0 1px 3px rgba(0,0,0,.3),
    0 3px 5px rgba(0,0,0,.2),
    0 5px 10px rgba(0,0,0,.25),
    0 10px 10px rgba(0,0,0,.2),
    0 20px 20px rgba(0,0,0,.15);
}

.cinematic-h1 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(135deg, #ffffff 0%, var(--hot-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding: 0 0.1em;
  text-shadow: 0 10px 40px rgba(255, 46, 147, 0.5);
}

.cinematic-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 3rem;
  display: block;
  opacity: 0;
  transform: translateY(20px);
}

.cinematic-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  max-width: 650px;
  margin: 0 auto 4rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(30px);
}

.section-eyebrow-premium {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--hot-pink);
  margin-bottom: 1.5rem;
  display: block;
}

.section-h2-premium {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 2rem;
  color: #fff;
}

.section-h2-premium em {
  font-style: italic;
  color: var(--hot-pink);
}

@media (max-width: 768px) {
  .cinematic-h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }
  .cinematic-desc {
    font-size: 1rem;
    padding: 0 1rem;
  }
}
