/*
Theme Name: Scrolls
Theme URI: https://scrolls.blog
Author: Hira Barton
Author URI: https://hirabarton.io
Description: A custom minimalist WordPress theme for infrastructure, consulting, and AI/ML services.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: scrolls
Tags: custom-theme, ai, consulting, minimalist, dark-theme
*/

/* Base styles */
html, body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  background: #0c0c0c;
  color: #f4f4f4;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin: 1.2em 0 0.5em;
}

p {
  margin-bottom: 1em;
}

a {
  color: #8cd4ff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

main {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

section {
  margin-bottom: 4rem;
}

code, pre {
  background: #1e1e1e;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: monospace;
}

.author-role {
  font-style: italic;
  color: #999;
}

/* Responsive */
@media (max-width: 768px) {
  main {
    padding: 1rem;
  }
}

