/* Custom styles to complement Tailwind */
html {
    scroll-behavior: smooth;
}

body {
    /* Prevent layout shift on mobile */
    overflow-x: hidden;
}

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

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

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

::-webkit-scrollbar-thumb {
    background: #801636; /* plum-800 */
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6c1733; /* plum-900 */
}

/* Form focus styles */
input:focus, textarea:focus {
    box-shadow: 0 0 0 3px rgba(217, 64, 99, 0.1);
}
