/*
Theme Name: SBL Terminal
Theme URI: https://shirtbrotherlabs.com
Author: Shirt Brother Labs
Description: Minimal landing-page block theme with a terminal aesthetic. No blog, no comments.
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 7.4
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sbl-terminal
Tags: one-column, block-patterns, full-site-editing, custom-colors
*/

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,400;0,500;0,700;1,400&display=swap');

/* Scanline overlay for CRT-terminal feel */
body::before {
	content: '';
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 9999;
	background: repeating-linear-gradient(
		0deg,
		transparent,
		transparent 2px,
		rgba(0, 0, 0, 0.03) 2px,
		rgba(0, 0, 0, 0.03) 4px
	);
}

/* Terminal window chrome */
.sbl-terminal-window {
	border: 1px solid var(--wp--preset--color--border);
	box-shadow:
		0 0 0 1px rgba(0, 255, 136, 0.05),
		0 24px 48px rgba(0, 0, 0, 0.45);
}

.sbl-terminal-bar {
	border-bottom: 1px solid var(--wp--preset--color--border);
}

.sbl-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	display: inline-block;
}

.sbl-dot--red { background: #ff5f57; }
.sbl-dot--yellow { background: #febc2e; }
.sbl-dot--green { background: #28c840; }

/* Status grid cells */
.sbl-status-cell {
	border: 1px solid var(--wp--preset--color--border);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sbl-status-cell:hover {
	border-color: var(--wp--preset--color--accent);
	box-shadow: 0 0 12px rgba(0, 255, 136, 0.12);
}

/* Links */
a {
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

a:hover {
	color: var(--wp--preset--color--accent-bright) !important;
}
