/* Footer Styles */

.footer {
    color: var(--base-color-brand--secondary);
    padding: 2rem 5%;
    font-family: var(--font-family--body);
    position: relative;
    background-color: var(--background-color--primary); /* Sfondo coerente */
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 80rem;
    margin: 0 auto;
    flex-wrap: wrap; /* Per la responsività */
}

.footer-column {
    display: flex;
    align-items: center;
}

.footer-contact .footer-link {
    color: var(--base-color-brand--secondary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.footer-contact .footer-link:hover {
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 1.5rem; /* Spazio tra le icone */
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* Spazio tra icona e testo */
    color: var(--base-color-brand--secondary);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.social-link:hover {
    opacity: 0.8;
}

/* Studio Innovativo mention styles */
.footer-copyright {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-divider {
    color: #f1742b !important; /* Stesso colore arancione per coerenza */
    opacity: 0.6 !important; /* Più visibile */
    font-weight: 400 !important;
    font-size: 1.2rem !important; /* Leggermente più grande */
}

.footer-studio {
    font-size: 1rem !important; /* Aumentato da 0.9rem */
    color: var(--text-color--text-primary) !important;
    opacity: 1 !important; /* Aumentato da 0.8 per maggiore visibilità */
    font-weight: 600 !important; /* Più prominente */
}

.studio-link {
    color: #f1742b !important; /* Arancione GenIApp */
    text-decoration: none !important;
    font-weight: 700 !important; /* Molto più prominente */
    font-size: 1.1rem !important; /* Leggermente più grande */
    transition: all 0.2s ease !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important; /* Leggera ombra per risaltare */
    letter-spacing: 0.5px !important; /* Migliore leggibilità */
}

.studio-link:hover {
    color: #d85a1b !important; /* Arancione più scuro on hover */
    text-decoration: underline !important;
    transform: translateY(-1px) !important; /* Leggero effetto hover */
    text-shadow: 0 2px 4px rgba(241, 116, 43, 0.3) !important; /* Ombra colorata */
}

.linkedin-icon {
    width: 24px;
    height: 24px;
}

.footer-copyright {
    font-size: 0.95rem !important; /* Leggermente aumentato */
    opacity: 0.9 !important; /* Più visibile */
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-weight: 500 !important; /* Leggermente più bold */
}

/* Responsive styles */
@media screen and (max-width: 767px) {
    .footer-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-column {
        justify-content: center;
    }
    
    /* Studio Innovativo ancora più prominente su mobile */
    .footer-studio {
        font-size: 1.1rem !important;
        margin-top: 0.5rem !important;
    }
    
    .studio-link {
        font-size: 1.2rem !important;
        font-weight: 800 !important;
    }
    
    .footer-copyright {
        font-size: 1rem !important;
    }
}