/*
    ========================================
    FOOTER-SIMPLE.CSS
    Auteur                : Renaud
    Création              : 12 décembre 2025
    ========================================
*/
/**
*   @project   DEVENIR-ARTISAN.NET
*   Styles pour le Header et Footer simplifiés ("Distraction Free").
*   Utilisé sur : Checkout, Contact, CGV, Mentions Légales.
*
*   @file  css/footer-simple.css
*/

/* --- FOOTER SIMPLE --- */
.footer-simple {
    margin-top: auto; /* Pousse le footer en bas si la page est courte */
    padding: 3rem 0;
    border-top: 1px solid var(--color-separator);
    background-color: var(--color-grey-230); /* Un peu différent du fond body pour marquer la fin */
}

.footer-simple__content {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-simple__nav {
    margin-top: 1rem;
}

.footer-simple__link {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s;
    margin: 0 0.5rem;
}

.footer-simple__link:hover {
    color: var(--color-blue-060);
    text-decoration: underline;
}