/* HERO WRAPPER (COMPACT) */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  overflow: hidden;

  background: linear-gradient(120deg, #fff7f9, #fff2e6, #fff7f0);
  background-size: 200% 200%;
  animation: gradientShift 18s ease infinite;
}

/* SOFT BACKGROUND DEPTH */
.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.35;
  z-index: 0;
}

.hero-bg::before {
  background: #ff7aa2;
  top: -140px;
  left: -120px;
}

.hero-bg::after {
  background: #ffb86b;
  bottom: -160px;
  right: -120px;
}

/* CENTER CONTAINER */
.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 820px;
  display: flex;
  justify-content: center;
}

/* MAIN CARD */
.hero-card {
  width: 100%;
  text-align: center;

  padding: 2.2rem 1.8rem; /* 🔥 tighter spacing */
  border-radius: 26px;

  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);

  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);

  animation: fadeUp 0.7s ease-out;
}

/* SMALL TOP BADGE */
.hero-badge-top {
  display: inline-block;
  font-size: 0.85rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;

  background: rgba(255, 122, 162, 0.12);
  color: #d14b72;

  margin-bottom: 1rem;
}

/* TITLE */
.hero-card h1 {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 0.8rem;
  color: #1f1f1f;
  letter-spacing: -0.4px;
  font-family: 'Merienda', cursive;
}

/* SUBTEXT */
.hero-card p {
  font-size: 1rem;
  color: #555;
  max-width: 520px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

/* CTA BUTTON */
.hero-actions {
  margin-bottom: 1.2rem;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 0.85rem 1.5rem;
  border-radius: 999px;

  background: linear-gradient(135deg, #ff7aa2, #ffb86b);
  color: white;
  text-decoration: none;
  font-weight: 600;

  box-shadow: 0 10px 25px rgba(255, 122, 162, 0.25);

  transition: all 0.25s ease;
}

.arrow {
  transition: transform 0.25s ease;
}

.hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 122, 162, 0.35);
}

.hero-button:hover .arrow {
  transform: translateX(6px);
}
/* RATING PILL */
.hero-rating {
  display: inline-flex;
  gap: 8px;
  align-items: center;

  font-size: 0.9rem;
  color: #444;
  text-decoration: none;

  padding: 0.55rem 1rem;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-rating span {
  color: #666;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .hero {
    min-height: 60vh; /* even more compact on mobile */
    padding: 2.5rem 1rem;
  }

  .hero-card {
    padding: 2rem 1.2rem;
  }

  .hero-card h1 {
    font-size: 1.8rem;
  }

  .hero-card p {
    font-size: 0.95rem;
  }
}

/* SOFT GRADIENT ANIMATION */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* FLOATING GLOW PARTICLES */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* BASE GLOW STYLE */
.glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.28;
  animation: floatGlow 14s ease-in-out infinite;
}

/* INDIVIDUAL ORBS */
.glow-1 {
  background: #ff7aa2;
  top: -120px;
  left: -100px;
  animation-delay: 0s;
}

.glow-2 {
  background: #ffb86b;
  bottom: -140px;
  right: -120px;
  animation-delay: 3s;
}

.glow-3 {
  background: #ffd1dc;
  top: 40%;
  left: 55%;
  width: 260px;
  height: 260px;
  opacity: 0.18;
  animation-delay: 6s;
}

/* FLOAT ANIMATION (VERY SUBTLE DRIFT) */
@keyframes floatGlow {
  0% {
    transform: translate(0px, 0px) scale(1);
  }
  50% {
    transform: translate(30px, -20px) scale(1.08);
  }
  100% {
    transform: translate(0px, 0px) scale(1);
  }
}

/* KEEP CONTENT ABOVE EFFECTS */
.hero-container {
  position: relative;
  z-index: 2;
}
