
html{scroll-behavior:smooth;}

body{
margin:0;
font-family:Arial;
background:#0a0a0a;
color:white;
}

.nav{
position:fixed;
top:0;
width:100%;
background:black;
z-index:1000;
}

.nav-inner{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
padding:20px;
}

.links a{
margin-left:25px;
color:white;
text-decoration:none;
}

.hero{
height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
position:relative;
overflow:hidden;
}

.hero-bg{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:url(assets/hero.jpg);
background-size:cover;
background-position:center;
opacity:0.35;
}

#lights{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
}

.hero-content{
position:relative;
z-index:2;
}

.hero h1{
font-size:70px;
margin:0;
}

.role{
font-size:26px;
margin-top:10px;
}

.exp{
opacity:0.8;
margin-top:10px;
}

.btn{
display:inline-block;
margin-top:30px;
padding:15px 30px;
background:#222;
border-radius:6px;
color:white;
text-decoration:none;
}

.section{
max-width:1200px;
margin:auto;
padding:120px 20px;
}

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

.skill{
background:#151515;
padding:25px;
border-radius:8px;
}

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

.project{
background:#151515;
padding:25px;
border-radius:8px;
}

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

.gallery img{
width:100%;
border-radius:6px;
}

footer{
text-align:center;
padding:40px;
background:#111;
}


/* HERO TYPOGRAPHY UPGRADE */
.hero h1{
font-family:'Orbitron',sans-serif;
letter-spacing:3px;
}

/* GALLERY LIGHTBOX */
.lightbox{
display:none;
position:fixed;
z-index:3000;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.95);
align-items:center;
justify-content:center;
}

.lightbox-img{
max-width:90%;
max-height:90%;
}

.lightbox-close{
position:absolute;
top:30px;
right:50px;
color:white;
font-size:45px;
cursor:pointer;
}

.gallery img{
cursor:pointer;
transition:transform .3s ease;
}

.gallery img:hover{
transform:scale(1.06);
}

/* PORTFOLIO HOVER EFFECT */
.project{
transition:transform .3s ease, box-shadow .3s ease;
}

.project:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,.6);
}

