/*
  The CSS in this style tag is based off of Bear Blog's default CSS.
  https://github.com/HermanMartinus/bearblog/blob/297026a877bc2ab2b3bdfbd6b9f7961c350917dd/templates/styles/blog/default.css
  License MIT: https://github.com/HermanMartinus/bearblog/blob/master/LICENSE.md
 */

html {
	overflow-y: scroll;
	overflow-x: hidden;
}

:root {
	--accent: #2337ff;
	--accent-dark: #000d8a;
	--black: 15, 18, 25;
	--gray: 96, 115, 159;
	--gray-light: 229, 233, 240;
	--gray-dark: 34, 41, 57;
	--gray-gradient: rgba(var(--gray-light), 50%), #fff;
	--box-shadow:
		0 2px 6px rgba(var(--gray), 25%), 0 8px 24px rgba(var(--gray), 33%), 0 16px 32px
		rgba(var(--gray), 33%);

	/* Theme colors - Dark mode (default) */
	--bg-primary: #0d1117;
	--bg-secondary: #161b22;
	--bg-tertiary: #21262d;
	--bg-input: #0d1117;
	--text-primary: #c9d1d9;
	--text-secondary: #8b949e;
	--text-muted: #6e7681;
	--border-color: #30363d;
	--border-light: #484f58;
	--link-color: #58a6ff;
	--link-hover: #79c0ff;
	--accent-green: #7ee787;
	--accent-orange: #ffa657;
	--accent-red: #ff7b72;
	--code-bg: #21262d;
	--scrollbar-track: #0d1117;
	--scrollbar-thumb: #30363d;
	--scrollbar-thumb-hover: #484f58;
}

html.light-mode {
	--bg-primary: #f5f5f7;
	--bg-secondary: #ffffff;
	--bg-tertiary: #e8e8ed;
	--bg-input: #ffffff;
	--text-primary: #1d1d1f;
	--text-secondary: #6e6e73;
	--text-muted: #86868b;
	--border-color: #d2d2d7;
	--border-light: #c7c7cc;
	--link-color: #0066cc;
	--link-hover: #0077ed;
	--accent-green: #34c759;
	--accent-orange: #ff9500;
	--accent-red: #ff3b30;
	--code-bg: #e8e8ed;
	--scrollbar-track: #f5f5f7;
	--scrollbar-thumb: #c7c7cc;
	--scrollbar-thumb-hover: #a1a1a6;
}
@font-face {
	font-family: "Atkinson";
	src: url("/fonts/atkinson-regular.woff") format("woff");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Atkinson";
	src: url("/fonts/atkinson-bold.woff") format("woff");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
body {
	font-family: "Atkinson", sans-serif;
	margin: 0;
	padding: 0;
	padding-top: 32px; /* Account for fixed header */
	text-align: left;
	background: var(--bg-primary);
	word-wrap: break-word;
	overflow-wrap: break-word;
	color: var(--text-primary);
	font-size: 20px;
	line-height: 1.7;
	min-height: 100vh;
	position: relative;
	overflow-x: hidden;
}
main {
	width: 100%;
	max-width: 1400px;
	margin: auto;
	padding: 2em 1em 22em 1em; /* Extra bottom padding for terminal footer */
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.5rem 0;
	color: var(--text-primary);
	line-height: 1.2;
}
h1 {
	font-size: 3.052em;
}
h2 {
	font-size: 2.441em;
}
h3 {
	font-size: 1.953em;
}
h4 {
	font-size: 1.563em;
}
h5 {
	font-size: 1.25em;
}
strong,
b {
	font-weight: 700;
}
a {
	color: var(--link-color);
}
a:hover {
	color: var(--link-hover);
}
p {
	margin-bottom: 1em;
}
.prose p {
	margin-bottom: 2em;
}
textarea {
	width: 100%;
	font-size: 16px;
}
input {
	font-size: 16px;
}
table {
	width: 100%;
}
img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}
code {
	padding: 2px 5px;
	background-color: var(--code-bg);
	color: var(--accent-orange);
	border-radius: 2px;
	font-family: 'Courier New', monospace;
}
pre {
	padding: 1.5em;
	border-radius: 8px;
	background-color: var(--bg-secondary);
	border: 1px solid var(--border-color);
	overflow-x: auto;
}
pre > code {
	all: unset;
	color: var(--text-primary);
}
blockquote {
	border-left: 4px solid var(--accent);
	padding: 0 0 0 20px;
	margin: 0;
	font-size: 1.333em;
}
hr {
	border: none;
	border-top: 1px solid rgb(var(--gray-light));
}
@media (max-width: 720px) {
	body {
		font-size: 18px;
	}
	main {
		padding: 1em;
	}
}

.sr-only {
	border: 0;
	padding: 0;
	margin: 0;
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	/* IE6, IE7 - a 0 height clip, off to the bottom right of the visible 1px box */
	clip: rect(1px 1px 1px 1px);
	/* maybe deprecated but we need to support legacy browsers */
	clip: rect(1px, 1px, 1px, 1px);
	/* modern browsers, clip-path works inwards from each corner */
	clip-path: inset(50%);
	/* added line to stop words getting smushed together (as they go onto separate lines and some screen readers do not understand line feeds as a space */
	white-space: nowrap;
}
