.pied-de-page-principal {
    padding: 30px 40px;
    background-color: #121212;
    border-top: 1px solid #222222;
    color: #888888;
    font-family: 'Nohemi', Arial, sans-serif;
}

.contenu-pied-de-page {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.copyright-pied-de-page {
    font-size: 0.9em;
}

.liens-sociaux-pied-de-page {
    display: flex;
    align-items: center;
    gap: 20px;
}

.liens-sociaux-pied-de-page a {
    color: #888888;
    transition: color 0.3s ease, transform 0.3s ease;
}

.liens-sociaux-pied-de-page a:hover {
    color: #bb86fc;
    transform: translateY(-3px);
}

.liens-sociaux-pied-de-page svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .contenu-pied-de-page {
        flex-direction: column-reverse;
        justify-content: center;
        text-align: center;
    }
}