/* Easter Overlay Styles */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-scale-in {
  animation: scaleIn 0.3s ease-out forwards;
}

/* Easter Banner */
.easter-banner {
  background: linear-gradient(135deg, #86efac 0%, #4ade80 25%, #22c55e 50%, #4ade80 75%, #86efac 100%);
  border-bottom: 3px solid #f59e0b;
  position: relative;
  overflow: hidden;
}

.easter-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 25%, #f59e0b 50%, #fbbf24 75%, #f59e0b 100%);
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

/* Flower petals animation */
@keyframes petalfall {
  0% {
    transform: translateY(-10px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(180deg);
    opacity: 0;
  }
}

.flower-petal {
  position: absolute;
  top: -10px;
  color: rgba(251, 191, 36, 0.7);
  user-select: none;
  pointer-events: none;
  animation: petalfall linear infinite;
}

.flower-petal:nth-child(1) {
  left: 10%;
  animation-duration: 8s;
  animation-delay: 0s;
  font-size: 14px;
}

.flower-petal:nth-child(2) {
  left: 20%;
  animation-duration: 10s;
  animation-delay: 1s;
  font-size: 18px;
}

.flower-petal:nth-child(3) {
  left: 30%;
  animation-duration: 6s;
  animation-delay: 2s;
  font-size: 12px;
}

.flower-petal:nth-child(4) {
  left: 40%;
  animation-duration: 12s;
  animation-delay: 0.5s;
  font-size: 16px;
}

.flower-petal:nth-child(5) {
  left: 50%;
  animation-duration: 9s;
  animation-delay: 1.5s;
  font-size: 14px;
}

.flower-petal:nth-child(6) {
  left: 60%;
  animation-duration: 7s;
  animation-delay: 3s;
  font-size: 17px;
}

.flower-petal:nth-child(7) {
  left: 70%;
  animation-duration: 11s;
  animation-delay: 0s;
  font-size: 13px;
}

.flower-petal:nth-child(8) {
  left: 80%;
  animation-duration: 8s;
  animation-delay: 2.5s;
  font-size: 15px;
}

.flower-petal:nth-child(9) {
  left: 90%;
  animation-duration: 10s;
  animation-delay: 1s;
  font-size: 16px;
}

.flower-petal:nth-child(10) {
  left: 95%;
  animation-duration: 9s;
  animation-delay: 0.8s;
  font-size: 14px;
}

/* Pulse animation for important info */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(245, 158, 11, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.8);
  }
}

.easter-banner .btn-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

/* Easter egg lights effect */
@keyframes lights {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.easter-light {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 4px;
}

.light-pink {
  background-color: #f472b6;
  animation: lights 1.5s ease-in-out infinite;
}

.light-yellow {
  background-color: #fbbf24;
  animation: lights 1.5s ease-in-out infinite 0.5s;
}

.light-green {
  background-color: #4ade80;
  animation: lights 1.5s ease-in-out infinite 1s;
}

.light-blue {
  background-color: #60a5fa;
  animation: lights 1.5s ease-in-out infinite 1.5s;
}

/* Easter Hero Slide Background */
.easter-hero-bg {
  background: linear-gradient(135deg, #86efac 0%, #4ade80 25%, #22c55e 50%, #4ade80 75%, #86efac 100%);
  background-size: 400% 400%;
  animation: easterGradient 12s ease infinite;
  position: relative;
}

@keyframes easterGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Falling flower petals for hero slide */
.hero-flower-petal {
  position: absolute;
  top: -10px;
  color: rgba(251, 191, 36, 0.9);
  user-select: none;
  pointer-events: none;
  animation: petalfall linear infinite;
  text-shadow: 0 0 3px rgba(251, 191, 36, 0.5);
  z-index: 1;
}

.hero-flower-petal:nth-child(1) { left: 5%; animation-duration: 10s; animation-delay: 0s; font-size: 20px; }
.hero-flower-petal:nth-child(2) { left: 15%; animation-duration: 12s; animation-delay: 1s; font-size: 24px; }
.hero-flower-petal:nth-child(3) { left: 25%; animation-duration: 8s; animation-delay: 2s; font-size: 18px; }
.hero-flower-petal:nth-child(4) { left: 35%; animation-duration: 11s; animation-delay: 0.5s; font-size: 22px; }
.hero-flower-petal:nth-child(5) { left: 45%; animation-duration: 9s; animation-delay: 1.5s; font-size: 20px; }
.hero-flower-petal:nth-child(6) { left: 55%; animation-duration: 13s; animation-delay: 3s; font-size: 26px; }
.hero-flower-petal:nth-child(7) { left: 65%; animation-duration: 7s; animation-delay: 0s; font-size: 19px; }
.hero-flower-petal:nth-child(8) { left: 75%; animation-duration: 10s; animation-delay: 2.5s; font-size: 23px; }
.hero-flower-petal:nth-child(9) { left: 85%; animation-duration: 11s; animation-delay: 1s; font-size: 21px; }
.hero-flower-petal:nth-child(10) { left: 95%; animation-duration: 9s; animation-delay: 0.8s; font-size: 18px; }
.hero-flower-petal:nth-child(11) { left: 10%; animation-duration: 12s; animation-delay: 2.2s; font-size: 17px; }
.hero-flower-petal:nth-child(12) { left: 30%; animation-duration: 8s; animation-delay: 1.8s; font-size: 25px; }
.hero-flower-petal:nth-child(13) { left: 50%; animation-duration: 10s; animation-delay: 3.5s; font-size: 20px; }
.hero-flower-petal:nth-child(14) { left: 70%; animation-duration: 9s; animation-delay: 2.8s; font-size: 22px; }
.hero-flower-petal:nth-child(15) { left: 90%; animation-duration: 11s; animation-delay: 1.2s; font-size: 19px; }

/* Easter opening hours table styling for hero */
.easter-hours-hero {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  margin: 0 auto;
}

.easter-hours-hero .hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.easter-hours-hero .hours-row:last-child {
  border-bottom: none;
}

.easter-hours-hero .date {
  font-weight: 600;
  color: #1f2937;
}

.easter-hours-hero .time-open {
  font-weight: 700;
  color: #15803d;
}

.easter-hours-hero .time-closed {
  font-weight: 700;
  color: #dc2626;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .easter-banner {
    font-size: 0.9rem;
  }

  .easter-overlay-content {
    max-height: 90vh;
    overflow-y: auto;
  }

  .easter-hours-hero {
    padding: 1rem;
    font-size: 0.9rem;
  }
}