/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;       /* center everything */
    text-align: center;        /* center text */
    padding-left: 0;           /* remove left gap */
    gap: 25px;
}

/* Profile Photo */
.about-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--card-shadow);
}

/* Title */
.about-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-color);
    margin-top: 10px;
}

/* Paragraphs */
.about-text {
    max-width: 650px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    opacity: 0.9;
}

/* ============================================================
   BUTTON — MATCHES REPO-CT STYLE
   ============================================================ */

.about-button {
    display: block;
    width: fit-content;
    margin: 10px auto 0 auto;

    font-size: 16px;
    color: var(--text-color);
    opacity: 0.85;
    text-decoration: none;
    font-weight: 400;

    padding: 10px 18px;
    border-radius: 10px;
    background: var(--card-bg);
    box-shadow: var(--card-shadow);
    border: 1px solid var(--frame-border);

    transition:
        background 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.25s ease,
        opacity 0.3s ease;
}

.about-button:hover {
    background: var(--card-hover-bg);
    box-shadow: var(--card-hover-shadow);
    border-color: #8fa79a;
    transform: translateY(-3px);
    opacity: 1;
}

.about-button:active {
    transform: translateY(0);
}
