/* Hero section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  overflow: visible;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: var(--text-hero);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-black);
  position: relative;
  z-index: 3;
}

/* Blob */
.blob-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.blob {
  width: 55vmin;
  height: 55vmin;
  background: radial-gradient(
    ellipse at 50% 50%,
    #F472B6 0%,
    #E8A0BF 30%,
    rgba(232, 160, 191, 0.4) 60%,
    transparent 75%
  );
  animation: blob-morph 8s ease-in-out infinite alternate;
  will-change: transform, border-radius;
  filter: blur(1px);
}

/* Sparkle decorations */
.sparkle {
  position: absolute;
  font-size: 1.5rem;
  color: var(--color-black);
  z-index: 4;
  animation: sparkle-float 6s ease-in-out infinite;
  pointer-events: none;
  user-select: none;
}

.sparkle:nth-of-type(1) {
  top: 18%;
  right: 22%;
  animation-delay: 0s;
  animation-duration: 7s;
}

.sparkle:nth-of-type(2) {
  bottom: 18%;
  left: 24%;
  animation-delay: -2s;
  animation-duration: 8s;
}

.sparkle:nth-of-type(3) {
  top: 20%;
  left: 18%;
  animation-delay: -4s;
  animation-duration: 6s;
  font-size: 1rem;
}

.sparkle:nth-of-type(4) {
  bottom: 22%;
  right: 16%;
  animation-delay: -1s;
  animation-duration: 9s;
  font-size: 1.2rem;
}

.sparkle:nth-of-type(5) {
  top: 12%;
  left: 45%;
  animation-delay: -3s;
  animation-duration: 7.5s;
  font-size: 0.8rem;
}

/* SVG grain filter - hidden */
.blob-grain {
  position: absolute;
  width: 0;
  height: 0;
}
