/*
Theme Name: Terminal Showcase
Theme URI: https://chris-reading.co.uk/
Description: A minimalist, high-contrast, terminal-inspired theme for backend and systems engineers.
Version: 1.0.0
Author: Andy
Author URI: https://chris-reading.co.uk/
License: GNU General Public License v2 or later
*/

/* --- Reset & Variables --- */
:root {
    --bg-color: #121316;
    --text-main: #f0f1f4;
    --text-muted: #8a8d96;
    --terminal-green: #4AF626;
    --border-color: #2e3036;
    --font-mono: 'Fira Code', 'JetBrains Mono', 'Courier New', monospace;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    padding: 2rem 1.5rem;
}

/* --- Layout Container --- */
.container {
    max-width: 850px;
    margin: 0 auto;
}

/* --- Typography & Elements --- */
h1, h2, h3, .mono {
    font-family: var(--font-mono);
}

h1 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #fff;
}

h2 {
    font-size: 1.2rem;
    text-transform: uppercase;
    color: #fff;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 0.5rem;
    margin: 3.5rem 0 1.5rem 0;
    letter-spacing: 1px;
}

h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-main);
}

.muted-text {
    color: var(--text-muted);
}

/* --- Links & Tags --- */
a {
    color: var(--terminal-green);
    text-decoration: none;
}

a:hover {
    color: #fff;
    text-decoration: underline;
    background-color: rgba(74, 246, 38, 0.08);
}

.tags {
    margin-top: 0.75rem;
}

.tag {
    font-family: var(--font-mono);
    color: var(--terminal-green);
    font-size: 0.85rem;
    margin-right: 0.75rem;
    display: inline-block;
}

/* --- Header & Nav --- */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.site-title {
    font-weight: 600;
    font-size: 1rem;
}

.site-nav a {
    margin-left: 1.5rem;
    font-size: 0.9rem;
}

/* --- Prompt Accent --- */
.prompt {
    color: var(--terminal-green);
    margin-bottom: 0.5rem;
    user-select: none;
}

/* --- Project Block --- */
.project-block {
    margin-bottom: 2.5rem;
}

/* --- Grid System for Specs --- */
.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.specs-column ul {
    list-style-type: "↳ ";
    padding-left: 1.25rem;
    color: var(--text-main);
}

.specs-column li {
    margin-bottom: 0.5rem;
}

.specs-column strong {
    font-family: var(--font-mono);
    color: #fff;
    font-size: 0.95rem;
}

/* --- Responsive Layout --- */
@media (max-width: 600px) {
    .site-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .site-nav a {
        margin-left: 0;
        margin-right: 1.5rem;
    }
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
