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

/* Body styling */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #111;
  background-color: #f9f9f9;
  padding: 3rem;  /* Add this line */
}

/* Header / Hero */
header {
  text-align: center;
  padding: 4rem 1rem;
  background-color: #ffffff;
  border-bottom: 1px solid #eaeaea;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.2rem;
  color: #555;
}

/* Section styling */
section {
  max-width: 800px;
  margin: 3rem auto;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

/* Section headers */
section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #eaeaea;
  padding-bottom: 0.5rem;
}

/* Articles / Projects */
article {
  margin-bottom: 1.5rem;
}

article h3 {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

article p {
  margin-bottom: 0.3rem;
}

/* Links */
a {
  color: #0070f3;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #0051a3;
  text-decoration: underline;
}

/* Contact section links */
#contact p {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 600px) {
  header h1 {
    font-size: 2rem;
  }

  section {
    padding: 1.5rem;
  }
}
