/* Custom Styles */
body {
    font-family: 'Manrope', sans-serif;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1c1c1c;
}

::-webkit-scrollbar-thumb {
    background: #433d28;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d4af35;
}

.map-filter {
    filter: grayscale(100%) invert(92%) contrast(83%);
    mix-blend-mode: normal;
}

/* Animation Utils */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}