/* About Page */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.page-desc {
    color: var(--text-light);
    font-size: 1.1rem;
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--hover-color);
    border-radius: 12px;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
}

.profile-info h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.profile-info p {
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.bio-section,
.skills-section,
.contact-section {
    margin-bottom: 3rem;
}

.bio-section h3,
.skills-section h3,
.contact-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.bio-section p {
    line-height: 1.8;
    color: var(--text-light);
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: baseline;
}

.contact-label {
    color: var(--text-color);
    margin-right: 0.3rem;
}

.contact-value {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s;
}

a.contact-value {
    text-decoration: underline;
}

a.contact-value:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .profile-section {
        flex-direction: column;
        text-align: center;
    }
}