/* GENERAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  background: #0d0d0d;
  color: #fff;
}

/* HEADER */
header {
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  position: fixed;
  top: 0;
  z-index: 10;
  box-shadow: 0 0 15px #000;
}

.logo {
  font-size: 1.6rem;
  color: #00eaff;
  text-shadow: 0 0 10px #00eaff;
  font-weight: bold;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

nav a:hover {
  color: #00eaff;
  text-shadow: 0 0 10px #00eaff;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero span {
  color: #ff00d4;
  text-shadow: 0 0 10px #ff00d4;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #00eaff;
  color: #000;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #ff00d4;
  color: #000;
}

/* SECTIONS */
section {
  padding: 80px 40px;
  text-align: center;
}

h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: #00eaff;
  text-shadow: 0 0 10px #00eaff;
}

/* SKILLS */
.skill-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.skill {
  background: #111;
  border: 1px solid #00eaff;
  padding: 10px 20px;
  margin: 10px;
  border-radius: 6px;
  text-shadow: 0 0 5px #00eaff;
}

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

.project {
  background: #111;
  border: 1px solid #ff00d4;
  padding: 20px;
  border-radius: 8px;
}

.project a {
  color: #00eaff;
}

.project a:hover {
  color: #ff00d4;
}

/* CONTACT */
.contact .btn {
  margin-top: 10px;
}

/* FOOTER */
footer {
  padding: 20px;
  background: #111;
  text-align: center;
  color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  header {
    flex-direction: column;
    text-align: center;
  }
  nav {
    margin-top: 10px;
  }
}
