
.footer {
    background-color: #303030;
    color: white;
    padding: 40px 0;
    padding-bottom: 0;
    width: 100%;
    box-sizing: border-box;
    position: absolute;

    position: relative;
    bottom: 0;
}

footer {

    z-index: 500;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    margin: 0 15px;
    min-width: 200px;
}

.footer-column h3 {
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #FFD700;
}

.footer-logo {
    width: 150px;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a img {
    width: 30px;
    height: 30px;
    filter: invert(1); /* Inverse les couleurs pour du blanc sur fond sombre */
    transition: transform 0.3s ease;
}

.social-icons a img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding: 15px 0;
    background-color: #1a1a1a;
    font-size: 14px;
    margin-top: 30px;
}

.footer-bottom p {
    margin: 0;
    color: #ccc;
}
