/* ==========================================================================
   Pet Pati Palas - Micro-Animations & Keyframes
   ========================================================================== */

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulseGold {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(205, 180, 134, 0.4);
    }
    50% {
        box-shadow: 0 0 0 14px rgba(205, 180, 134, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating-card-1 {
    animation: floatSlow 5s ease-in-out infinite;
}

.floating-card-2 {
    animation: floatSlow 6s ease-in-out infinite 1s;
}

.pulse-badge {
    animation: pulseGold 2.5s infinite;
}
