/* Custom Base Styles */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* Specific utilities for specific pages */
.hero-overlay {
    background: linear-gradient(rgba(31, 41, 55, 0.7), rgba(31, 41, 55, 0.85));
}
