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

body {
    background-color: #FAF9F6; /* Cream */
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stagger-anim {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.stagger-anim:nth-child(2) {
    animation-delay: 0.2s;
}

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

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

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

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

/* Form focus styles */
input:focus, select:focus, textarea:focus {
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.3);
}
