/*
Theme Name: Helloxonie
Description: Minimal reverse-chronological life-updates blog
Author: helloxonie
Version: 1.0
*/

:root {
  --bg: #f7f5f1;
  --text: #1a1a1a;
  --muted: #9a9690;
}

* { box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: Georgia, 'Times New Roman', Times, serif;
  margin: 0;
  padding: 0;
}

header.site-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 3rem 2rem 1rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.site-title {
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--text);
}

header.site-header nav a {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  margin: 0 0.75rem;
  letter-spacing: 0.03em;
}
header.site-header nav a:hover { color: var(--text); }

main {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.entries {
  width: 100%;
  max-width: 620px;
}

.entry {
  display: grid;
  grid-template-columns: 90px 1fr;
  column-gap: 2rem;
  padding: 0.5rem 0;
  align-items: baseline;
}
.entry:first-child { padding-top: 0; }

.entry-date {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.8rem;
  color: var(--muted);
  white-space: nowrap;
  padding-top: 0.15rem;
  margin: 0;
}

.entry-title {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

.entry-title a {
  color: var(--text);
  text-decoration: none;
  font-weight: 400;
}
.entry-title a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

footer.site-footer {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.72rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}

@media (max-width: 600px) {
  .entry { grid-template-columns: 1fr; row-gap: 0.3rem; }
}

.social-links {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.3rem;
}

.social-links a {
  color: var(--text);
  /* opacity: 0.6; */
  transition: opacity 0.15s ease;
}

.social-links a:hover {
  opacity: 1;
}

.about-page {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 0;
}

.about-photo img {
  width: 100%;
  max-width: 300px;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.about-bio {
  font-size: 15px;
  line-height: 1.6;
}
