/* Styles personnalisés */
.hero-gradient {
    background: linear-gradient(to right, #1a1a1a, #333);
}

.text-gradient {
    background: linear-gradient(to right, #33A5D9, #33A5D9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}