/* Stili specifici per la pagina Chi Siamo */

/* Hero con immagine di sfondo */
.chisiamo-page .hero-image {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../../img/staff/mash_1.png') center center/cover no-repeat !important;
    background-attachment: fixed;
}

/* Sposta l'immagine di sfondo verso destra su mobile */
@media (max-width: 768px) {
    .chisiamo-page .hero-image {
        background-position: 50% center !important;
    }
}

@media (max-width: 480px) {
    .chisiamo-page .hero-image {
        background-position: 45% center !important;
    }
}

@media (max-width: 360px) {
    .chisiamo-page .hero-image {
        background-position: 45% center !important;
    }
}

.hero-overlay {
    display: none;
}


/* Sezione Chi Siamo */
.chi-siamo {
    background: #000;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.chi-siamo .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.chi-siamo h1 {
    font-family: 'Gill Sans Light', 'Gill Sans Nova', sans-serif;
    font-size: 3rem;
    font-weight: 300;
    color: #FFD700;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.chi-siamo p {
    font-family: 'Gill Sans Light', 'Gill Sans Nova', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #fff;
    text-align: justify;
}

.chi-siamo p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .chi-siamo {
        padding: 60px 0;
    }
    
    .chi-siamo .container {
        padding: 0 15px;
    }
    
    .chi-siamo h1 {
        font-size: 2.2rem;
        margin-bottom: 30px;
        letter-spacing: 2px;
    }
    
    .chi-siamo p {
        font-size: 1.1rem;
        line-height: 1.6;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .chi-siamo {
        padding: 40px 0;
    }
    
    .chi-siamo h1 {
        font-size: 1.8rem;
        margin-bottom: 25px;
        letter-spacing: 1px;
    }
    
    .chi-siamo p {
        font-size: 1rem;
        line-height: 1.5;
    }
}

/* Stili specifici per eventi club */
.club-event .chi-siamo h1 {
    color: #8A2BE2;
}

/* Animazioni */
.chi-siamo h1 {
    animation: fadeInUp 1s ease-out;
}

.chi-siamo p {
    animation: fadeInUp 1s ease-out;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

.chi-siamo p:nth-child(2) {
    animation-delay: 0.5s;
}

.chi-siamo p:nth-child(3) {
    animation-delay: 0.7s;
}

.chi-siamo p:nth-child(4) {
    animation-delay: 0.9s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
