/* ===== SEZIONE CHI SONO - HSElevate ===== */

/* ===== LAYOUT PRINCIPALE ===== */
.about-section {
    padding: 1rem 2rem;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-main {
    position: relative;
}

/* ===== HEADER SEZIONE ===== */
.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #327fa8 0%, #4a9bc7 70%, #F2A93B 95%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    filter: drop-shadow(0 2px 4px rgba(50, 127, 168, 0.3));
}

.about-subtitle {
    font-size: 1.2rem;
    color: white;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== LAYOUT GRID ===== */
.about-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== SEZIONE IMMAGINE ===== */
.about-image {
    position: relative;
}

.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(50, 127, 168, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.about-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

/* ===== OVERLAY CREDENZIALI ===== */
.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(0, 0, 0, 0.7) 60%, 
        transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.about-image-container:hover .about-image-overlay {
    transform: translateY(0);
}

.about-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.credential-item i {
    color: #F2A93B;
    font-size: 1.1rem;
    width: 20px;
}

/* ===== SEZIONE CONTENUTO TESTUALE ===== */
.about-content {
    position: relative;
}

.about-text {
    color: rgba(255, 255, 255, 0.9);
}

.about-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: #F2A93B;
    font-weight: 700;
}

.about-intro {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* ===== SEZIONE MISSIONE ===== */
.about-mission {
    /* Glassmorphism coerente con le altre sezioni */
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(50, 127, 168, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(16px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
  
}

.mission-title {
    color: #327fa8;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mission-highlight {
    color: #F2A93B;
    font-weight: 700;
    background: linear-gradient(135deg, 
        rgba(242, 169, 59, 0.15) 0%, 
        rgba(242, 169, 59, 0.05) 100%);
    padding: 0.2em 0.4em;
    border-radius: 4px;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet Large */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 350px 1fr;
        gap: 3rem;
    }
    
    .about-intro {
        font-size: 1.2rem;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .about-section {
        padding: 2rem 1rem;
    }
    
    .about-header {
        margin-bottom: 3rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-image {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .about-intro {
        font-size: 1.1rem;
    }
    
    .about-mission {
        padding: 1.5rem;
        text-align: left;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .about-image {
        max-width: 250px;
    }
    
    .about-intro {
        font-size: 1rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .about-mission {
        padding: 1rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
}

/* ===== ANIMAZIONI ===== */
.about-image-container,
.about-content > * {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.about-image-container {
    animation-delay: 0.2s;
}

.about-intro { 
    animation-delay: 0.4s; 
}

.about-description { 
    animation-delay: 0.6s; 
}

.about-mission { 
    animation-delay: 0.8s; 
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}