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

body {
    background-color: #1a0710; /* Plum 950 */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #2e0b18; /* Plum 900 */
}
::-webkit-scrollbar-thumb {
    background: #db4078; /* Plum 500 */
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #f59e0b; /* Amber 500 */
}

/* Animation Utilities */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}
