/* ===== custom.css ===== */

/* 1. Changer la couleur de fond du body */
body {
    background-color: #f8f9fa; /* gris clair Bootstrap */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #212529; /* gris Bootstrap */
}

/* 2. Style des titres */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #343a40;
}

/* 3. Personnalisation des boutons Bootstrap */
.btn-primary {
    background-color: #5a189a;
    border-color: #5a189a;
}

.btn-primary:hover {
    background-color: #3c096c;
    border-color: #3c096c;
}

/* 4. Liens */
a {
    color: #5a189a;
    text-decoration: none;
}

a:hover {
    color: #3c096c;
    text-decoration: underline;
}

/* 5. Container personnalisé */
.container-custom {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* 6. Footer simple */
footer {
    margin-top: 4rem;
    padding: 2rem;
    background-color: #212529;
    color: #fff;
    text-align: center;
    font-size: 0.9rem;
}
