/* Reset and base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Typography */
h1, h2, h3 {
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid #eee;
}

h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

p {
    margin-bottom: 1rem;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid #eee;
}

.tagline {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.currently {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #333;
}

.currently a {
    font-weight: 600;
    color: #0066cc;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 1px;
}

.currently a:hover {
    text-decoration: none;
    border-bottom-color: #004499;
}


.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-links a {
    color: #555;
    font-size: 0.95rem;
}

.social-links a:hover {
    color: #0066cc;
}

/* Sections */
section {
    margin-bottom: 2.5rem;
}


/* Skills */
.skills-list {
    list-style: none;
}

.skills-list li {
    margin-bottom: 0.5rem;
}

/* Timeline / Experience */
.timeline {
    border-left: 2px solid #eee;
    padding-left: 1.5rem;
}

.timeline-item {
    margin-bottom: 1.5rem;
    position: relative;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -1.75rem;
    top: 0.5rem;
    width: 10px;
    height: 10px;
    background: #0066cc;
    border-radius: 50%;
}

.timeline-item .date {
    font-size: 0.85rem;
    color: #888;
}

.timeline-item h3 {
    margin: 0.2rem 0;
}

.timeline-item p {
    margin: 0;
    color: #555;
}

/* Projects */
.project-grid {
    display: grid;
    gap: 1.5rem;
}

.project {
    padding: 1rem;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
}

.project h3 {
    margin-bottom: 0.5rem;
}

.project p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
}

/* Blog */
.blog-list {
    list-style: none;
}

.blog-list li {
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.post-date {
    font-size: 0.85rem;
    color: #888;
}

/* Footer */
footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 600px) {
    h1 {
        font-size: 1.75rem;
    }

    .profile-img {
        width: 120px;
        height: 120px;
    }

    .social-links {
        gap: 1rem;
    }
}
