@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Custom Animations */
.hover\:scale-up {
    transition: transform 0.3s ease;
}

.hover\:scale-up:hover {
    transform: scale(1.05);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Gradient Backgrounds */
.gradient-primary {
    background: linear-gradient(135deg, #15803d 0%, #166534 100%);
}

/* Custom Shadows */
.shadow-custom {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
                0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Custom Transitions */
.transition-custom {
    transition: all 0.3s ease;
} 