/**
 * Animation Styles
 * Keyframes, transitions, and visual effects
 */

/* ============================================================================
   KEYFRAME ANIMATIONS
   ============================================================================ */



/* Show content immediately if user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero_content h1,
    .hero_content p,
    .hero_content .button {
        opacity: 1;
        transform: none;
    }
}

/* ============================================================================
   RIPPLE EFFECT
   ============================================================================ */

.button, button {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}
