/* static/css/about.css */

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem;
    color: #e0e0e0;
}

/* --- HERO EDITORIALE ASIMMETRICO --- */
.about-editorial-hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Testo prende un po' più di spazio dell'immagine */
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.hero-text h1 {
    color: #ff007f;
    font-size: 3.5rem; /* Molto più grande e d'impatto */
    font-family: 'Playfair Display', serif; /* Usiamo il font elegante che hai nel base */
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.hero-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b0b0b0;
}

/* --- STILE IMMAGINE FOTOPROFILO --- */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.editorial-pic {
    width: 100%;
    height: auto;
    border-radius: 8px; /* Angoli morbidi ma non rotondi */
    position: relative;
    z-index: 2;
    filter: grayscale(20%) contrast(110%); /* Leggero filtro per renderla più "cinematografica" */
}

/* Il bordo neon sfalsato che crea l'effetto 3D */
.hero-image-wrapper::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid #ff007f;
    border-radius: 8px;
    z-index: 1;
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.2);
    transition: top 0.3s ease, left 0.3s ease;
}

.hero-image-wrapper:hover::after {
    top: 10px;
    left: 10px;
}

/* --- GRIGLIA CONTENUTI INFERIORI --- */
.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.about-section {
    background: rgba(20, 20, 20, 0.5);
    border-left: 3px solid #ff007f; /* Dettaglio laterale invece del bordo completo */
    padding: 2rem;
    border-radius: 0 8px 8px 0;
}

.about-section h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    font-family: 'Inter', sans-serif;
}

.about-section p {
    line-height: 1.8;
    color: #cccccc;
}

.about-section ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.about-section ul li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
    color: #cccccc;
}

.about-section ul li::before {
    content: '>';
    color: #ff007f;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* --- RESPONSIVE (SMARTPHONE) --- */
@media (max-width: 768px) {
    .about-editorial-hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-image-wrapper {
        order: -1; /* Mette la foto sopra il testo su mobile */
    }

    .about-content-grid {
        grid-template-columns: 1fr;
    }
}