@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

/* Footer global */
.site-footer {
    background-color: #2a2a2a;
    color: #fff;
    padding: 2rem 1rem;
    font-family: 'Inter', sans-serif;
    text-align: center;
    position: relative;
}

/* Ligne jaune en haut du footer */
.footer-underline {
    height: 3px;
    background-color: #f3c306;
    margin: 0 auto 1rem auto;
    width: 100%;
    border-radius: 30px;
}

/* Conteneur principal */
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Texte principal centré */
.footer-main {
    text-align: center;
}

/* Section du bas */
.footer-bottom {
    max-width: 1200px;
    margin: 1rem auto 0;
    text-align: right;
}

/* Lien "Administration" */
.footer-bottom a {
    color: #fff;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-bottom {
        text-align: center;
    }
}
