/* --- Easter Theme Overrides --- */

/* Easter Hero Background */
.hero-section.easter-hero {
  background-image: url('/img/easter_hero.png');
}

/* Add a subtle pastel gradient overlay instead of pure black for a softer look */
.hero-section.easter-hero::before {
  background: linear-gradient(135deg, rgba(154, 140, 152, 0.75) 0%, rgba(238, 187, 195, 0.65) 100%);
}

.hero-section.easter-hero .hero-text h1 {
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-section.easter-hero .hero-text .lead {
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

/* Bouncy animation for the Easter emoji */
.easter-bunny {
  display: inline-block;
  animation: bounce 2s infinite;
  transform-origin: bottom center;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px) scaleY(1.1);
  }
  60% {
    transform: translateY(-7px) scaleY(1.05);
  }
}

/* Easter Intro Text Box */
.easter-intro {
  background-color: rgba(238, 187, 195, 0.15); /* very light pastel pink */
  padding: 1.5rem;
  border-radius: 0.5rem;
  border-left: 5px solid var(--accent-pink);
  box-shadow: 0 4px 6px rgba(0,0,0,0.03);
  line-height: 1.6;
}

/* Subtle festive styling for product cards */
.product-list-item {
  border: 1px solid rgba(238, 187, 195, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(154, 140, 152, 0.2);
  border-color: var(--accent-pink);
}
