/* Animations for Invitation Section */
.animate-float-slow {
    animation: floatSlow 4s ease-in-out infinite;
}

.animate-float-delayed {
    animation: floatSlow 4s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes floatSlow {
    0% {
        transform: translateY(0px) rotate(-15deg);
    }

    50% {
        transform: translateY(-15px) rotate(-12deg);
    }

    100% {
        transform: translateY(0px) rotate(-15deg);
    }
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}