/* Footer - Stile moderno e responsive con Bootstrap 5 */
footer {
    background: var(--color-primary);
    color: var(--text-white);
    padding: 60px 0 30px;
    margin-top: 0;
    overflow-x: hidden;
}

footer .container {
    max-width: 1200px;
}

.footer-container {
    margin-bottom: 40px;
    padding-bottom: 30px;
}

.footer-section {
    margin-bottom: 30px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

.footer-section h3,
.footer-section h4 {
    color: var(--text-white);
    margin-bottom: 20px;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.footer-section h3 {
    font-size: 1.5rem;
}

.footer-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--text-white);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-bottom p {
    margin: 0;
}

/* Responsive adjustments - mantiene le 3 colonne su mobile ma riduce font e spaziature */
@media (max-width: 767px) {
    footer {
        padding: 40px 0 20px;
    }

    .footer-container {
        margin-bottom: 25px;
        padding-bottom: 20px;
    }

    .footer-section {
        margin-bottom: 20px;
        padding: 0 5px;
    }

    .footer-section h3 {
        font-size: 1rem;
    }

    .footer-section h4 {
        font-size: 0.9rem;
    }

    .footer-section p {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .footer-section ul li {
        margin-bottom: 8px;
    }

    .footer-section a {
        font-size: 0.75rem;
    }

    .footer-section a:hover {
        transform: none;
    }

    .footer-bottom {
        font-size: 0.75rem;
        padding-top: 15px;
    }
}
