/* RESET */

*{
box-sizing:border-box;
margin:0;
padding:0;
}

/* BASE */

body{
font-family:'Montserrat',sans-serif;
background:#0b0f14;
color:#e6edf3;
}

/* PARTICLES BACKGROUND */

#particles{
position:fixed;
top:0;
left:0;
width:100vw;
height:100vh;
z-index:-1;
pointer-events:none;
}

/* CONTENT ABOVE PARTICLES */

header,
.hero,
.projects-section,
.project-hero,
.project-sections{
position:relative;
z-index:1;
}

/* HEADER */

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:25px 10%;
background:rgba(0,0,0,0.4);
backdrop-filter:blur(10px);
}

nav a{
margin-left:30px;
text-decoration:none;
color:#e6edf3;
font-weight:500;
transition:0.3s;
}

nav a:hover{
color:#00ff9c;
}

/* HERO SECTION */

.hero{
position:relative;
height:100vh;
display:flex;
align-items:center;
padding:0 10%;
overflow:hidden;
}

.hero-content{
display:flex;
align-items:center;
justify-content:space-between;
width:100%;
}

.project-sections{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
padding:40px 10% 100px 10%;
}

.project-section{
background:#11161d;
padding:35px;
border-radius:14px;
box-shadow:0 15px 40px rgba(0,0,0,0.5);
border:1px solid rgba(255,255,255,0.05);
}

.project-section h2{
margin-bottom:15px;
font-size:24px;
}

.project-section p{
color:#9aa7b2;
line-height:1.7;
}

.hero-text{
max-width:520px;
}

.hero h1{
font-size:56px;
font-weight:700;
}

.hero h2{
font-size:42px;
color:#00ff9c;
margin-bottom:20px;
}

.hero p{
margin-bottom:18px;
line-height:1.6;
color:#a6b1bb;
}

.hero-btn{
margin-top:15px;
display:inline-block;
padding:14px 28px;
background:linear-gradient(135deg,#00ff9c,#00d084);
border-radius:8px;
color:#00110a;
font-weight:600;
text-decoration:none;
transition:0.25s;
}

.hero-btn:hover{
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(0,255,156,0.3);
}

/* HERO IMAGE */

.hero-image{
position:absolute;
right:8%;
bottom:0;
height:90vh;
pointer-events:none;
}

.hero-image img{
height:100%;
}

/* HOME PAGE SCROLL LOCK */

body.home{
height:100vh;
overflow:hidden;
}

/* PROJECTS PAGE */

.projects-section{
padding:40px 10%;
}

.projects-title{
font-size:40px;
margin-bottom:50px;
}

/* FEATURED PROJECT */

#featured-project{
display:flex;
justify-content:center;
margin-bottom:60px;
}

.featured-project{
width:60%;
max-width:700px;
background:#11161d;
border-radius:14px;
overflow:hidden;
border:2px solid #00ff9c;
box-shadow:0 20px 50px rgba(0,0,0,0.6);
transition:0.25s;
}

.featured-project:hover{
transform:translateY(-4px);
}

/* 16:9 container */
.featured-project .image-container{
width:100%;
aspect-ratio:16/9;
overflow:hidden;
}

.featured-project .image-container img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

/* text */
.featured-project .project-info{
padding:16px 20px;
}

.featured-project .project-info h3{
font-size:18px;
margin-bottom:4px;
}

.featured-project .project-info p{
font-size:14px;
color:#9aa7b2;
}

/* PROJECT GRID */

.projects-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

/* PROJECT TILE */

.project-tile{
background:#11161d;
border-radius:12px;
overflow:hidden;
text-decoration:none;
color:white;
transition:0.25s;
display:flex;
flex-direction:column;
border:1px solid rgba(255,255,255,0.05);
}

.project-tile:hover{
transform:translateY(-6px);
box-shadow:0 15px 35px rgba(0,0,0,0.6);
border-color:#00ff9c;
}

.project-tile img{
width:100%;
height:200px;
object-fit:cover;
}

/* PROJECT INFO */

.project-info{
padding:18px;
}

.project-info h3{
margin-bottom:6px;
font-weight:600;
}

.project-info p{
color:#9aa7b2;
font-size:14px;
}

/* ACCENT TEXT */

.accent{
color:#00ff9c;
}

/* RESPONSIVE */

@media (max-width:1100px){

.projects-grid{
grid-template-columns:repeat(2,1fr);
}

.hero-image{
height:70vh;
right:5%;
}

}

@media (max-width:700px){

.projects-grid{
grid-template-columns:1fr;
}

.hero{
padding:40px;
}

.hero-content{
flex-direction:column;
text-align:center;
}

.hero-image{
position:relative;
height:400px;
margin-top:40px;
right:auto;
}

}/* PROJECT HERO */
.project-hero{
padding:100px 10% 60px 10%;
}

.project-hero-content{
display:grid;
grid-template-columns:1.6fr 1fr;
gap:50px;
align-items:stretch;
}

/* VIDEO */

.project-video iframe{
width:100%;
aspect-ratio:16/9;
border:none;
border-radius:12px;
box-shadow:0 20px 40px rgba(0,0,0,0.6);
height:100%;
}

/* SUMMARY CARD */

.project-summary{
background:#11161d;
padding:35px;
border-radius:14px;
box-shadow:0 15px 40px rgba(0,0,0,0.5);
border:1px solid rgba(255,255,255,0.05);

display:flex;
flex-direction:column;
justify-content:space-between;
}

.project-summary h1{
font-size:34px;
margin-bottom:15px;
}

.project-summary p{
color:#9aa7b2;
line-height:1.7;
margin-bottom:25px;
}

/* META */

.project-meta{
display:flex;
gap:50px;
margin-top:auto;
}

.project-meta span{
font-size:12px;
letter-spacing:1px;
text-transform:uppercase;
color:#00ff9c;
}

.project-meta p{
font-weight:600;
margin-top:5px;
}