/* 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)
*/

/* Box Model Fix
------------------------------------*/
html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}

/* 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;
}
/*content wrap on all sections*/
.content-wrap {
    max-width: 950px;
    margin: 0 auto;
    padding: 50px;
    overflow: hidden;
}

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

.site-header h1,
.site-header h2 {
    margin: 0;
}

/* Columns
------------------------------------*/
.column-narrow {
    width: 30%;
    float: left;
    padding-right: 3%;
    min-height: 175px;
}

.column-wide {
    width: 70%;
    float: left;
    min-height: 225px;
}

.site-footer {
    background-color: #1f2a44; /* dark blue */
    color: #ffffff;            /* white text */
    padding: 20px;
    text-align: center;
}

.contact-info a {
    padding: 10px;
    display: inline-block;
}

/*Images*/
.profile-img {
    border-radius: 50%;
}

/* 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;
}

/* Block Styles */
.project-block,
.job-block,
.education-block {
    overflow: hidden;
    margin-bottom: 20px;
}

/* 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: 0;
    margin-bottom: 0.5em;
}

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

