/* ----------------- General Styles ----------------- */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #fafafa;
  color: #333;
}

a {
  color: #6c63ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ----------------- Header ----------------- */
header {
  text-align: center;
  background: #6c63ff;
  color: white;
  padding: 50px 20px;
}

header h1 {
  margin: 0;
  font-size: 2.5em;
}

header p {
  font-size: 1.2em;
}

/* Profile picture */
.profile-pic {
  width: 150px;
  border-radius: 50%;
  margin-top: 20px;
}

/* ----------------- Sections ----------------- */
section {
  margin: 30px auto;
  max-width: 700px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h2 {
  color: #6c63ff;
  margin-bottom: 15px;
}

ul {
  list-style: square;
  padding-left: 20px;
}

/* ----------------- Projects ----------------- */
.project-card {
  background: #f0f0f0;
  padding: 15px;
  margin: 10px 0;
  border-radius: 10px;
  transition: background 0.3s;
}

.project-card:hover {
  background: #e0d4ff;
  cursor: pointer;
}

/* Project images */
.project-img {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  display: block;
  margin: 10px auto;
}

/* ----------------- Footer ----------------- */
footer {
  text-align: center;
  padding: 20px;
  background: #6c63ff;
  color: white;
}

/* ----------------- Responsive ----------------- */
@media (max-width: 600px) {
  header, section {
    padding: 15px;
  }
  header h1 {
    font-size: 2em;
  }
  .profile-pic {
    width: 100px;
  }
}