/* =========================
   Modern Retro Theme
   Primary: Avocado Green
   Accent: Burnt Orange
   ========================= */

:root {
  --primary: #568203;        /* Avocado Green */
  --accent: #CC5500;         /* Burnt Orange */
  --background: #f4f1ea;     /* Warm neutral */
  --surface: #ffffff;
  --text-dark: #2b2b2b;
  --text-muted: #6b6b6b;
  --border-soft: #e3dfd6;
}

/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Base Layout */
body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background-color: var(--background);
  color: var(--text-dark);
  line-height: 1.6;
  padding: 2rem;
}

/* Container */
.container {
  max-width: 850px;
  margin: 0 auto;
  background: var(--surface);
  padding: 3rem;
  /* border-radius: 14px; */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Headings */
h1, h2, h3 {
  font-family: "Poppins", "Helvetica Neue", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

h1 {
  color: var(--primary);
  font-size: 2.5rem;
}

h2 {
  color: var(--primary);
  margin-top: 2rem;
}

h3 {
  color: var(--accent);
  margin-top: 1.5rem;
}

/* Paragraphs */
p {
  margin-bottom: 1.2rem;
  color: var(--text-dark);
}

/* Links */
a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Lists */
ul {
  margin: 1rem 0 1rem 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

/* Code Blocks */
pre {
  background: #1f1f1f;
  color: #f4f4f4;
  padding: 1.2rem;
  /* border-radius: 10px; */
  overflow-x: auto;
  margin: 1.5rem 0;
  border-left: 6px solid var(--accent);
}

code {
  font-family: "Fira Code", monospace;
}

/* Inline Code */
p code {
  background: #ece8df;
  padding: 3px 6px;
  /* border-radius: 4px; */
  color: var(--accent);
  font-size: 0.9rem;
}

/* Buttons */
button {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 0.7rem 1.4rem;
  /* border-radius: 8px; */
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

button:hover {
  background-color: var(--accent);
  transform: translateY(-2px);
}

/* Horizontal Rule */
hr {
  border: none;
  border-top: 2px solid var(--border-soft);
  margin: 2rem 0;
}

/* Subtle Retro Accent Line */
header {
  border-bottom: 4px solid var(--primary);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}

/* Footer */
footer {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}
