/* 🌍 Footer Global */
footer {
    background: #000000f4;
    color: #fff;
    padding: 40px 0 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* 📌 Conteneur principal */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    flex-wrap: wrap;
}

/* 🔹 Logo */
.footer-logo {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
}

.footer-logo .logo-icon {
    background: #f39d125b;
    color: #0a192f;
    font-weight: bold;
    padding: 6px 14px;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 1.2rem;
}

/* 📜 Liens du footer */
.footer-links {
    list-style: none;
    display: flex;
    gap: 25px;
    padding: 0;
    margin: 0;
}

.footer-links li {
    display: inline-block;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: #f39c12;
}

/* 🌟 Icônes sociales */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #fff;
    font-size: 1.4rem;
    transition: 0.3s ease;
}

.social-icons a:hover {
    color: #f39c12;
}

/* 🔻 Ligne de séparation */
.footer-separator {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 20px 0;
}

/* 🔽 Copyright */
.footer-bottom {
    font-size: 0.9rem;
    opacity: 0.8;
    text-align: center;
}

/* 📱 Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .footer-links {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .social-icons a {
        font-size: 1.2rem;
    }
}
