body {
    font-family: 'Inter', sans-serif;
    background-color: #F8F9FA;
    color: #2C3E50;
}

.font-gothic {
    font-family: 'Dela Gothic One', cursive;
}

.gradient-text {
    background: linear-gradient(to right, #204D3A, #2ECC71);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link:hover {
    color: #D4AF37;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

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