@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ==========================================================================
   1. VARIABLES GLOBALES (THÈME)
   ========================================================================== */
:root {
    --primary-color: #ffffff;
    --secondary-color: rgb(23, 28, 57);
    --infinity-blue: rgb(49, 42, 69);
    --infinity-orange: rgb(242, 142, 44);
}

/* ==========================================================================
   2. RÉINITIALISATION & CONFIGURATION DE BASE
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    background-color: #f9f9f9;
    font-family: 'Poppins', sans-serif;
}

/* Typographie standard */
p, h1, h2, h3, h4, h5 {
    color: var(--infinity-blue);
}

/* ==========================================================================
   3. ÉLÉMENTS INTERACTIFS (BOUTONS & LIENS)
   ========================================================================== */
button {
    margin-top: 10px;
    padding: 5px 10px;
    color: #ffffff;
    background-color: var(--infinity-blue);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.4s ease, transform 0.3s ease;
}

button:hover {
    color: #ffffff;
    background-color: rgba(242, 142, 44, 0.8);
}

/* Comportement au survol des liens dans le contenu principal */
main a:hover {
    color: #162532;
    background-color: rgba(242, 142, 44, 0.8);
    border-color: #ffffff;
}

/* ==========================================================================
   4. OPTIMISATION MOBILES & ACCESSIBILITÉ
   ========================================================================== */
@media screen and (max-width: 450px) {
    /* Supprime le carré bleu disgracieux au clic sur écran tactile */
    input,
    textarea,
    button,
    select,
    a,
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    a:focus,
    a:active {
        outline: none;
    }
}
