/**
 * Birthday Landing Page Styles
 * Fun, celebratory theme with balloons, confetti, and party vibes
 */

/* ===== BIRTHDAY THEME OVERRIDES ===== */

.birthday-theme .hero-section {
  background: linear-gradient(135deg, #4a5cd6 0%, #5c3d8f 50%, #8b4d9e 100%);
}

/* Improve text readability on gradient background */
.birthday-theme .hero-headline,
.birthday-theme .trust-text,
.birthday-theme .step-text {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Floating Balloons */
.balloons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.balloon {
  position: absolute;
  font-size: 3rem;
  animation: floatBalloon 8s ease-in-out infinite;
  opacity: 0.8;
}

.balloon-1 {
  left: 5%;
  top: 20%;
  animation-delay: 0s;
  filter: hue-rotate(0deg);
}

.balloon-2 {
  left: 15%;
  top: 40%;
  animation-delay: 1s;
  filter: hue-rotate(60deg);
}

.balloon-3 {
  right: 10%;
  top: 15%;
  animation-delay: 2s;
  filter: hue-rotate(120deg);
}

.balloon-4 {
  right: 20%;
  top: 35%;
  animation-delay: 0.5s;
  filter: hue-rotate(180deg);
}

.balloon-5 {
  left: 50%;
  top: 10%;
  animation-delay: 1.5s;
  filter: hue-rotate(240deg);
}

@keyframes floatBalloon {
  0%, 100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-30px) rotate(5deg);
  }
}

/* Confetti */
.confetti {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.confetti-piece {
  position: absolute;
  font-size: 1.5rem;
  animation: confettiFall 6s linear infinite;
  opacity: 0.7;
}

.confetti-1 { left: 10%; animation-delay: 0s; }
.confetti-2 { left: 25%; animation-delay: 1s; }
.confetti-3 { left: 40%; animation-delay: 2s; }
.confetti-4 { left: 55%; animation-delay: 0.5s; }
.confetti-5 { left: 70%; animation-delay: 1.5s; }
.confetti-6 { left: 85%; animation-delay: 2.5s; }
.confetti-7 { left: 30%; animation-delay: 3s; }
.confetti-8 { left: 60%; animation-delay: 3.5s; }

@keyframes confettiFall {
  0% {
    transform: translateY(-100px) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

/* Birthday Cake */
.birthday-cake {
  position: absolute;
  bottom: 10%;
  right: 5%;
  font-size: 4rem;
  animation: cakeBounce 2s ease-in-out infinite;
  z-index: 2;
}

@keyframes cakeBounce {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.05);
  }
}

/* Gift Badge - Birthday Colors */
.birthday-theme .gift-badge {
  background: linear-gradient(135deg, #ff6b9d 0%, #ffc371 100%);
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Step Numbers - Party Colors */
.birthday-theme .step-number {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

/* CTA Repeat Section - Birthday Theme */
.birthday-theme .cta-repeat-section {
  background: linear-gradient(135deg, #7b4397 0%, #c94b7c 100%);
}

.birthday-theme .cta-repeat-title,
.birthday-theme .cta-repeat-subtitle {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.birthday-theme .cta-repeat-section::before {
  content: '🎈';
  position: absolute;
  left: 10%;
  top: 20%;
  font-size: 3rem;
  opacity: 0.3;
  animation: floatBalloon 4s ease-in-out infinite;
}

.birthday-theme .cta-repeat-section::after {
  content: '🎁';
  position: absolute;
  right: 10%;
  bottom: 20%;
  font-size: 3rem;
  opacity: 0.3;
  animation: cakeBounce 3s ease-in-out infinite;
}

/* Primary CTA Button - Birthday Style */
.birthday-theme .primary-cta {
  background: linear-gradient(135deg, #ff6b9d 0%, #ffc371 100%);
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

.birthday-theme .primary-cta:hover {
  background: linear-gradient(135deg, #ff5a8f 0%, #ffb560 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 157, 0.5);
}

/* Hero Content - Add subtle glow */
.birthday-theme .hero-content {
  position: relative;
  z-index: 10;
}

/* Sticky CTA - Birthday Colors */
.birthday-theme .sticky-cta {
  background: linear-gradient(135deg, #ff6b9d 0%, #ffc371 100%);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .balloon {
    font-size: 2rem;
  }

  .birthday-cake {
    font-size: 3rem;
    bottom: 5%;
    right: 3%;
  }

  .confetti-piece {
    font-size: 1rem;
  }

  .birthday-theme .cta-repeat-section::before,
  .birthday-theme .cta-repeat-section::after {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .balloon {
    font-size: 1.5rem;
  }

  .birthday-cake {
    font-size: 2.5rem;
  }

  .balloon-3,
  .balloon-4,
  .balloon-5 {
    display: none;
  }

  .confetti-5,
  .confetti-6,
  .confetti-7,
  .confetti-8 {
    display: none;
  }
}
