/* Custom Font Classes */
.font-fantasy {
    font-family: 'Cinzel', serif;
}

.font-sans {
    font-family: 'Inter', sans-serif;
}

/* Smooth fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}