/* ==================== FOOTER ==================== */
footer {
    border-radius: 20px 20px 0 0;
    background: linear-gradient(136deg, #060B21 22.02%, #C98D8A 177.47%);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.title_low {
    position: absolute;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 43.83%, rgba(0, 0, 0, 0.04) 67.83%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    font-weight: 900;
    font-size: 15vw;
    right: -70px;
    bottom: -20px;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

/* ===== First Section ===== */
.first_section_footer {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: auto;
    z-index: 100;
}

.foot_first1_col1 {
    flex: 0 0 auto;
}

.foot_first1_col1 .logo_footer {
    width: 100px;
}

.foot_first1_col1 p.baseline {
    color: #fff;
    width: 300px;
}

/* ===== Réseaux Sociaux ===== */
.social-networks {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.social-item:hover {
    opacity: 0.8;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}

.social-icon svg {
    width: 100%;
    height: 100%;
    fill: white;
}

.social-title {
    color: white;
    font-size: 16px;
    font-weight: 500;
}

/* ===== Footer Navigation ===== */
.foot_first1_col2 {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    max-width: 30%;
}

.footer-navigation {
    width: 100%;
    max-width: 800px;
}

#footer_bottom_v3,
.footer-menu {
    display: flex;
    gap: 30px;
    width: 350px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Items de premier niveau (titres) */
#footer_bottom_v3 > li,
.footer-menu > li {
    flex: 1;
    min-width: 150px;
}

#footer_bottom_v3 > li > a,
.footer-menu > li > a {
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    display: block;
    margin-bottom: 25px;
}

#footer_bottom_v3 > li > a:hover,
.footer-menu > li > a:hover {
    opacity: 0.8;
}

/* Liens de premier niveau désactivés (titres non cliquables) */
#footer_bottom_v3 > li > a.footer-top-level-link,
.footer-menu > li > a.footer-top-level-link {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}

#footer_bottom_v3 > li > a.footer-top-level-link:hover,
.footer-menu > li > a.footer-top-level-link:hover {
    opacity: 1;
}

/* Sous-menus */
#footer_bottom_v3 .sub-menu,
.footer-menu .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#footer_bottom_v3 .sub-menu li a,
.footer-menu .sub-menu li a {
    color: rgba(255, 255, 255, 0.40);
    font-weight: normal;
    font-size: 14px;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

#footer_bottom_v3 .sub-menu li a:hover,
.footer-menu .sub-menu li a:hover {
    color: #fff;
}

/* ===== Second Section ===== */
.second_section_footer {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #fff;
    margin: auto;
    margin-top: 40px;
    padding-top: 30px;
    font-size: 14px;
    max-width: 1200px;
    z-index: 100;
}

.second_section_footer .site-info {
    color: rgba(255, 255, 255, 0.40);
}

.second_section_footer a {
    color: #fff;
    text-decoration: none;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    footer {
        padding: 40px 20px;
    }

    .first_section_footer {
        flex-direction: column;
        gap: 40px;
    }

    .foot_first1_col2 {
        justify-content: flex-start;
        max-width: 100%;
    }

    #footer_bottom_v3,
    .footer-menu {
        flex-direction: column;
        gap: 30px;
        width: auto;
    }

    .second_section_footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
