
.footer {
    background: #e7e7e7;
    border-top: 1px solid #d0d0d0;
    padding: 50px 20px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 0.5px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    align-items: start;
}

/* COLONNES UNIFORMES */
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px; /* GAP IDENTIQUE PARTOUT */
}

/* LISTES UNIFORMES */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin: 0;
    padding: 0;
}

/* LIENS */
.footer-col a {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.6;
	transition: color 0.25s ease;
}

.footer-col a:hover {
   	color: #398717;
	text-decoration: underline;
	text-underline-offset: 6px;      /* plus bas */
    text-decoration-thickness: 2px;
	text-decoration-color: #398717;
}

/* ICÔNES */
.footer-social {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.footer-social svg {
    width: 26px;
    height: 26px;
    fill: #333;
    transition: 0.3s;
}

.footer-social svg:hover {
    fill: #398717;;
}

/* CONTACT À DROITE */
.footer-links {
    text-align: right;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-links {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
	.footer-col a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.8;
	transition: color 0.25s ease;
}
}


.footer-copy {
    margin-top: 40px;
    text-align: center;
    font-size: 0.8rem;
    color: #555;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

