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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #1f2933;
  background-color: #f9fafb;
}

/* Layout */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

header {
  text-align: center;
  padding-top: 3rem;
}

.subtitle {
  color: #4b5563;
  margin-top: 0.5rem;
}

/* Links */
.links {
  margin-top: 1rem;
}

.links a {
  margin: 0 0.75rem;
  text-decoration: none;
  color: #2563eb;
  font-weight: 500;
}

.links a:hover {
  text-decoration: underline;
}

/* Sections */
section {
  margin-top: 3rem;
}

h2 {
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

/* Skills */
.skills li {
  margin-bottom: 0.5rem;
}

/* Projects */
.project {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 1.5rem;
  margin-top: 1rem;
}

.project ul {
  margin-left: 1.5rem;
  margin-top: 0.5rem;
}

.status {
  margin-top: 0.75rem;
  font-style: italic;
  color: #6b7280;
}

/* Footer */
.footer {
  text-align: center;
  font-size: 0.9rem;
  color: #6b7280;
}
