/* =========================================================
   GLOBAL
========================================================= */
body {
    background-color: #f3f4f6;
    font-family: "Segoe UI", Roboto, system-ui, sans-serif;
    margin: 0;
    color: #1f2933;
}

/* =========================================================
   MAIN CONTAINER
========================================================= */
.container {
    max-width: 1100px;
    margin: 48px auto;
    background: #ffffff;
    padding: 56px 64px;
    border-radius: 14px;
    box-shadow: 0 14px 48px rgba(0, 0, 0, 0.12);

    display: grid;
    grid-template-columns: 30% 65%;
    column-gap: 5%;
    row-gap: 40px;
}

/* =========================================================
   AVATAR
========================================================= */
.avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar img {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 22px rgba(0,0,0,0.18);
}

/* =========================================================
   NAME & CONTACT
========================================================= */
.name {
    border-left: 3px solid #2e7d32;
    padding-left: 36px;
}

.name h1 {
    font-size: 30px;
    font-weight: 600;
    margin: 0 0 8px;
    letter-spacing: 0.5px;
}

.name .specialize {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #2e7d32;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.name .contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.name .contact li {
    margin: 8px 0;
    font-size: 14.5px;
}

.name .contact span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    border-radius: 50%;
    background-color: #2e7d32;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
}

/* =========================================================
   DOWNLOAD BUTTON
========================================================= */
.download-btn {
    background: transparent;
    color: #2e7d32;
    border: 1.5px solid #2e7d32;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.download-btn:hover {
    background: #2e7d32;
    color: #ffffff;
}

/* =========================================================
   PERSONAL INFO
========================================================= */
.info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
    font-size: 14.5px;
    line-height: 1.9;
    color: #374151;
}

/* =========================================================
   LINKS
========================================================= */
.experience a,
.project a,
.info a,
.awards a,
.extracurricular-activities a {
    color: #1f2933;
    text-decoration: none;
}

.experience a:hover,
.project a:hover,
.info a:hover,
.awards a:hover,
.extracurricular-activities a:hover {
    text-decoration: underline;
}

/* =========================================================
   SECTION HEADINGS
========================================================= */
h2 {
    font-size: 19px;
    font-weight: 600;
    margin: 48px 0 22px;
    padding-bottom: 6px;
    border-bottom: 2px solid #2e7d32;
    letter-spacing: 0.4px;
    color: #1f2933;
}

/* =========================================================
   INTRO / SUMMARY
========================================================= */
.intro {
    border-left: 3px solid #2e7d32;
    padding-left: 36px;
    font-size: 15.5px;
    line-height: 1.65;
    text-align: justify;
    color: #374151;
}

/* =========================================================
   EXPERIENCE / EDUCATION
========================================================= */
.experience {
    grid-column: 1 / 3;
}

.experience .item {
    margin-bottom: 26px;
}

.experience h4 {
    font-size: 17px;
    font-weight: 600;
    margin: 12px 0 6px;
}

.time {
    font-size: 13.5px;
    color: #6b7280;
    margin-bottom: 6px;
}

.experience .des {
    font-size: 14.8px;
    line-height: 1.55;
    text-align: justify;
}

/* =========================================================
   SKILLS
========================================================= */
.skills {
    grid-column: 1 / 3;
    margin-top: 48px;
}

.skills + ul {
    grid-column: 1 / 3;
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.skills + ul li {
    padding: 6px 0;
    font-size: 14.8px;
    line-height: 1.5;
}

.skills + ul strong {
    color: #2e7d32;
}

/* =========================================================
   PROJECTS / TIMELINE
========================================================= */
.project {
    grid-column: 1 / 3;
    border-left: 3px solid #2e7d32;
    padding-left: 36px;
    text-align: justify;
}

.project .item {
    position: relative;
    margin-bottom: 28px;
}

.project .item::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #2e7d32;
    border-radius: 50%;
    left: -41px;
    top: 8px;
}

.project h4 {
    margin: 10px 0 6px;
    font-weight: 600;
}

.project .location {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.project .time {
    font-size: 13.5px;
    font-style: italic;
    color: #6b7280;
}

/* =========================================================
   AWARDS
========================================================= */
.awards {
    grid-column: 1 / 3;
}

.awards .item {
    margin-bottom: 22px;
}

.awards .time {
    font-size: 13.5px;
    color: #6b7280;
}

/* =========================================================
   VOLUNTEER / EXTRA
========================================================= */
.extracurricular-activities {
    grid-column: 1 / 3;
}

.extracurricular-activities .item {
    margin-bottom: 22px;
}

.extracurricular-activities .time {
    font-size: 13.5px;
    color: #6b7280;
}

.extracurricular-activities .des {
    font-size: 14.8px;
    line-height: 1.55;
}

/* =========================================================
   STRONG TEXT
========================================================= */
strong {
    color: #1f2933;
    font-weight: 600;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 800px) {
    .container {
        grid-template-columns: 1fr;
        padding: 32px;
    }

    .info ul {
        text-align: left;
    }

    .intro,
    .project {
        border-left: none;
        padding-left: 0;
    }

    .avatar img {
        width: 140px;
        height: 140px;
    }
}
