/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Navbar */
header {
  background: #222;
  padding: 1rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav h1 {
  color: white;
}

#nav-links {
  list-style: none;
  display: flex;
}

#nav-links li {
  margin-left: 20px;
}

#nav-links li a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

#nav-links li a:hover {
  color: #ff9800;
}

#menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Sections */
.section {
  padding: 50px;
  text-align: center;
}

.highlight {
  color: #ff9800;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #ff9800;
  color: white;
  border-radius: 5px;
  text-decoration: none;
}

.btn:hover {
  background: #e68900;
}

/* Projects */
.project {
  background: white;
  padding: 20px;
  margin: 15px auto;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Skills */
.skills-list {
  list-style: none;
  max-width: 400px;
  margin: auto;
}

.skills-list li {
  background: #eee;
  margin: 8px;
  padding: 10px;
  border-radius: 5px;
}

/* Contact */
form {
  max-width: 400px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
}

form input, form textarea {
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

form button {
  border: none;
  cursor: pointer;
}

.social-links {
  margin-top: 15px;
}

/* Footer */
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  #nav-links {
    display: none;
    flex-direction: column;
    background: #333;
    position: absolute;
    top: 60px;
    right: 10px;
    padding: 15px;
    border-radius: 5px;
  }

  #nav-links.show {
    display: flex;
  }

  #menu-toggle {
    display: block;
  }
}