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

body {
    background-color: #F5F0E6; /* Sand */
}

/* Smooth fade-in animation for elements */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

::-webkit-scrollbar-thumb {
    background: #C06C55;
    border-radius: 4px;
}

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