/* Curseur personnalisé pour les liens et le sélecteur de langue */
.footer-link, #language-select {
    cursor: url('../Images/pointer.svg') 10 10, pointer;
}

.footer {
    background-color: #0068FF;
    color: white;
    text-align: center;
    padding: 20px 10px;
    font-family: "Londrina Solid";
    font-size: 18px;
    border-top: 4px solid black;
    box-shadow: inset 0 9px 0 black;
    margin: 0;
    margin-top: 20vh;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.footer-link {
    color: white;
    text-decoration: none;
    position: relative;
    font-size: 16px;
    font-family: "Londrina Solid";
    transition: color 0.3s;
    cursor: url('../Images/pointer.png') 10 10, pointer;
}

.footer-link:hover {
    color: #FFC700;
}

.footer-link:hover::after {
    width: 100%;
}

.footer a{
    cursor: url('../Images/pointer.png') 10 10, pointer;
}

/* Animation soulignement */
.footer-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: white;
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
}

.footer-lang {
    display: flex;
    justify-content: center;
}

#language-select {
    font-family: "Londrina Solid";
    font-size: 16px;
    background-color: #0068FF;
    color: white;
    border: 4px solid black;
    border-radius: 2px;
    box-shadow: 6px 6px 0px black;
    padding: 5px 10px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    cursor: url('../Images/pointer.svg') 10 10, pointer;
}

#language-select:hover {
    background-color: #DD7DFF;
    color: black;
    box-shadow: 4px 4px 0px black;
    cursor: url('../Images/pointer.svg') 10 10, pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        padding: 10px;
        gap: 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-lang {
        margin-top: 10px;
    }
}