/* ========================================
   FOOTER.CSS - Footer Layout e Styling
   ======================================== */

/* FOOTER SITO WEB */
.main-footer {
    background-color: #f8f9fb;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 60px;
    position: relative;
}

.footer-divider {
    height: 4px;
    background: linear-gradient(to right, #007bff, #00c6ff);
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-block {
    flex: 1 1 250px;
    margin: 10px;
}

.footer-logo {
    max-width: 160px;
    margin-bottom: 15px;
}

.footer-block h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #007bff;
}

.footer-block a {
    display: block;
    color: #333;
    text-decoration: none;
    margin-bottom: 5px;
    transition: color 0.2s ease;
}

.footer-block a:hover {
    color: #007bff;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #007bff;
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: #0056b3;
}

.footer-bottom {
    background-color: #343a40;
    color: #fff;
    text-align: center;
    padding: 15px 10px;
    font-size: 13px;
}

.footer-bottom .credits {
    display: block;
    margin-top: 5px;
    font-size: 12px;
}

.footer-bottom .credits a {
    color: #00c6ff;
    text-decoration: none;
}

.footer-bottom .credits a:hover {
    text-decoration: underline;
}

