/*!
Theme Name: Watchordr Theme
Theme URI:
Author: Watchordr
Author URI:
Description: Watchordr theme based on Underscores.
Version: 1.0.5
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: watchordr-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Watchordr Theme is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/* ==========================================================================
   CSS Variables
   ========================================================================== */

:root {
	/* Colors */
	--color-bg: #0d0d0d;
	--color-card: #1a1a1a;
	--color-card-hover: #222;
	--color-border: #2d2d2d;
	--color-border-soft: #1f1f1f;
	--color-text: #e5e5e5;
	--color-text-sub: #aaa;
	--color-text-mute: #777;
	--color-accent: #fb923c;
	--color-accent-hover: #ea580c;
	--color-accent-sub: #fbbf24;
	--color-warning: #f59e0b;
	--color-danger: #ef4444;
	--color-success: #10b981;
	--color-info: #3b82f6;

	/* Font */
	--font-base: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		"Helvetica Neue", Arial, sans-serif;
	--font-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		"Helvetica Neue", Arial, sans-serif;

	/* Font sizes */
	--fs-xs: 12px;
	--fs-sm: 14px;
	--fs-base: 16px;
	--fs-md: 18px;
	--fs-lg: 22px;
	--fs-xl: 28px;
	--fs-2xl: 36px;
	--fs-3xl: 48px;

	/* Line heights */
	--lh-tight: 1.3;
	--lh-base: 1.7;
	--lh-loose: 1.9;

	/* Font weights */
	--fw-normal: 400;
	--fw-medium: 500;
	--fw-semibold: 600;
	--fw-bold: 700;

	/* Spacing */
	--space-1: 4px;
	--space-2: 8px;
	--space-3: 12px;
	--space-4: 16px;
	--space-5: 24px;
	--space-6: 32px;
	--space-8: 48px;
	--space-10: 64px;
	--space-12: 80px;
	--space-16: 120px;

	/* Containers */
	--container-max: 800px;
	--container-archive: 1100px;
}

/* ==========================================================================
   Reset
   ========================================================================== */

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

body {
	background: var(--color-bg);
	color: var(--color-text);
	font-family: var(--font-base);
	font-size: var(--fs-base);
	line-height: var(--lh-base);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--color-accent);
	text-decoration: none;
}

a:hover {
	color: var(--color-accent-hover);
	text-decoration: underline;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1 {
	font-size: var(--fs-2xl);
	font-weight: var(--fw-bold);
	line-height: var(--lh-tight);
	margin-bottom: var(--space-5);
}

h2 {
	font-size: var(--fs-xl);
	font-weight: var(--fw-semibold);
	line-height: var(--lh-tight);
	margin-bottom: var(--space-4);
}

h3 {
	font-size: var(--fs-lg);
	font-weight: var(--fw-semibold);
	line-height: var(--lh-tight);
	margin-bottom: var(--space-4);
}

h1, h2, h3 {
	font-family: var(--font-display);
	letter-spacing: -0.01em;
}
