/* === Coffee Theme — Minimal, Cozy, No Layout Junk === */

body {
  font-family: Georgia, "Times New Roman", serif;
  background-color: #f8f5f2; /* latte cream */
  color: #3b2f2f; /* espresso brown */
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

/* Headings */
h1, h2, h3, h4 {
  color: #4a2f1b; /* roasted coffee */
  font-weight: 700;
}

/* Links */
a {
  color: #7a4f2c; /* mocha */
  text-decoration: none;
}
a:hover {
  color: #a15e33;
  text-decoration: underline;
}

/* Horizontal lines */
hr {
  border: none;
  border-top: 1px solid #c2a78b;
  margin: 2rem 0;
}

/* Code blocks and inline code */
code {
  background: #eee2d5; /* cappuccino foam */
  padding: 2px 5px;
  border-radius: 4px;
}

/* Lists */
ul, ol {
  padding-left: 20px;
}

/* Blockquotes */
blockquote {
  border-left: 4px solid #c2a78b;
  margin-left: 0;
  padding-left: 12px;
  color: #5a4636;
  font-style: italic;
  background: #faf4ee;
}

/* Images */
img {
  max-width: 100%;
  border-radius: 4px;
}
