/* RESET */

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

/* BODY */

body{
font-family:'Inter',sans-serif;
background:linear-gradient(135deg,#f7f9fc,#e9eef5);
color:#2b2b2b;
min-height:100vh;
}

/* NAV */

.top-nav{
max-width:1100px;
margin:auto;
padding:30px 20px;
}

.top-nav a{
text-decoration:none;
font-family:'Cinzel',serif;
color:#3f5a72;
border:1px solid #3f5a72;
padding:8px 14px;
border-radius:6px;
transition:.2s;
}

.top-nav a:hover{
background:#3f5a72;
color:white;
}

/* HERO */

.projects-hero{
text-align:center;
max-width:700px;
margin:auto;
padding:20px 20px 40px;
}

.projects-hero h1{
font-family:'Cinzel',serif;
font-size:42px;
color:#3f5a72;
margin-bottom:10px;
}

.projects-hero p{
font-size:16px;
color:#6c7c8c;
}

/* GRID */

.projects-grid{
max-width:1100px;
margin:auto;
padding:40px 20px 80px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:35px;
}

/* CARD */

.project-card{
background:white;
border-radius:12px;
padding:28px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:.25s;
display:flex;
flex-direction:column;
gap:14px;
}

.project-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

/* TEXT */

.project-card h2{
font-family:'Cinzel',serif;
font-size:20px;
color:#2f3e4e;
}

.project-card p{
font-size:15px;
line-height:1.6;
color:#5a6b7d;
}

/* TAGS */

.tags{
display:flex;
flex-wrap:wrap;
gap:6px;
}

.tags span{
background:#e8eef6;
color:#3f5a72;
padding:4px 8px;
border-radius:5px;
font-size:12px;
}

/* LINKS */

.project-link{
margin-top:5px;
font-weight:500;
color:#3f5a72;
text-decoration:none;
}

.project-link:hover{
text-decoration:underline;
}

/* VIDEO */

.video-wrapper{
position:relative;
padding-bottom:56.25%;
height:0;
overflow:hidden;
border-radius:8px;
margin-top:8px;
}

.video-wrapper iframe{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
}

/* MOBILE */

@media(max-width:700px){

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

.projects-grid{
gap:28px;
}

}