/* Styles personnalisés supplémentaires */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

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

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
}

/* Lien actif */
a:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Boutons */
button {
    transition: all 0.3s ease;
    cursor: pointer;
}

button:active {
    transform: scale(0.98);
}

/* Formulaire */
input, textarea {
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
    border-color: #2563eb !important;
}

/* Cards */
.shadow-md {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
