/**
 * Shravn.com-inspired theme (Hugo Console / Terminal CSS)
 * Dark terminal aesthetic
 */
:root {
  --background-color: #0a0a0a;
  --font-color: #e0e0e0;
  --invert-font-color: #0a0a0a;
  --primary-color: #00d26a;
  --secondary-color: #6b7280;
  --tertiary-color: #4b5563;
  --font-stack: "Menlo", "Monaco", "Lucida Console", "Liberation Mono", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Courier New", monospace;
  --mono-font-stack: "Menlo", "Monaco", "Lucida Console", "Liberation Mono", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Courier New", monospace;
  --global-font-size: 15px;
  --global-line-height: 1.6;
  --code-bg-color: #1a1a1a;
  --block-background-color: #141414;
  --progress-bar-background: #333;
  --progress-bar-fill: #00d26a;
  --error-color: #ef4444;
}

body {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

@media (max-width: 640px) {
  body {
    padding: 1rem 0.75rem;
  }
}

/* Console prompt style for nav */
.console-prompt::before {
  content: "josh@jobscout:~$ ";
  color: var(--primary-color);
}

/* Links: parenthetical style like shravn */
a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Section headers */
h1, h2 {
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

h1 { font-size: 1.25rem; }
h2 { font-size: 1rem; }
