/* Minimal design inspired by gaby.gold */

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  line-height: 1.6;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #000000;
  background-color: #FAF9F6;
  padding: 60px 30px;
  max-width: 768px;
  margin: 0 auto;
}

/* Typography */
h1 {
  font-size: 1em !important;
  font-weight: 400 !important;
  margin-bottom: 0.5em;
  line-height: 1.6;
}

h2 {
  font-size: 1.5em;
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

p {
  margin-bottom: 1em;
}

/* Links */
a {
  color: #000000;
  text-decoration: underline;
  text-decoration-color: #0000ff;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

a:hover {
  color: #0000ff;
}

/* Profile section */
.profile {
  margin-bottom: 0.5em;
}

.profile-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.5em;
}

/* Navigation */
nav {
  margin-top: 2em;
  margin-bottom: 2em;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

/* Bio section */
.bio {
  margin-bottom: 2em;
}

/* Social icons */
.social {
  margin-top: 1.5em;
}

.social a {
  margin-right: 1em;
  text-decoration: none;
}

.social svg {
  width: 20px;
  height: 20px;
}

/* Footer */
footer {
  margin-top: 4em;
  padding-top: 2em;
  border-top: 1px solid #e0e0e0;
  font-size: 0.9em;
  color: #666666;
}

/* Breadcrumb navigation */
.breadcrumb {
  margin-bottom: 2em;
}

.breadcrumb a {
  font-size: 0.9em;
  text-decoration: none;
}

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

/* Content pages */
.content {
  margin-top: 2em;
}

.page-content {
  margin-top: 1.5em;
}

.post-list {
  list-style: none;
  margin-top: 1em;
}

.post-list li {
  margin-bottom: 0.75em;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1em;
}

.post-list a {
  flex: 1;
}

.post-meta {
  color: #666666;
  font-size: 0.9em;
  white-space: nowrap;
}

.posts-group {
  margin-top: 2em;
}

.post-year {
  font-size: 1.2em;
  margin-bottom: 0.5em;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 600px) {
  body {
    padding: 30px 20px;
  }

  h1 {
    font-size: 1.75em;
  }

  nav ul {
    flex-direction: column;
    gap: 8px;
  }
}

/* Code blocks */
pre, code {
  font-family: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  background-color: #f5f5f5;
  border-radius: 4px;
}

pre {
  padding: 1em;
  overflow-x: auto;
  margin: 1em 0;
}

code {
  padding: 0.2em 0.4em;
  font-size: 0.9em;
}

pre code {
  padding: 0;
  background-color: transparent;
}
