:root {
    --color-bg: #fafafa;
    --color-text: #333333;
    --color-heading: #1a1a1a;
    --color-accent: #4a90e2;
    --color-border: #e6e6e6;
}

/* Global Styles */
body {
    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
    color: var(--color-text);
    background-color: var(--color-bg);
    margin: 0;
}

h1, h2, h3 {
    color: var(--color-heading);
    margin-top: 0;
    margin-bottom: 1rem;
}

h1 { 
    font-family: "Merriweather", serif; 
    font-size: 2.5rem; font-weight: 700; 
}

h2 { 
    font-family: "Merriweather", serif; 
    font-size: 2rem; font-weight: 600; 
}

h3 { 
    font-family: "Inter", sans-serif; 
    font-size: 1.5rem; font-weight: 600; 
}

a { 
    color: var(--color-accent); 
    text-decoration: none; 
}

a:hover { 
    text-decoration: underline; 
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

section { 
    padding: 4rem 0; 
}

/* Header */
header { 
    text-align: center; 
    padding: 4rem 1rem 3rem; 
}

header .profile-pic {
    width: 100px; height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--color-border);
}

.role { 
    font-size: 1.2rem; 
    font-weight: 500;
    color: #666; 
    margin-bottom: 1rem; 
}

.summary { 
    max-width: 600px; 
    margin: 0 auto; 
    line-height: 1.8; 
    font-size: 1.1rem; 
}

/* Skills */
.skills ul {
    list-style: none;
    padding-left: 0;
    max-width: 600px;
    margin: 0 auto;
}

.skills li { 
    padding: 0.5rem 0; 
    border-bottom: 1px solid var(--color-border); 
}

/* Projects */
.project-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    background-color: #fff;
    margin-bottom: 2rem;
}

.project-image img { 
    width: 100%; 
    border-radius: 20px; 
    border: 1px solid #ddd; 
}

.project-content h3 { 
    margin-bottom: 0.5rem; 
    font-size: 1.4rem; 
}

.project-description { 
    margin-bottom: 0.5rem;
     line-height: 1.6; 
}
.project-link { 
    font-weight: 500; 
}

/* Experience */
.experience-item { 
    margin-bottom: 2rem; 
}

.experience-item h3 { 
    margin-bottom: 0.25rem; 
    font-size: 1.1rem;
}

.experience-item p:first-of-type { 
    font-size: 0.9rem; 
    color: #666; 
    margin-bottom: 0.5rem; 
}

/* Contact */
.contact { 
    text-align: center; 
    background-color: rgba(0,0,0,0.02); 
    padding: 3rem 1rem; 
}

.contact a { 
    font-weight: 500; 
    border-bottom: 2px solid transparent; 
    padding-bottom: 0.1rem; 
    transition: border-color 0.2s; 
}

.contact a:hover { 
    border-bottom-color: var(--color-accent); 
}

/* Footer */
footer { 
    background-color: #f5f5f5; 
    text-align: center; 
    padding: 2rem 1rem; 
    border-top: 1px solid var(--color-border); 
}

footer p { 
    margin: 0; 
    color: #666; 
    font-size: 0.9rem; 
}

/* Responsive */
@media (min-width: 768px) {
    .project-card { flex-direction: row; align-items: flex-start; }
    .project-image { flex: 0 0 40%; margin-right: 1rem; }
    .project-content { flex: 1; }
}
