/* Minimal Portfolio — Unix/Academic Style */

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

html {
  font-size: 15px;
}

body {
  font-family: 'JetBrains Mono', 'SF Mono', 'Consolas', 'Liberation Mono', monospace;
  background: #0a0a0a;
  color: #d4d4d4;
  line-height: 1.7;
  padding: 2rem 1.5rem;
  max-width: 640px;
  margin: 0 auto;
}

a {
  color: #8ab4f8;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header */
header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #333;
}

header h1 {
  font-size: 1.1rem;
  font-weight: normal;
  margin-bottom: 0.25rem;
}

header p {
  color: #888;
  font-size: 0.9rem;
}

/* Navigation */
nav {
  margin-bottom: 2rem;
  line-height: 2;
}

nav a {
  margin-right: 1.25rem;
}

/* Main content */
main {
  min-height: 50vh;
}

h2 {
  font-size: 0.9rem;
  font-weight: normal;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  margin-top: 2.5rem;
}

h2:first-child {
  margin-top: 0;
}

p {
  margin-bottom: 1rem;
}

/* Projects */
.project {
  margin-bottom: 1rem;
}

.project-title {
  color: #d4d4d4;
  text-decoration: underline;
}

.project-desc {
  color: #888;
}

.project-links {
  font-size: 0.9rem;
  color: #888;
}

/* Devlog */
.entry {
  margin-bottom: 0.5rem;
}

.date {
  color: #888;
}

/* Lists */
ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.25rem;
}

/* Footer */
footer {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
  color: #555;
  font-size: 0.85rem;
}

/* Project Detail Pages */
.back-nav {
  margin-bottom: 2rem;
}

.project-detail h1 {
  font-size: 1.3rem;
  font-weight: normal;
  margin-bottom: 0.25rem;
}

.project-detail .subtitle {
  color: #888;
  margin-bottom: 1.5rem;
}

.project-detail hr {
  border: none;
  border-top: 1px solid #333;
  margin: 1.5rem 0;
}

.project-detail img {
  max-width: 100%;
  margin: 0.5rem 0;
}

.project-detail video {
  max-width: 100%;
  margin: 0.5rem 0;
}

a.project-title {
  color: #d4d4d4;
  font-weight: normal;
}

a.project-title:hover {
  color: #8ab4f8;
}

/* Responsive */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  body {
    padding: 1.5rem 1rem;
  }
  
  nav a {
    margin-right: 1rem;
    display: inline-block;
    margin-bottom: 0.25rem;
  }
}
