/* ----------  Solarized-Dark theme (Vim nod)  ---------- */
:root {
  /* base palette */
  --base03: #002b36;   /* page background */
  --base02: #073642;
  --base01: #586e75;
  --base00: #657b83;
  --base0:  #839496;   /* body text */
  --base1:  #93a1a1;
  --base2:  #eee8d5;
  --base3:  #fdf6e3;   /* headings */

  /* accents */
  --yellow: #b58900;   /* link (Solarized Yellow) */
  --orange: #cb4b16;   /* hover / focus */
  --blue:   #268bd2;   /* list-bullet & misc accent */
}

/* ----------  Global layout ---------- */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               Helvetica, Arial, sans-serif;
  line-height: 1.6;
  max-width: 800px;    /* keeps content centered, unchanged */
  margin: 0 auto;
  padding: 2rem;
  background: var(--base03);
  color: var(--base0);
}

/* ----------  Header ---------- */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

h1 {
  margin: 0;
  color: var(--base3);   /* bright ivory headings for pop */
}

/* ----------  Profile image ---------- */
.profile-pic {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  object-fit: cover;
}

/* ----------  Paragraphs ---------- */
p { margin: 1rem 0; }

/* ----------  Links ---------- */
a,
a:visited {
  color: var(--yellow);
  text-decoration: none;
  text-underline-offset: 2px;
  text-decoration-thickness: 2px;
}
a:hover,
a:focus {
  color: var(--orange);
  text-decoration: underline;
}

/* ----------  Lists ---------- */
ul { padding-left: 1.5rem; }
li { margin-bottom: 0.5rem; }
ul li::marker { color: var(--blue); }   /* blue bullets */

/* ----------  Blockquotes ---------- */
blockquote {
  border-left: 4px solid var(--blue);
  margin-left: 0;
  padding-left: 1em;
  color: var(--base1);
}

/* ----------  Code & Preformatted ---------- */
code,
pre {
  background: var(--base02);
  color: var(--base1);
  border-radius: 4px;
  font-family: SFMono-Regular, Consolas, "Liberation Mono",
               Menlo, monospace;
}
code { padding: 0.15em 0.35em; }
pre  { padding: 0.9em 1.1em; overflow-x: auto; }
