.Footer {
    position: relative;
    background-color: #03224c;
    color: #ffffff;
    overflow: hidden;
}

.Footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #d5a928;
}

.footer-container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.25fr 1fr;
    gap: 60px;
    width: min(1200px, calc(100% - 60px));
    margin: auto;
    padding: 65px 0 55px;
}

.footer-colonne h2 {
    position: relative;
    margin: 0 0 25px;
    padding-bottom: 14px;
    font-size: 21px;
    font-weight: 700;
    color: #ffffff;
}

.footer-colonne h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    border-radius: 5px;
    background: #d5a928;
}

.footer-coordonnees address {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    margin: 0;
    font-style: normal;
    color: #cfcfcf;
}

.footer-coordonnees address strong {
    color: #ffffff;
    font-size: 17px;
}

.footer-coordonnees address p {
    margin: 0 0 4px;
    line-height: 1.7;
}

.footer-coordonnees address a {
    color: #cfcfcf;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-coordonnees address a:hover {
    color: #d5a928;
    transform: translateX(4px);
}

.footer-presentation {
    text-align: center;
}

.footer-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    min-height: 90px;
    margin-bottom: 20px;
}

.footer-logo {
    display: block;
    width: 170px;
    max-height: 85px;
    object-fit: contain;
}

.footer-artisan {
    display: block;
    width: 75px;
    max-height: 75px;
    object-fit: contain;
}

.footer-presentation p {
    max-width: 430px;
    margin: auto;
    color: #cfcfcf;
    font-size: 15px;
    line-height: 1.8;
}

.footer-horaire {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #cfcfcf;
}

.footer-horaire span {
    margin-bottom: 4px;
}

.footer-horaire strong {
    width: fit-content;
    padding: 8px 13px;
    border: 1px solid rgba(213, 169, 40, 0.35);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.footer-bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: min(1200px, calc(100% - 60px));
    margin: auto;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: #999999;
    font-size: 13px;
}

.footer-liens {
    display: flex;
    align-items: center;
    gap: 25px;
}

.footer-liens a {
    color: #bcbcbc;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-liens a:hover {
    color: #d5a928;
}

@media screen and (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }

    .footer-presentation {
        grid-column: 1 / -1;
        grid-row: 1;
    }
}

@media screen and (max-width: 650px) {
    .Footer {
        margin-top: 50px;
    }

    .footer-container {
        display: flex;
        flex-direction: column;
        gap: 40px;
        width: calc(100% - 40px);
        padding: 50px 0 40px;
    }

    .footer-colonne {
        text-align: center;
    }

    .footer-colonne h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-coordonnees address {
        align-items: center;
    }

    .footer-horaire {
        align-items: center;
    }

    .footer-logos {
        flex-wrap: wrap;
    }

    .footer-bottom {
        flex-direction: column;
        width: calc(100% - 40px);
        padding: 25px 0;
        text-align: center;
    }

    .footer-liens {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 22px;
    }
}