/* GENERAL */

body{
    margin:0;
    font-family:Arial, sans-serif;
    background:#f3f4f6;
    color:#111827;
}

section{
    width:80%;
    max-width:1100px;
    margin:40px auto;
}

/* HERO */

.hero{
    text-align:center;
    padding:60px 20px;
}

.profile-img{
    width:140px;
    height:140px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:15px;
}

.hero h1{
    font-size:32px;
}

.hero-text{
    font-size:18px;
    color:#4b5563;
    max-width:600px;
    margin:auto;
}

/* HIGHLIGHTS */

.highlights{
    display:flex;
    justify-content:space-between;
    gap:20px;
    background:white;
    padding:25px;
    border-radius:12px;
    flex-wrap:wrap;
}

.highlights div{
    flex:1;
    min-width:120px;
    text-align:center;
}

/* HEADINGS */

h2{
    border-bottom:2px solid #e5e7eb;
    padding-bottom:8px;
    margin-bottom:20px;
}

/* TAGS */

.tags span{
    display:inline-block;
    background:#e5e7eb;
    padding:8px 14px;
    border-radius:20px;
    margin:6px;
    font-size:14px;
}

/* PROJECT GRID */

.project-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

/* PROJECT CARD */

.project-card{
    background:white;
    padding:20px;
    border-radius:12px;
    transition:transform .3s;
}

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

/* BUTTON LINKS */

a{
    display:inline-block;
    margin-top:10px;
    text-decoration:none;
    background:#111827;
    color:white;
    padding:8px 14px;
    border-radius:6px;
    font-size:14px;
}

/* FOOTER */

footer{
    text-align:center;
    padding:20px;
    color:#6b7280;
}

/* MOBILE */

@media(max-width:768px){

section{
    width:92%;
}

.hero{
    padding:40px 10px;
}

.hero h1{
    font-size:26px;
}

.hero-text{
    font-size:16px;
}

.profile-img{
    width:110px;
    height:110px;
}

.highlights{
    flex-direction:column;
    gap:15px;
}

.tags span{
    font-size:13px;
    padding:6px 12px;
}

}
