/* Polices de caractères */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

:root {
    --mauze-yellow: #F2D027;
    --mauze-ardoise: #2d2e32;
    --mauze-blanc:#FFFFFF;
    --bg-light: #f9fafb;
    --text-dark: #111827;
    --text-gray: #6b7280;
    --text-yellow:#F2D027;
}
* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* 100% de la hauteur de la vue */
    
}

main, .container-main {
    flex: 1 0 auto; /* C'est cette ligne qui pousse le footer */
    padding: 40px 0; /* Un peu d'air pour ton titre */
}

/* Le footer reste à sa taille normale mais tout en bas */
.main-footer {
    flex-shrink: 0;
    background-color: var(--mauze-ardoise);
    color: white;
    padding: 20px 0;
    text-align: center;
}

h1, h2, h3, .font-black {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}
h1 { text-align:center; }


.italic-title {
    font-style: italic;
}

.gras{font-weight: bold;}
.gras{text-align: justify;}

.section-title {
    color: var(--mauze-ardoise);
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
}

.text-yellow {
    color: var(--mauze-yellow);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.text-ardoise {
    color: var(--mauze-ardoise);
}

p {
    text-align: justify; /* Les mots s'espacent pour remplir la ligne */
}

/** { outline: 1px solid red !important; }*/