/*
Theme Name: SurvivalPrep
Description: Standalone classic theme for SurvivalPrep.us — simple, minimal header/footer, no page builder or block-editor dependency.
Version: 1.0.0
Author: 559 Digital
*/

:root {
	--sp-bg: #0B0D0C;
	--sp-panel: #1A1C1A;
	--sp-border: #2E302B;
	--sp-text: #F4F1EA;
	--sp-text-muted: #9C9A92;
	--sp-text-faint: #6B6960;
	--sp-accent: #C1272D;
	--sp-font-display: 'Syne', sans-serif;
	--sp-font-mono: 'DM Mono', monospace;
	--sp-font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
	margin: 0;
	padding: 0;
	background: var(--sp-bg);
	color: var(--sp-text);
	font-family: var(--sp-font-body);
}

a { color: var(--sp-accent); }

/* ---------- Site header ---------- */
.sp-site-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	border-bottom: 1px solid var(--sp-border);
	max-width: 1000px;
	margin: 0 auto;
}

.sp-site-logo {
	font-family: var(--sp-font-mono);
	font-size: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--sp-accent);
	text-decoration: none;
}

.sp-site-nav ul {
	list-style: none;
	display: flex;
	gap: 24px;
	margin: 0;
	padding: 0;
}

.sp-site-nav a {
	color: var(--sp-text-muted);
	text-decoration: none;
	font-size: 14px;
}

.sp-site-nav a:hover { color: var(--sp-text); }

/* ---------- Site footer ---------- */
.sp-site-footer {
	max-width: 1000px;
	margin: 48px auto 0;
	padding: 24px;
	border-top: 1px solid var(--sp-border);
	text-align: center;
	font-family: var(--sp-font-mono);
	font-size: 11px;
	color: var(--sp-text-faint);
	line-height: 1.8;
}

/* ---------- Basic blog/index loop ---------- */
.sp-content-wrap {
	max-width: 700px;
	margin: 0 auto;
	padding: 40px 24px;
}

.sp-post-entry {
	margin-bottom: 32px;
	padding-bottom: 32px;
	border-bottom: 1px solid var(--sp-border);
}

.sp-post-entry h2 {
	font-family: var(--sp-font-display);
	font-size: 22px;
	margin: 0 0 8px;
}

.sp-post-entry h2 a { color: var(--sp-text); text-decoration: none; }
.sp-post-entry .sp-post-meta { font-family: var(--sp-font-mono); font-size: 11px; color: var(--sp-text-faint); margin-bottom: 12px; }
.sp-post-entry .sp-post-excerpt { color: var(--sp-text-muted); font-size: 15px; line-height: 1.6; }
