body {
    font-family: 'Poppins', sans-serif;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 1s ease-out;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.bg-rose-pattern {
    background-image:
        radial-gradient(circle at 20% 50%, rgba(251, 207, 232, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(219, 234, 254, 0.1) 0%, transparent 50%);
}