/* ==========================================================================
   Composant : Footer — Le Magicien 80
   ========================================================================== */

/* ---- Footer custom ---- */
.lm80-footer {
    background: var(--lm80-bg-dark, #111827);
    color: #ffffff;
    padding: 64px 0 32px;
    font-family: var(--lm80-font-body);
}

.lm80-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Grid 4 colonnes ---- */
.lm80-footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

@media (min-width: 640px) {
    .lm80-footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .lm80-footer-content {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

/* ---- Col Brand ---- */
.lm80-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 16px;
}

.lm80-footer-logo img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 8px;
}

.lm80-footer-logo span {
    font-family: var(--lm80-font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: #ffffff;
}

.lm80-footer-description {
    color: #a3a3a3;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ---- Social ---- */
.lm80-footer-social {
    display: flex;
    gap: 16px;
}

.lm80-footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: #a3a3a3;
    transition: all 0.3s ease;
}

.lm80-footer-social-link:hover {
    background: rgba(162, 78, 174, 0.2);
    color: var(--lm80-primary);
    transform: translateY(-2px);
}

/* ---- Titres colonnes ---- */
.lm80-footer-title {
    font-family: var(--lm80-font-body);
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

/* ---- Liens ---- */
.lm80-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.lm80-footer-links a {
    color: #a3a3a3;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.lm80-footer-links a:hover {
    color: #ffffff;
}

/* ---- Contact ---- */
.lm80-footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lm80-footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.lm80-footer-contact svg {
    color: var(--lm80-primary);
    flex-shrink: 0;
}

.lm80-footer-contact a,
.lm80-footer-contact span {
    color: #a3a3a3;
    text-decoration: none;
    transition: color 0.2s ease;
}

.lm80-footer-contact a:hover {
    color: #ffffff;
}

/* ---- Bottom bar ---- */
.lm80-footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: #6b7280;
}

@media (min-width: 640px) {
    .lm80-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.lm80-footer-bottom p {
    margin: 0;
}

.lm80-footer-legal {
    display: flex;
    gap: 24px;
}

.lm80-footer-legal a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
}

.lm80-footer-legal a:hover {
    color: #ffffff;
}
