/* Custom Styles - Infotech */

/* Fluidité du défilement */
html {
    scroll-behavior: smooth;
}

/* Ajustements pour les polices système */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Personnalisation de la sélection de texte */
::selection {
    background-color: #2563eb;
    color: #ffffff;
}

/* Ombre portée personnalisée pour les cartes */
.card-hover {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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