/* ===========================
   FOOTER
   =========================== */
.site-footer {
    width: 100%;
    height: var(--footer-height);
    background: url('ImagesSources/Fond_Footer2.png') no-repeat center center/cover;
    color: #333;
    font-size: 0.9rem;
    font-family: var(--font-family-main);
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000;

    /* Alignement du contenu en bas */
    display: flex;
    align-items: flex-end; /* texte en bas */
    padding: 5px 15px; /* espace interne */
}

.footer-content {
    width: 100%;
    text-align: left;
}

.site-footer a {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
    margin: 0 8px;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* ===== Responsive Footer ===== */
@media (max-width: 768px) {
    .site-footer {
        height: calc(var(--footer-height) * 1.5); /* plus haut sur mobile */
        background-position: center top; /* remonte l'image */
        background-size: cover;
        font-size: 0.85rem;
        padding: 5px 10px;
    }
}
