@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif&family=Inter:wght@400;600&display=swap');

/* Base Structure */
body {
  font-family: 'IBM Plex Serif', serif;
  background: linear-gradient(to bottom, #f3f2ee, #eae7df);
  color: #1c1c1c;
  max-width: 760px;
  margin: 2rem auto;
  padding: 0 1.5rem;
  line-height: 1.75;
  font-size: 18px;
  text-rendering: optimizeLegibility;
}

/* Header Styling */
header {
  text-align: center;
  margin-bottom: 2rem;
}

header h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 2.5rem;
  margin-bottom: 0.25rem;
  color: #222;
  letter-spacing: -0.5px;
  text-shadow: 1px 1px 0 #ccc;
}

header p {
  font-family: 'Inter', sans-serif;
  color: #555;
  margin-top: 0;
  font-size: 1rem;
  letter-spacing: 0.3px;
}

/* Footer Styling */
footer {
  font-size: 0.9rem;
  color: #666;
  margin-top: 4rem;
  border-top: 1px solid #ddd;
  padding-top: 1.5rem;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

/* Navigation */
nav ul {
  list-style-type: none;
  padding: 0;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

nav li {
  display: inline-block;
  margin: 0.4rem 1rem;
}

a {
  color: #00394d;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px dotted #bbb;
}

a:hover {
  color: #111;
  background: #dfe9ed;
  border-bottom: 1px solid #00394d;
}

/* Typography */
h2, h3 {
  font-family: 'Inter', sans-serif;
  color: #3b2e14;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.5rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.25rem;
}

h3 {
  font-size: 1.2rem;
  color: #5a4632;
}

p {
  margin-bottom: 1.5rem;
  text-align: justify;
}

blockquote {
  margin: 2rem 0;
  padding-left: 1.2rem;
  border-left: 4px solid #a89060;
  font-style: italic;
  color: #5d4d3a;
  background: #f8f5ef;
  padding: 1rem;
}

hr {
  border: none;
  border-top: 1px dashed #bbb;
  margin: 2.5rem 0;
}

/* Extras */
code {
  font-family: monospace;
  background: #eee;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  color: #333;
}

.section-title {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: #a68c5d;
  margin-top: 3rem;
  margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 600px) {
  body {
    font-size: 16px;
    padding: 1rem;
  }

  header h1 {
    font-size: 2rem;
  }
}