/* Move hero video down */
.hero-video {
  margin-top: 100px !important;
}

/* Logo Animation Styles */

/* Apply animations to the egg logo */
.animated-logo {
  animation: grow-animation 2s ease-in-out infinite alternate;
  transform-origin: center;
  filter: drop-shadow(0 0 2px rgba(255, 0, 60, 0.2));
  transition: filter 0.1s ease;
}

/* Define the growing animation with synchronized glow */
@keyframes grow-animation {
  0% {
    transform: scale(0.85);
    opacity: 0.9;
    filter: drop-shadow(0 0 2px rgba(255, 0, 60, 0.2));
  }
  90% {
    transform: scale(0.95);
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(255, 0, 60, 0.8));
  }
  100% {
    transform: scale(1);
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(255, 0, 60, 0.8));
  }
}

/* Enhanced hover effect */
.animated-logo:hover {
  filter: drop-shadow(0 0 15px rgba(255, 0, 60, 1)) !important;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .animated-logo {
    animation-duration: 1s; /* Slightly faster on mobile */
  }
}
