/* ============================================================
   about.css — Hakkımda Sayfası Stilleri
   ============================================================ */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 4rem;
}

.about-photo-card {
    text-align: center;
}

.about-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--accent-grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(124, 92, 252, 0.35);
}

.about-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.about-name {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.about-uni {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.about-social {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    transition: var(--transition);
}

.social-link:hover {
    border-color: var(--accent1);
    background: var(--surface-hov);
}

.about-detail-section {
    margin-bottom: 2.5rem;
}

.about-detail-section h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.about-detail-section p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

.edu-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    border-radius: var(--radius-sm);
    background: var(--surface);
    border: 1px solid var(--border);
    margin-bottom: 0.8rem;
    transition: var(--transition);
}

.edu-item:hover {
    border-color: rgba(124, 92, 252, 0.4);
}

.edu-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(124, 92, 252, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.edu-title {
    font-weight: 700;
    font-size: 0.95rem;
}

.edu-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

/* Skill Categories */
.skill-category {
    margin-bottom: 1.5rem;
}

.skill-category-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}