/* Logo Animation Styles */

/* Glowing effect for the logo */
.logo-glow {
    filter: drop-shadow(0 0 5px rgba(0, 255, 128, 0.5));
    transition: filter 0.3s ease;
}

/* Pulsating animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(0, 255, 128, 0.4));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 15px rgba(0, 255, 128, 0.7));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(0, 255, 128, 0.4));
    }
}

.logo-pulse {
    animation: pulse 2s infinite ease-in-out;
}

/* Different animation for the footer logo */
@keyframes footer-pulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(0, 255, 128, 0.5));
    }
    50% {
        transform: scale(1.03);
        filter: drop-shadow(0 0 12px rgba(0, 255, 128, 0.8));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(0, 255, 128, 0.5));
    }
}

.footer-logo-pulse {
    animation: footer-pulse 3s infinite ease-in-out;
}

/* Paused animation on hover */
.logo-pulse:hover, 
.footer-logo-pulse:hover {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .logo-pulse, 
    .footer-logo-pulse {
        animation-duration: 3s; /* Slower animation on mobile */
    }
}

/* Reduce animation for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .logo-pulse, 
    .footer-logo-pulse {
        animation: none;
        filter: drop-shadow(0 0 5px rgba(0, 255, 128, 0.5));
    }
}