/* ==========================================================
   GLOBAL
========================================================== */

section{

    scroll-margin-top:5rem;

}

/* ==========================================================
   HEADER
========================================================== */

#header{

    display:grid;
    grid-template-columns:65% 35%;
    align-items:center;
    gap:var(--space-8);

    padding:var(--space-8) 0;

    border-bottom:1px solid var(--border);

}

.header-title{

    margin-top:var(--space-4);

    font-size:var(--font-size-hero);

    font-weight:900;

    line-height:1;

}

.header-subtitle{

    margin-top:var(--space-3);

    font-size:var(--font-size-lg);

    font-weight:var(--font-weight-bold);

    color:var(--primary);

}

.header-description{

    max-width:520px;

    margin:var(--space-5) 0;

    color:var(--text-light);

    line-height:1.65;

}

.contact-list{

    display:flex;
    flex-direction:column;

    gap:var(--space-4);

}

.contact-list li{

    display:flex;

    align-items:center;

    gap:var(--space-3);

    color:var(--text-light);

}

.contact-list i{

    width:20px;

    color:var(--primary);

}

/* ==========================================================
   ABOUT
========================================================== */

.about{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:var(--space-8);

}

.about-content{

    flex:2;

}

.about-intro{

    margin-bottom:var(--space-4);

    font-size:1.15rem;

    font-weight:var(--font-weight-semibold);

}

.about-content p{

    color:var(--text-light);

    line-height:1.8;

}

.about-stack{

    flex:1;

    display:flex;

    justify-content:flex-end;

    flex-wrap:wrap;

    gap:var(--space-3);

}

/* ==========================================================
   SKILLS
========================================================== */

.skills-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:var(--space-7);

}

.skill-category h3{

    margin-bottom:var(--space-4);

}

/* ==========================================================
   EXPERIENCE
========================================================== */

.experience-list{

    display:flex;

    flex-direction:column;

    gap:var(--space-6);

}

.experience-item{

    padding-bottom:var(--space-6);

    border-bottom:1px solid var(--border);

}

.experience-item:last-child{

    border:none;

    padding-bottom:0;

}

.experience-header{

    display:flex;

    justify-content:space-between;

    gap:var(--space-6);

}

.experience-company{

    margin:.35rem 0 var(--space-3);

    font-weight:var(--font-weight-semibold);

}

.experience-period{

    white-space:nowrap;

    color:var(--text-light);

    font-size:var(--font-size-xs);

    font-weight:var(--font-weight-semibold);

    text-transform:uppercase;

    letter-spacing:.05em;

}

.experience-stack{

    margin-bottom:var(--space-3);

    color:var(--text-light);

    font-weight:var(--font-weight-semibold);

}

.experience-item p{

    color:var(--text-light);

    line-height:1.7;

}

/* ==========================================================
   PROJECTS
========================================================== */

.projects-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:var(--space-6);

}

.project-card{

    display:flex;

    flex-direction:column;

    gap:var(--space-4);

}

.project-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.project-description{

    color:var(--text-light);

    line-height:1.7;

}

.project-features{

    display:flex;

    flex-wrap:wrap;

    align-items:center;

    gap:.45rem;

    font-size:.9rem;

    font-weight:var(--font-weight-semibold);

}

.project-features i{

    color:var(--primary);

}

.project-features span{

    color:var(--text-light);

}

.project-type{

    padding:.35rem .8rem;

    border-radius:999px;

    background:var(--primary-soft);

    color:var(--primary);

    font-size:var(--font-size-xs);

    font-weight:var(--font-weight-bold);

    text-transform:uppercase;

    letter-spacing:.05em;

}

.project-footer{

    margin-top:auto;

    color:var(--text-light);

    font-size:var(--font-size-xs);

    font-style:italic;

}

/* ==========================================================
   EDUCATION
========================================================== */

.education-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:var(--space-7);

    padding-top:var(--space-4);

    border-top:1px solid var(--border);

}

.education-item p{

    color:var(--text-light);

    line-height:1.7;

}