/* ===== ABOUT ME ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #fbfbfb;
    color: #000;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* Logo fisso -> home */
.site-logo {
    position: fixed;
    top: 22px;
    left: 30px;
    z-index: 9000;
    display: block;
    width: 70px;
    line-height: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.site-logo img { width: 100%; height: auto; display: block; }
.site-logo:hover { transform: scale(1.08); opacity: 0.7; }

.back-link {
    position: fixed;
    top: 28px;
    right: 30px;
    z-index: 9000;
    text-decoration: none;
    color: #000;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid #000;
    padding-bottom: 2px;
}
.back-link:hover { opacity: 0.6; }

.about-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 140px 40px 80px;
}

/* Intestazione */
.about-hero h1 {
    font-size: 46px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
}
.about-hero .role {
    display: inline-block;
    margin-top: 10px;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #555;
}
.about-hero .meta {
    margin-top: 6px;
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile {
    margin-top: 35px;
    font-size: 17px;
    line-height: 1.8;
    max-width: 720px;
}

.btn-cv {
    display: inline-block;
    margin-top: 30px;
    text-decoration: none;
    color: #fff;
    background: #000;
    padding: 14px 28px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: opacity 0.25s ease;
}
.btn-cv:hover { opacity: 0.7; }

/* Sezioni */
.section {
    margin-top: 60px;
    border-top: 1px solid #000;
    padding-top: 30px;
}
.section h2 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 22px;
}

/* Griglia skills */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.skills-grid h3 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 10px;
}
.skills-grid ul { list-style: none; }
.skills-grid li {
    font-size: 14px;
    padding: 4px 0;
    border-bottom: 1px dotted #ddd;
}

/* Timeline */
.timeline .row {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px dotted #ddd;
}
.timeline .year {
    font-size: 12px;
    color: #888;
    letter-spacing: 1px;
}
.timeline .what strong { display: block; font-size: 15px; }
.timeline .what span { font-size: 13px; color: #555; }

/* Contatti */
.contacts a {
    display: inline-block;
    margin-right: 24px;
    color: #000;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px solid #000;
    padding-bottom: 2px;
    margin-bottom: 10px;
}
.contacts a:hover { opacity: 0.6; }

@media (max-width: 720px) {
    .about-wrap { padding: 120px 22px 60px; }
    .about-hero h1 { font-size: 32px; }
    .skills-grid { grid-template-columns: 1fr; }
    .timeline .row { grid-template-columns: 90px 1fr; }
    .back-link { right: 18px; }
}
