/* 
* Footer Styles per Studio Innovativo
* Created: 2025-05-11
* Updated: 2025-05-11 - Layout moderno con logo rotante
*/

.footer {
    background-color: #000000;
    color: #f5f5f5;
    padding: 80px 0 20px;
    font-family: 'Poppins', sans-serif;
}

.footer h5 {
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #f5f5f5;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-contact-icon {
    background-color: rgba(255,255,255,0.1);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
}

.footer-contact-info a {
    color: #f5f5f5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: #ffffff;
}

.footer-contact-label {
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 2px;
}

.footer-divider {
    height: 1px;
    background-color: #0000BB;
    opacity: 0.3;
    margin: 40px 0 30px;
}

.rotating-logo {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: #0000BB;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 187, 0.3);
    animation: logoRotate 20s linear infinite;
}

.footer-piva {
    text-align: center;
    color: #6c757d;
    font-size: 0.85rem;
    margin-top: 15px;
}

/* Animazione per il logo rotante */
@keyframes logoRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive styles */
@media (max-width: 991px) {
    .rotating-logo {
        margin: 30px auto 0;
    }
}
