html, body, button, input, textarea, select {
    font-family: 'Manrope', sans-serif;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #121212;
}
::-webkit-scrollbar-thumb {
    background: #3e2d30;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #d8a6b0;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
@media (max-width: 767px) {
    .reveal {
        transform: translateY(28px) scale(0.97);
        transition-duration: 0.6s;
    }
}
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
