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

/* NAVBAR */

.navbar{
border-bottom:1px solid #111;
padding:15px 30px;
}

.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;
}
/* SKILLS */
.skills-section {
  padding: 60px 20px;
  background-color: #0d0d0d;
  color: #eaeaea;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  color: #00FF66;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

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

.skill-card {
  background: #151515;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 20px;
  transition: 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-5px);
  border-color: #00ffcc;
  box-shadow: 0 0 15px rgba(0, 255, 204, 0.2);
}

.skill-card h3 {
	margin-bottom: 15px;
	color: #1A6BFF;
	font-size: 1.2rem;
}

.skill-card ul {
  list-style: none;
  padding: 0;
}

.skill-card li {
	margin: 8px 0;
	font-size: 0.95rem;
	color: #00FF66;
}
