/* =============================================
   Theme: Refactored Footer
   ============================================= */

.footer-refactored {
    background-color: #1a202c; /* Fond sombre et moderne */
    color: #cbd5e0;
    padding: 30px 0 20px;
    position: relative;
}

.footer-refactored::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary, linear-gradient(90deg, #ff8a00, #e52e71));
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 25px;
}

.footer-about .footer-logo {
    display: block;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.footer-about p {
    line-height: 1.5;
    max-width: 280px;
    font-size: 0.85rem;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-primary-start, #ff8a00);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--color-primary-start, #ff8a00);
    width: 20px;
    text-align: center;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
    background-color: var(--color-primary-start, #ff8a00);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    text-align: center;
    font-size: 0.8rem;
}

.footer-bottom a {
    color: var(--color-primary-start, #ff8a00);
    text-decoration: none;
    font-weight: 600;
}
