/********************************************
    FOOTER
*********************************************/

/* Conteneur global */
.site-footer {
    padding-left: 50px;
    padding-right:50px;
    margin-bottom:40px;
    font-family: "Inter Tight", sans-serif;
}

/* Centrage du contenu */
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===== Ligne 1 : Nom / Prénom ===== */
.footer-top {
    margin-bottom: 30px;
}

.footer-name {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin: 0;
}

/* ===== Ligne 2 : menus et liens ===== */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Colonnes gauche / droite */
.footer-left,
.footer-right {
    display: flex;
    gap: 20px;
}

.footer-left ul,
.footer-right ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.footer-left li a,
.footer-right li a {
    text-decoration: none;
    color: #000;
    font-weight: 400;
    transition: color 0.3s;
}

.footer-left li a:hover,
.footer-right li a:hover {
    color: #333;
}

/* Centre : liens sociaux / contact */
.footer-center {
    display: flex;
    gap: 25px;
    margin-left:30px;
}

.footer-center a {
    text-decoration: none;
    color: #000;
    font-weight: 400;
    text-decoration: underline;
    transition: color 0.3s;
    text-underline-offset: 5px;     /* espace entre texte et trait */
}

.footer-center a:hover {
    color: #333;
}

/********************************************
        💻 GRAND ÉCRAN / LARGE
********************************************/
@media (min-width: 1025px) {
    .site-footer {
        padding-left: 50px;
        padding-right: 50px;
        margin-bottom: 40px;
    }

    .footer-name {
        font-size: 48px;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .footer-left ul,
    .footer-right ul {
        flex-direction: row;
        gap: 20px;
    }

    .footer-center {
        gap: 25px;
        margin-left: 30px;
    }
}

/********************************************
        📱 TABLETTE / iPAD
        (768px – 1024px)
********************************************/
@media (min-width: 768px) and (max-width: 1024px) {
    .site-footer {
        padding-left: 40px;
        padding-right: 40px;
        margin-bottom: 35px;
    }

    .footer-name {
        font-size: 36px;
        margin-bottom: 25px;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
    }

    .footer-left ul,
    .footer-right ul {
        flex-direction: row;
        gap: 15px;
    }

    .footer-center {
        gap: 20px;
        margin-left: 10px;
    }
}

/********************************************
        📱 TÉLÉPHONE / MOBILE
        (<768px)
********************************************/
@media (max-width: 767px) {
    .site-footer {
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: 30px;
    }

    .footer-name {
        font-size: 28px;
        margin-bottom: 10px;
        text-align: center;
    }

    .footer-bottom {
        margin-top:-10px;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    /* Trois lignes distinctes : left / center / right */
    .footer-left,
    .footer-center,
    .footer-right {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .footer-left ul,
    .footer-right ul {
        flex-direction: row;
        gap: 15px;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .footer-center {
        flex-direction: row;
        gap: 15px;
        margin: 0;
    }

    .footer-left li a,
    .footer-right li a,
    .footer-center a {
        font-size: 14px;
        text-align: center;
    }
}
