/**
 * Footer Styles
 * Stili per il footer del sito
 */

.site-footer {
    background: var(--color-text);
    color: #fff;
    padding: 60px 20px 30px;
    text-align: center;
    margin-top: 0;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.footer-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 5px;
}

.footer-signature {
    font-family: var(--font-script), cursive;
    font-size: 4.5rem;
    font-style: normal;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: 0;
}

.footer-person-subtitle {
    font-family: var(--font-main);
    font-size: 1.4rem;
    text-transform: uppercase;
    color: var(--color-accent);
    letter-spacing: 0.08em;
    margin-top: 0;
    margin-bottom: 35px;
}

.footer-professional-order {
    margin-top: -25px;
    margin-bottom: 30px;
}

.footer-address {
    font-size: 1rem;
    margin-bottom: 8px;
}

.footer-address a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-address a:hover {
    color: var(--color-accent);
    -webkit-text-stroke: 0.5px var(--color-accent);
}

.footer-contacts {
    margin: 0 auto 20px;
    font-size: 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 640px;
    gap: 0;
}

.footer-contacts p {
    margin: 4px 0;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.footer-contacts a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contacts a:hover {
    color: var(--color-accent);
    -webkit-text-stroke: 0.5px var(--color-accent);
}

.footer-piva {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-copyright {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.footer-photo-credits {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.35);
    margin-top: 10px;
}
.footer-photo-credits a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
}
.footer-photo-credits a:hover {
    color: rgba(255,255,255,0.8);
}

/* Footer Social Links (se aggiunti in futuro) */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 480px) {
    .site-footer {
        padding: 40px 15px 20px;
        margin-top: 50px;
    }

    .footer-title {
        font-size: 1.5rem;
    }

    .footer-signature {
        font-size: 3.8rem;
    }

    .footer-contacts {
        font-size: 1rem;
    }
}
