/* ========================================
   FOOTER GLOBALE - MenuEventi
======================================== */

.footer-modern {
    background: linear-gradient(135deg, #15536c 0%, #1a1a1a 100%);
    color: #e5e7eb;
}

.footer-top {
    padding: 5rem 0 3rem;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    height: 100px;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-size: 1rem;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: linear-gradient(135deg, #2596be 0%, #04c1de 100%);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 150, 190, 0.3);
    color: white;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #2596be 0%, #04c1de 100%);
    border-radius: 5px;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #2596be;
}

.footer-links a:hover {
    color: #2596be;
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

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

.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}

.footer-contact i {
    color: #2596be;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.footer-contact a {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: #2596be;
}

.footer-contact span {
    display: block;
    color: #6b7280;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-content p {
    margin: 0;
    color: #9ca3af;
    font-size: 0.95rem;
}

.footer-piva {
    color: #6b7280;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #2596be;
}

/* Responsive */
@media (max-width: 991px) {
    .footer-top {
        padding: 4rem 0 2rem;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links,
    .footer-contact {
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .footer-top {
        padding: 3rem 0 1.5rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.75rem;
    }
}