/* ================================
   FOOTER
================================ */

.site-footer {
    background: #e9e9e9;
    border-top: 1px solid #e5e5e5;

    margin-left: 250px;
    width: calc(100% - 250px);

    padding: 40px 0;
    box-sizing: border-box;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* logo */
.footer-logo img {
    max-width: 140px;
}

/* centro */
.footer-info {
    text-align: center;
    color: #716551;
}

/* destra (links + social) */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: right;
}

.footer-links a {
    color: #716551;
    font-size: 0.95rem;
    text-decoration: none;
}

/* ================================
   SOCIAL ICONS
================================ */

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 10px;
    justify-content: flex-end;
}

.footer-social a {
    color: #716551;
    font-size: 18px;
    transition: opacity 0.2s ease;
}

.footer-social a:hover {
    opacity: 0.7;
}

/* ================================
   MOBILE
================================ */

@media (max-width: 900px) {

    .site-footer {
        margin-left: 0;
        width: 100%;
    }

    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        text-align: center;
        align-items: center;
    }

    .footer-social {
        justify-content: center;
        margin-top: 6px;
    }
}
