/**
 * Footer Styles - Josetta Saffirio
 * Design minimalista identico all'immagine di riferimento
 * Version: 1.0.0
 */

/* ===== FOOTER STRUCTURE ===== */
.site-footer {
    background: var(--white);
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    position: relative;
}

/* Linea oro sottile in alto */
.footer-divider {
    width: 100%;
    height: 1px;
    background: #A39067;
    opacity: 0.6;
    margin: 0;
    padding: 0;
}

/* Container principale del footer */
.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 3rem;
}

/* ===== LOGO SECTION ===== */
.footer-logo {
    flex-shrink: 0;
}

.footer-logo-image {
    height: 40px;
    width: auto;
    display: block;
    filter: brightness(0.8) saturate(0.8);
}

/* ===== COMPANY INFO SECTION ===== */
.footer-company-info {
    flex: 1;
    max-width: 200px;
}

.company-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.company-address,
.company-location,
.company-country {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    color: #666666;
    margin: 0.2rem 0;
    line-height: 1.4;
}

/* ===== CONTACT INFO SECTION ===== */
.footer-contact-info {
    flex: 1;
    max-width: 220px;
}

.contact-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-email,
.contact-phone,
.contact-vat {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    color: #666666;
    margin: 0.2rem 0;
    line-height: 1.4;
}

/* ===== SOCIAL MEDIA SECTION ===== */
.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #A39067;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.social-icon:hover {
    background: var(--dark);
    transform: translateY(-2px);
}

.social-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: lowercase;
}

.social-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--white);
    fill: none;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .footer-container {
        padding: 2rem 3rem;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 2rem;
        gap: 1.5rem;
    }
    
    .footer-logo {
        align-self: center;
        margin-bottom: 1rem;
    }
    
    .footer-company-info,
    .footer-contact-info {
        max-width: none;
        width: 100%;
    }
    
    .footer-social {
        align-self: center;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 1.5rem 1rem;
        gap: 1rem;
    }
    
    .footer-logo-image {
        height: 35px;
    }
    
    .company-name,
    .contact-title {
        font-size: 0.85rem;
    }
    
    .company-address,
    .company-location,
    .company-country,
    .contact-email,
    .contact-phone,
    .contact-vat {
        font-size: 0.8rem;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
    }
    
    .social-icon svg {
        width: 14px;
        height: 14px;
    }
}

/* ===== ACCESSIBILITY ===== */
.social-icon:focus {
    outline: 2px solid #A39067;
    outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
    .site-footer {
        background: white !important;
        color: black !important;
    }
    
    .footer-divider {
        background: #ccc !important;
    }
    
    .social-icon {
        background: #ccc !important;
        color: black !important;
    }
} 