@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    scroll-behavior: smooth;
}

body, button, input, select, textarea {
    font-family: 'Lucida Fax', 'Lucida Bright', 'Lucida', serif;
}

.gradient-bg {
    background: linear-gradient(135deg, #000428 0%, #004e92 100%);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-overlay {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.nav-link {
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #cca633;
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.animated-bg {
    animation: gradientShift 15s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}