/* ============================================
   ABOUT ME PAGE
   ============================================ */

body {
    background-image: url('../assets/images/BackGround/Gradient.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url('../assets/images/BackGround/RedEffect.png');
    background-size: cover;
    background-position: center;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}

.about-wrap {
    position: relative;
    z-index: 1;
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 100px;
}

/* ---- PAGE TITLE ---- */
.page-title {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 52px;
    margin-bottom: 36px;
    line-height: 1.1;
}

/* ---- PROFILE ROW ---- */
.profile-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 32px;
}

.profile-avatar {
    width: 230px;
    height: 230px;
    border-radius: 50%;
    border: 3px solid #5b8dee;
    box-shadow: 0 0 0 6px rgba(91,141,238,0.18), 0 0 36px rgba(91,141,238,0.32);
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255,255,255,0.06);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profile-info h2 {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.1;
}

.profile-info p {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    opacity: 0.80;
}

/* ---- DESCRIPTION ---- */
.about-desc {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.85;
    opacity: 0.92;
    max-width: 100%;
    margin-bottom: 44px;
}

/* ---- SECTION HEADER (Education / Experience) ---- */
.section-badge {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 14px;
    padding-bottom: 0;
    display: block;
    width: 100%;
    max-width: 100%;
}

.section-badge + * {
    /* the hr line comes from ::after on a wrapper — handled via section-divider */
}

.section-divider {
    width: 100%;
    max-width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.28);
    margin-bottom: 28px;
}

/* ---- EDUCATION ---- */
.edu-list {
    list-style: disc;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 44px;
    padding-left: 20px;
    max-width: 100%;
}

.edu-list li strong {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.edu-list li span {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    opacity: 0.82;
    padding-left: 2px;
}

/* ---- EXPERIENCE ---- */
.exp-list {
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin-bottom: 40px;
    max-width: 100%;
}

.exp-item {}

.exp-company {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Role shown as a bullet */
.exp-role-wrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    padding-left: 4px;
}

.exp-role-wrap::before {
    content: '•';
    font-size: 18px;
    line-height: 1.2;
    flex-shrink: 0;
}

.exp-role {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.exp-bullets {
    padding-left: 32px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    list-style: circle;
}

.exp-bullets li {
    font-family: var(--font-body);
    font-size: 13.5px;
    line-height: 1.7;
    opacity: 0.85;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .page-title { font-size: 38px; }
    .profile-row { gap: 20px; }
    .profile-avatar { width: 160px; height: 160px; }
    .profile-info h2 { font-size: 40px; }
    .profile-info p  { font-size: 20px; }
    .about-desc { max-width: 100%; }
    .section-badge { font-size: 22px; }
    .section-divider { max-width: 100%; }
    .edu-list, .exp-list { max-width: 100%; }
}

@media (max-width: 480px) {
    .about-wrap { padding-top: calc(var(--nav-height) + 20px); }
    .page-title { font-size: 30px; }
    .profile-avatar { width: 120px; height: 120px; }
    .profile-info h2 { font-size: 28px; }
    .profile-info p  { font-size: 16px; }
    .about-desc { font-size: 13.5px; }
    .section-badge { font-size: 20px; }
    .exp-company { font-size: 15px; }
    .exp-role { font-size: 13px; }
    .exp-bullets li { font-size: 13px; }
}
