/* ========================================
   FOOTER
   ======================================== */

.site-footer {
    background-color: #3D3D3D;
    color: var(--color-white);
    padding: 48px 0;
    margin-top: auto;
}

/* Footer Navigation */
.footer-navigation {
    margin-bottom: var(--spacing-lg);
}

.footer-menu {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.footer-menu li {
    display: block;
}

.footer-menu a {
    color: var(--color-white);
    font-size: 18px;
    font-weight: 400;
    transition: opacity 0.2s;
    line-height: 1.5;
}

.footer-menu a:hover {
    opacity: 0.7;
}

/* Copyright Section */
.site-info {
    text-align: center;
    padding-top: 0;
}

.copyright-text {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 400;
}

.rights-text {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-menu {
   flex-direction: column;
    align-items: flex-start;
}

 
    .footer-menu {
        gap: 24px;
    }

    .footer-menu a {
        font-size: 16px;
    }

    .copyright-text {
        font-size: 14px;
    }

    .rights-text {
        font-size: 12px;
    }
}
