/* Custom Animations and Utilities */
@keyframes pulse-slow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.animate-pulse-slow {
    animation: pulse-slow 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

html {
    scroll-behavior: smooth;
}

body {
    /* Fallback color if Tailwind config doesn't load immediately */
    background-color: #fdf4f6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #fdf4f6;
}

::-webkit-scrollbar-thumb {
    background: #d94060;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c02040;
}

/* Form focus styles */
input:focus, textarea:focus {
    outline: none;
    border-color: #d94060;
    box-shadow: 0 0 0 3px rgba(217, 64, 96, 0.2);
}
