/* Styles pour le footer */
.site-footer {
    background-color: #2A3945;
    color: white;
    padding: 20px 0;
    margin-top: 50px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: #F9B233;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.separator {
    color: #F9B233;
    margin: 0 10px;
}

.site-footer p {
    margin: 0;
    font-size: 0.9rem;
}

.admin-link {
    color: #F9B233;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    font-size: 1rem;
    padding: 5px 10px;
}

.admin-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-links {
        justify-content: center;
        margin-right: 0;
    }
} 