/* le footer */
.footer{
    margin-top: 40px;
    padding: 40px 5%; 
    background-color: #000; 
    color: #fff; 
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content-wrapper {
    display: flex;
    justify-content: space-around; /* Distribute items evenly */
    width: 100%;
    max-width: 1200px; /* Match main content width */
    padding: 20px 0;
    align-items: flex-start;
    flex-wrap: wrap; /* Allow columns to wrap on smaller screens */
}

.footer-column {
    flex: 1; /* Allow columns to grow and shrink */
    min-width: 280px; /* Minimum width for columns before wrapping */
    padding: 0 20px;
    box-sizing: border-box;
}

.logo-footer img {
    height: 190px;
    width: auto;
    object-fit: contain;
    display: block;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    color: #fff; /* White social icons */
    font-size: 1.2em;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ff6600; /* Orange on hover */
}

.footer-column h4 {
    color: #fff; /* White color for all column titles */
    font-size: 1.2em;
    margin-bottom: 15px;
    font-weight: bold;
}

.footer-column p, .footer-column p a  {
    color: #ccc; /* Lighter white for body text */
    font-size: 0.95em;
    margin-bottom: 8px;
    line-height: 1.4;
}

.footer-column p i {
    margin-right: 10px;
    color: #ff6b35d0; /* Orange icons */
}

.footer-bottom {
    width: 100%;
    max-width: 1200px; /* Match main content width */
    border-top: 1px solid #333; /* Separator line */
    padding-top: 20px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom .copyright {
    color: #ccc;
    font-size: 0.85em;
    margin-bottom: 10px; /* Space when wrapped */
    text-align: left;
}

.footer-links-bottom {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-links-bottom a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.85em;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: #ff6600;
}

@media (max-width: 768px) {
    .logo-footer img {
    height: 90px;
}
    .footer-content-wrapper {
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }

    .footer-column {
        min-width: unset;
        width: 90%;
        text-align: center;
        margin-bottom: 30px;
        padding: 0;
    }

    .footer-column:last-child {
        margin-bottom: 0;
    }

    .footer-brand h4,
    .footer-column h4 {
        text-align: left;
        font-size: 1em;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-column p {
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
.footer-bottom .copyright {
    text-align: center;
}
    .footer-links-bottom {
        justify-content: center;
        margin-top: 15px;
    }
}
