/* ===========================
   NAV — CHI SIAMO
=========================== */
.logo-nav--visible {
    opacity: 1 !important;
}

.nav-active {
    color: #ffffff !important;
}


/* ===========================
   ABOUT PAGE
=========================== */
.about-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 160px 40px 0;
}

.about-page-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 720px;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.2s;
}


/* ===========================
   IMAGE
=========================== */
.about-page-image {
    width: 480px;
    margin-bottom: 40px;
}

.about-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
}


/* ===========================
   BIO
=========================== */
.about-page-bio {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    max-width: 100%;
}


/* ===========================
   CONTACTS
=========================== */
.about-page-contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 50px 0 30px;
    width: 100%;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.5s;
}

.about-contact-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-contact-btn {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.about-contact-btn:hover {
    color: #ffffff;
}

.about-contact-plain {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}


/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 768px) {
    .about-page {
        padding: 220px 30px 0;
    }

    .about-page-image {
        width: 280px;
        margin-bottom: 50px;
    }

    .about-page-bio {
        font-size: 10px;
    }

    .about-contact-row {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .about-contact-btn {
        font-size: 13px;
    }

    .about-page-contacts {
        padding: 40px 0 50px;
    }
}