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

body{
    font-family:Segoe UI, Arial, sans-serif;
    background:#0e0e11;
    color:#e4e4e4;
}

/* HEADER */

header{
    background-image:url("assets/logo.png");
    background-size:contain ;
    background-position:center;
    background-repeat:no-repeat;

    height:200px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0px 40px;
    box-shadow:0 5px 20px rgba(0,0,0,0.5);
    background-color: black;
}

header h1{
    font-size:28px;
    backdrop-filter:blur(6px);
}

nav a{
    text-decoration:none;
    color:white;
    margin-left:30px;
    font-weight:500;
    transition:0.2s;
}

nav a:hover{
    color:#6ea8ff;
}

/* HERO */

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

.hero h2{
    font-size:42px;
    margin-bottom:15px;
}

.hero p{
    max-width:700px;
    margin:auto;
    color:#b0b0b0;
}

/* PROJECT GRID */

.projects{
    padding:60px 40px;
}

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

.project-card{
    background:#1a1a1f;
    padding:25px;
    border-radius:14px;
    transition:0.25s;
    border:1px solid #2c2c34;
}

.project-card:hover{
    transform:translateY(-5px);
    border-color:#4c8dff;
}

.project-card h3{
    margin-bottom:10px;
}

.project-card p{
    color:#a0a0a0;
}

.project-card a{
    display:inline-block;
    margin-top:15px;
    color:#6ea8ff;
}

/* PROJECT PAGE */

.project-page{
    max-width:900px;
    margin:auto;
    padding:80px 20px;
}

.project-page h1{
    margin-bottom:20px;
}

.project-page p{
    margin-bottom:15px;
    line-height:1.6;
}

/* CONTACT */

.contact{
    padding:60px 20px;
    text-align:center;
}
.contact h2{
    font-size:36px;
    margin-bottom:20px;
}
.contact p{
    color:#b0b0b0;
    margin-bottom:10px;
}



/* FOOTER */

footer{
    margin-top:80px;
    padding:30px;
    text-align:center;
    border-top:1px solid #222;
    color:#777;
}