/* ═══════════════════════════════════════════════════════
   ABOUT PAGE STYLES
═══════════════════════════════════════════════════════ */

/* ─── Full-page wrapper: push content to bottom ─── */
.about-page {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100vh;
    padding-top: 80px;
    padding-bottom: 0;
}

/* ─── Keywords Row ─── */
.about-keywords {
    display: flex;
    justify-content: space-between;
    padding: 0 31px;
    margin-bottom: 16px;
}

.about-keywords span {
    font-family: 'artifakt-light', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-color);
}

/* ─── Layout ─── */
.about-layout {
    display: grid;
    grid-template-columns: 50% 1fr;
    padding: 0 var(--grid-margin) 30px 30px;
    gap: 60px;
    align-items: end;
}

/* ─── Left Column: Photo ─── */
.about-visual {
    position: relative;
}

.about-visual img {
    width: 100%;
    height: auto;
    display: block;
}

/* ─── Right Column: Content ─── */
/* Adjust these two values to position the text:
   - padding-left  → moves text right (increase) or left (decrease)
   - margin-bottom → moves text up (increase) or down (decrease)  */
.about-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    max-width: 440px;
    margin-left: 180px;
    margin-bottom: 100px;
}

.about-bio {
    font-family: 'artifakt-light', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-color);
    margin-bottom: 32px;
}

.about-cv-link {
    display: inline-block;
    align-self: flex-start;
    font-family: 'artifakt-light', sans-serif;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.04em;
    text-decoration: none;
    color: var(--text-color);
    text-transform: none;
    margin-bottom: 48px;
    position: relative;
}

.about-cv-link::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1px;
    background: var(--text-color);
    transition: width 0.35s cubic-bezier(0.16,1,0.3,1);
}

.about-cv-link:hover::after {
    width: 100%;
}

/* ─── Contact Section ─── */
.about-contact {
    font-family: 'artifakt-light', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
}

.about-contact h3 {
    font-family: 'artifakt-light', sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-color);
    margin-bottom: 8px;
}

.about-contact a {
    color: var(--text-color);
    text-decoration: none;
}

.about-contact a:hover {
    text-decoration: underline;
}

#contact {
    padding-top: 16px;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1023px) {
    .about-layout {
        gap: 40px;
    }

    .about-content {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .about-keywords {
        padding: 0 24px;
        margin-bottom: 24px;
    }

    .about-layout {
        grid-template-columns: 1fr;
        padding: 0 24px;
        gap: 32px;
    }

    .about-content {
        padding-bottom: 60px;
        max-width: 100%;
    }
}
