/* ===============================
   Valentine's Day Theme
   UI-only enhancements
   =============================== */

:root {
  --val-pink: #ff6b81;
  --val-rose: #ff4d6d;
  --val-soft: #fff1f5;
  --val-dark: #8b1d3d;
}

/* Global soft romantic feel */
body {
  background-color: #ffffff;
}

/* Hero Valentine overlay */
.valentine-hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(255, 107, 129, 0.85),
    rgba(255, 77, 109, 0.75),
    rgba(139, 29, 61, 0.65)
  );
}

/* Valentine badge */
.valentine-badge {
  background: linear-gradient(135deg, var(--val-pink), var(--val-rose));
  color: white;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 30px rgba(255, 77, 109, 0.35);
}

/* Countdown box */
.valentine-countdown {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.valentine-time {
  background: white;
  border-radius: 16px;
  padding: 14px 16px;
  min-width: 72px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.valentine-time span {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--val-dark);
}

.valentine-time small {
  font-size: 0.75rem;
  color: #777;
}

/* Valentine CTA button */
.valentine-btn {
  background: linear-gradient(135deg, var(--val-pink), var(--val-rose));
}

.valentine-btn:hover {
  box-shadow: 0 20px 40px rgba(255, 77, 109, 0.45);
}

/* Valentine waitlist card */
.valentine-card {
  background: linear-gradient(180deg, #ffffff, var(--val-soft));
  border: 1px solid rgba(255, 77, 109, 0.15);
}

/* Floating hearts animation */
@keyframes floatHearts {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translateY(-120px) scale(1.2);
    opacity: 0;
  }
}

.heart {
  position: absolute;
  color: rgba(255, 107, 129, 0.25);
  animation: floatHearts 6s linear infinite;
  font-size: 20px;
}
