/* --------------------- */
/* --- Pied de page --- */
/* ------------------- */

footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 10px;
	background-color:#7F1525;;
}



/* Colonne de gauche */
.site-pied-de-page {
    flex: 1 1 33%;
	flex-direction: column;
	margin-top: auto;
	margin-bottom: auto;
}


.site-pied-de-page span {
	font-family: "Stalinist One", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.5rem;
	letter-spacing: -2px;
	color: #F5DDD2;
	margin-left: 40px;
}

.site-pied-de-page p {
	font-family: "Verdana", sans-serif;
	color: #F5DDD2;
	margin: 0 40px;
}

/* Colonne du milieu */
.liens-pied-de-page {
    flex: 1 1 33%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
	margin-top: auto;
	margin-bottom: auto;
}

.liens-pdp {
    flex: 1 1 50%;
	display: flex;
	flex-direction: column;
    text-align: center;
}

.liens-pied-de-page a {
	color: #f5ddd286;
	font-family: Verdana;
	padding: 5px 0;
}



/* Colonne de droite */
.reseaux-pied-de-page {
    flex: 1 1 33%;
    text-align: center;
}

.reseaux-pied-de-page p {
	color: #F5DDD2;
	font-family: "Audiowide", sans-serif;
	padding: 20px 0;
}

.icones-social img {
    width: 30px;
    margin: 0 5px 20px 5px;
}

.reseaux-illustrateurs {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.reseaux-illustrateurs p {
	color: #F5DDD2;
	font-family: Verdana;
	padding: 10px;
	text-decoration: none;
}

.reseaux-illustrateurs img {
	width: 20px;
	height: 20px;
}



/* Gestion petits écrans */
@media (max-width: 768px) {
    footer {
        flex-direction: column;
        align-items: center;
    }

    .liens-pdp {
        flex: 1 1 100%;
        text-align: center;
    }
}