/* Custom overrides and animations */
html {
    scroll-behavior: smooth;
}

body {
    /* Ensures serif fonts look crisp */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Smooth reveal animation for elements */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f5f5f4;
}
::-webkit-scrollbar-thumb {
    background: #a12942; /* plum-600 */
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #832036; /* plum-700 */
}
