body {
    background-color: skyblue;
}

/* Navbar stylée et hover */

.navbar-nav .nav-link {
    color: #212529; /* couleur normale du texte */
    border-radius: 0.5rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    background-color: #e9ecef; /* gris clair Bootstrap */
    color: #212529; /* on garde la même couleur */
}

/* Card-style pour le contenu */
.content-card {
    padding: 2rem;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 0 25px rgba(0,0,0,0.1);
}
.bg-image {
    background-image: url("images/back-pQdGSE9.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content-card {
    flex: 1;            /* pousse le footer en bas si le contenu est petit */
    margin-bottom: 3rem; /* espace entre contenu et footer */
}

.footer {
    background-color: #ffffff; /* fond blanc */
    color: #000000;            /* texte noir */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 -1px 6px rgba(0, 0, 0, 0.1);
}

.footer a {
    color: #000000; /* icônes et liens en noir */
    transition: color 0.3s;
}

.footer a:hover {
    color: #555555; /* gris foncé au survol */
}
