/* Color Palette
Primary Dark: #1C1B19
Deep Olive:   #3F4A1F
Warm Amber:   #D98C3A
Soft Cream:   #F2E6D8
*/

/* Global styles 
------------------------------------*/
body {
    background: #1C1B19;
    color: #F2E6D8;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
}

h1 {
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 10px;
}

h2 {
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

h3 {
    font-weight: 500;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

strong {
    font-weight: 500;
}

p, li {
    font-size: 1rem;
    line-height: 1.6;
}

a {
    color: #D98C3A;
    text-decoration: none;
}

a:hover {
    color: #F2E6D8;
}

section h2 {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.left {
    float: left;
    margin-right: 20px;
}
/* Header & Footer 
------------------------------------*/
main, .header-section, .footer-section {
    max-width: 900px;
    margin: 0 auto;
}

.header-section {
    background-color: #3F4A1F;
    padding: 40px;
}
.footer-section {
    background-color: #3F4A1F;
    padding: 30px;
}

.footer-links {
    display: flex;
    gap: 25px;
    margin: 20px 0;
}

/* Work Experience
------------------------------------*/
.work-section {
    background-color: #1C1B19;
    padding: 40px;
}


/* Education
------------------------------------*/
.education-section {
    background-color: #1C1B19;
    padding: 40px;
}