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

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
  padding: 1rem;
}

/* Header styles with nav */
header {
  background-color: #333;
  color: white;
  padding: 1rem;
  text-align: center;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* Section spacing */
section {
  margin: 2rem 0;
  padding: 1rem;
}

/* Profile picture styling */
.profile-pic {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin: 1rem 0;
}

/* Project card layout */
.project-card {
  background: white;
  padding: 1rem;
  margin-bottom: 1rem;
  border-left: 5px solid #ff6f61;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

/* Footer styling */
footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #ccc;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
  }

  .project-card {
    font-size: 0.95rem;
  }
}
