body{
	background: #000;
	color: #00ff66;
	font-family: Arial, Helvetica, sans-serif;
	margin: 0;
	text-align: center;
}

/* NAVBAR */

.navbar{
position:sticky;
top:0;
background:#000;
z-index:1000;
}

.nav-inner{
display:flex;
justify-content:space-between;
align-items:center;
max-width:1000px;
margin:auto;
}

.brand{
display:flex;
align-items:center;
gap:10px;
}

.logo{
width:36px;
}

.nav-links a{
margin-left:18px;
color:#4ea1ff;
text-decoration:none;
}

.nav-links a:hover{
text-decoration:underline;
}


/* HERO */

.hero{
	padding-top: 80px;
	padding-right: 20px;
	padding-bottom: 5px;
	padding-left: 20px;
}

.hero h1{
font-size:48px;
margin-bottom:10px;
}

.tagline{
color:#aaa;
margin-bottom:20px;
}

.button{
color:#4ea1ff;
text-decoration:none;
}


/* TERMINAL */

.terminal{
padding:40px 20px;
}

#terminal{
background:#000;
border:1px solid #111;
max-width:800px;
margin:30px auto;
padding:20px;
text-align:left;
height:380px;
overflow-y:auto;
}

.input-line{
display:flex;
gap:8px;
}

#prompt{
color:#00ff66;
}

#commandInput{
	background: black;
	border: none;
	color: #00ff66;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	outline: none;
	width: 100%;
}


/* TERMINAL COLORS */

.dir{
color:#4ea1ff;
}

.system{
color:#777;
}

.banner{
color:#aaa;
margin-bottom:10px;
}


/* SKILLS */

.skills{
padding:60px 20px;
max-width:900px;
margin:auto;
}

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

.skill-card{
border:1px solid #111;
padding:20px;
text-align:left;
}

.skill-card h3{
	color: #3366FF;
	margin-bottom: 10px;
}

/* PROJECTS */

.projects{
padding:80px 20px;
}

.project-grid{
display:flex;
flex-wrap:wrap;
justify-content:center;
max-width:1100px;
margin:auto;
}

.project-card{
background:#1A212B;
width:260px;
margin:20px;
padding:20px;
border-radius:8px;
text-align:center;
transition:transform .3s, box-shadow .3s;
}

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

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

/* FOOTER */

footer{
padding:40px;
text-align:center;
color:#8A8F98;
}
