@font-face {
    font-family: 'Coolvetica';
    src: url('/public/font/Coolvetica Rg.otf') format('opentype');
}

@font-face {
    font-family: 'Roboto';
    src: url('/public/font/Roboto-Medium.ttf') format('opentype');
}

@font-face {
    font-family: 'Cabin';
    src: url('/public/font/Cabin.ttf') format('opentype');
}

.footer {
    background: #ff3131;
    color: #fff;
    width: 100%;
    min-height: 250px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    padding: 20px 100px 20px 20px;
    margin-top: 20px;
    font-family: 'Cabin', sans-serif;
    flex-wrap: wrap;
    min-font-size: 1.15;
}

.agence {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    gap: 20px;
    flex: 1;
}

.agence p {
    font-size: 40px;
}

.agence img {
    width: 4.6em;
    height: 4.6em;
}

.contentAgence {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.agenceContentChild {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    border-left: 1px solid black;
}

.agenceContentChild p {
    font-size: 20px;
}

#logoAgence {
    width: 90px;
    height: 90px;
}

.reseauxSociaux{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.reseauxSociaux img {
    width: 40px;
    height: 35px;
    margin-right: 10px;
}

.navigation {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    margin-top: 20px;
    text-transform: uppercase;
}

.navigation ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 15px;
    width: 100%;
    max-width: 250px;
    padding: 0;
}

.navigation li {
    width: 100%;
}

.navigation a {
    display: block;
    width: 100%;
    padding: 8px 0;
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
}

.navigation a:hover {
    color: #d3c6c6;
}

.lienReseaux{
    color: white;
    text-decoration: none;
}

.lienReseaux:hover{
    color: #d3c6c6;
}

/* Responsive */

@media screen and (max-width: 767px) {
    .footer {
        justify-content: center;
        align-items: center;
        padding: 20px;
    }

    .agence {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .contentAgence {
        flex-direction: column;
    }

    .agenceContentChild {
        border-bottom: 1px solid black;
        border-left: none;
    }

    #logoAgence {
        display: none;
    }

    .navigation {
        width: 100%;
        justify-content: center;
        align-items: center;
        margin-top: 30px;
    }

    .navigation ul {
        align-items: center;
        max-width: none;
        width: 100%;
    }

    .navigation li {
        width: 100%;
        text-align: center;
    }

    .navigation a {
        padding: 12px 0;
    }

    .reseauxSociaux {
        justify-content: center;
    }
}

@media screen and (max-width: 1023px) {
    .footer {
        padding: 20px;
    }
}

@media screen and (max-width: 1439px) {
    .footer {
        padding: 20px;
    }
}
