/* Color Palette
------------------------------------
#1f2a44  - Dark blue (header/footer bars)
#a8d0f0  - Sky blue (page background)
#f2f0f7  - Light lavender (section backgrounds)
#e5e7eb  - Light muted gray (paragraph/content blocks)
#ffffff  - White (header/footer text)
#2b2b2b  - Dark charcoal (body text)
*/

/* Global styles
------------------------------------*/
body {
    margin: 0;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    background-color: #a8d0f0; /* sky blue page background */
    color: #2b2b2b;
    font-size: 16px;
    line-height: 1.6;
}

/* Header & Footer
------------------------------------*/
.site-header,
.site-footer {
    background-color: #1f2a44; /* dark blue */
    color: #ffffff;            /* white text */
    padding: 20px;
}



/* Main content wrapper */
main {
    background-color: #e4e1f0;
    margin: 30px auto;
    padding: 30px;
    max-width: 900px;
    border-radius: 8px;
}

/* Section styles
------------------------------------*/
.projects,
.work-experience,
.education {
    background-color: #f2f0f7;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 6px;
}

/* Sub-content blocks (jobs, schools, projects) */
.projects p,
.work-experience p,
.education p {
    background-color: #e5e7eb;
    padding: 10px;
    border-radius: 4px;
}

/* Headings
------------------------------------*/
h1 {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25em;
}

h2 {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

h3 {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 1em;
}

