/* Page Hero */
.page-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    background-image: url('../images/hero-chi-siamo.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 0 2rem;
}

.page-hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.page-hero-content p {
    font-size: 1.5rem;
    font-weight: 300;
    color: #ffffff;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* Storia Section */
.storia {
    padding: 6rem 0;
    background-color: #ffffff;
}

.storia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.storia-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.storia-image img {
    width: 100%;
    height: auto;
    display: block;
}

.storia-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--color-secondary);
}

.storia-text p {
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.storia-text strong {
    color: var(--color-primary);
    font-weight: 600;
}

/* Valori Section */
.valori {
    padding: 6rem 0;
    background-color: #f8f8f8;
}

.valori-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.valore-card {
    background-color: #ffffff;
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.valore-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.valore-icon {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.valore-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.valore-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Mission Section */
.mission {
    padding: 6rem 0;
    background-color: #ffffff;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--color-secondary);
}

.mission-lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.mission-content p {
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Team Section */
.team {
    padding: 6rem 0;
    background-color: #f8f8f8;
}

.team-content {
    max-width: 900px;
    margin: 2rem auto 0;
}

.team-content p {
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: center;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, #c19b2e 100%);
    padding: 5rem 0;
    text-align: center;
}

.cta-content h2 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-content .btn-primary {
    background-color: #ffffff;
    color: var(--color-primary);
}

.cta-content .btn-primary:hover {
    background-color: var(--color-secondary);
    color: #ffffff;
}

/* Responsive - Tablet */
@media screen and (max-width: 1024px) {
    .valori-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .storia-grid {
        gap: 3rem;
    }
}

/* Responsive - Mobile */
@media screen and (max-width: 768px) {
    .page-hero {
        height: 50vh;
        background-attachment: scroll;
    }
    
    .page-hero-content h1 {
        font-size: 3rem;
    }
    
    .page-hero-content p {
        font-size: 1.2rem;
    }
    
    .storia {
        padding: 4rem 0;
    }
    
    .storia-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .storia-text h2 {
        font-size: 2.5rem;
    }
    
    .valori {
        padding: 4rem 0;
    }
    
    .valori-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission {
        padding: 4rem 0;
    }
    
    .mission-content h2 {
        font-size: 2.5rem;
    }
    
    .mission-lead {
        font-size: 1.1rem;
    }
    
    .team {
        padding: 4rem 0;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 480px) {
    .page-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .page-hero-content p {
        font-size: 1rem;
    }
    
    .storia-text h2,
    .mission-content h2 {
        font-size: 2rem;
    }
    
    .valore-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
}

