/* ========================================
   FOOTER
   ======================================== */

.site-footer {
    width: 100%;
    color: #fff;
    margin-top: 3rem;
}

/* ========================================
   BANDE HAUTE
   ======================================== */

.footer-top {
    background-color: var(--bs-primary);
    padding: 3rem 0 2.5rem;
}

.footer-top .container-fluid,
.footer-bottom .container-fluid {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.footer-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
}

.footer-brand {
    max-width: 480px;
    flex: 0 0 480px;
}

.footer-right-columns {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 6rem;
    margin-left: auto;
    flex: 1 1 auto;
}

.footer-column {
    min-width: 180px;
}
/* ========================================
   TYPOGRAPHIE
   ======================================== */

.footer-site-title {
    margin: 0 0 0.5rem;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.1;
    color: #fff;
}

.footer-site-description {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.4;
    color: #fff;
    opacity: 0.95;
}

.footer-heading {
    margin: 0 0 1rem;
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
}

/* ========================================
   LIENS
   ======================================== */

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-bottom-links a {
    color: var(--bs-light);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover,
.footer-bottom-links a:hover {
    opacity: 0.8;
}

/* ========================================
   WIDGETS
   ======================================== */

.footer-widgets {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-widgets .widget {
    margin-bottom: 1rem;
}

.footer-widgets .widget-title {
    color: #fff;
}

/* ========================================
   BANDE BASSE
   ======================================== */

.footer-bottom {
    background-color: #e7ebef;
    padding: 1.25rem 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-copyright {
    margin: 0;
    font-size: 0.95rem;
    color: #000;
}

.footer-bottom-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.footer-bottom-links li {
    margin: 0;
}

/* ========================================
   RESPONSIVE - TABLETTE
   ======================================== */

@media (max-width: 992px) {
    .footer-top-inner {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-brand {
        max-width: 100%;
        flex: none;
    }

    .footer-right-columns {
        margin-left: 0;
        justify-content: flex-start;
        gap: 2.5rem;
        flex-wrap: wrap;
    }

    .footer-site-title {
        font-size: 2.2rem;
    }

    .footer-heading {
        font-size: 1.4rem;
    }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */

@media (max-width: 768px) {
    .site-footer {
        margin-top: 2rem;
    }

    .footer-top {
        padding: 2rem 0;
    }

    .footer-bottom {
        padding: 1rem 0;
    }

    .footer-top .container-fluid,
    .footer-bottom .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .footer-right-columns {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-column {
        min-width: 100%;
    }

    .footer-site-title {
        font-size: 1.8rem;
    }

    .footer-site-description {
        font-size: 1rem;
    }

    .footer-heading {
        font-size: 1.2rem;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.75rem;
    }
}