*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Segoe UI', Arial, sans-serif;
    line-height:1.8;
    background:#f4f4f2;
    color:#1f2933;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.hero{
    background:linear-gradient(135deg,#0f1f1c,#1f3b35,#2f4f4a);
    color:white;
    padding:80px 20px;
    border-bottom:4px solid #c8a951;
}

.hero-content{
    display:flex;
    align-items:center;
    gap:50px;
}

.profile-pic{
    width:220px;
    height:220px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #d8d8d8;
    box-shadow:0 10px 30px rgba(0,0,0,0.35);
}

.hero-text{
    flex:1;
}

.eyebrow{
    color:#c8a951;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:14px;
    margin-bottom:10px;
}

.hero h1{
    font-size:4rem;
    margin-bottom:10px;
}

.hero h2{
    font-size:1.4rem;
    color:#d8d8d8;
    margin-bottom:20px;
    font-weight:400;
}

.hero-description{
    color:#f1f1f1;
}

.hero-links{
    margin-top:25px;
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.hero-links a{
    text-decoration:none;
    color:white;
    background:#1f2933;
    padding:10px 18px;
    border-radius:8px;
    border:1px solid #c8a951;
}

.hero-links a:hover{
    background:#2f4f4a;
}

section{
    padding:60px 0;
}

h3{
    margin-bottom:25px;
    font-size:2rem;
    color:#1f3b35;
    border-left:5px solid #c8a951;
    padding-left:12px;
}

.section-card,
.highlight-card,
.project,
.resume-card,
.contact-card{
    background:#ffffff;
    border:1px solid #d8d8d8;
    border-radius:12px;
    box-shadow:0 4px 14px rgba(0,0,0,0.08);
}

.section-card{
    padding:30px;
}

.section-card p{
    margin-bottom:14px;
}

.section-card p:last-child{
    margin-bottom:0;
}

.skills{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.skills span{
    background:#e5e5e0;
    color:#1f2933;
    padding:10px 16px;
    border-radius:8px;
    border:1px solid #c9c9c3;
    font-weight:600;
}

.highlights-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.highlight-card{
    padding:25px;
}

.highlight-card h4{
    margin-bottom:10px;
    color:#1f3b35;
}

.projects-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}

.project{
    overflow:hidden;
    transition:0.3s;
}

.project:hover{
    transform:translateY(-5px);
}

.project-image{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
}

.project-content{
    padding:25px;
}

.project h4{
    margin-bottom:10px;
    color:#1f3b35;
}

.project ul{
    margin:15px 0;
    padding-left:20px;
}

.project-tags{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin:15px 0;
}

.project-tags span{
    background:#f0efe9;
    color:#1f3b35;
    border:1px solid #d8d8d8;
    padding:6px 10px;
    border-radius:999px;
    font-size:0.85rem;
    font-weight:600;
}

.project a,
.hero-links a{
    transition:0.2s;
}

.project a{
    display:inline-block;
    margin-top:10px;
    text-decoration:none;
    color:white;
    background:#1f3b35;
    padding:10px 18px;
    border-radius:8px;
    border:1px solid #c8a951;
}

.project a:hover{
    background:#2f4f4a;
}

.resume-card{
    padding:30px;
}

.resume-card h4{
    color:#1f3b35;
    margin-bottom:20px;
}

.resume-subtitle{
    margin-top:30px;
}

.timeline{
    display:flex;
    flex-direction:column;
    gap:22px;
    border-left:3px solid #c8a951;
    padding-left:25px;
}

.timeline-item{
    display:grid;
    grid-template-columns:150px 1fr;
    gap:20px;
    position:relative;
}

.timeline-item::before{
    content:"";
    width:12px;
    height:12px;
    background:#1f3b35;
    border:3px solid #c8a951;
    border-radius:50%;
    position:absolute;
    left:-33px;
    top:8px;
}

.timeline-year{
    font-weight:700;
    color:#1f3b35;
}

.timeline-item h5{
    font-size:1rem;
    color:#1f2933;
    margin-bottom:4px;
}

.interest-list{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.interest-list span{
    background:#e5e5e0;
    color:#1f2933;
    padding:8px 14px;
    border-radius:8px;
    border:1px solid #c9c9c3;
}

.contact-card{
    padding:25px;
}

.contact-card p{
    margin-bottom:10px;
}

.contact-card p:last-child{
    margin-bottom:0;
}

.contact-card a{
    color:#1f3b35;
    font-weight:bold;
}

footer{
    background:#0f1f1c;
    color:#d8d8d8;
    text-align:center;
    padding:25px;
    border-top:3px solid #c8a951;
}

@media(max-width:900px){

    .hero-content{
        flex-direction:column;
        text-align:center;
    }

    .hero-links{
        justify-content:center;
    }

    .hero h1{
        font-size:3rem;
    }

    .projects-grid{
        grid-template-columns:1fr;
    }

    .highlights-grid{
        grid-template-columns:1fr;
    }

    .timeline-item{
        grid-template-columns:1fr;
        gap:5px;
    }
}