:root {
	--clr-primary: #ff6600;

	--clr-ui-000: #f9f9f9;
	--clr-ui-100: #efefef;
	--clr-ui-200: #cccccc;
	--clr-ui-300: #999999;
	--clr-ui-400: #666666;
	--clr-ui-500: #555555;
	--clr-ui-600: #444444;
	--clr-ui-700: #252525;
	--clr-ui-800: #000000;
}

body {
	font-family: Noto-Sans, system-ui, sans-serif;
	font-size: 1.2rem;
	color: var(--clr-ui-700);

	margin: 0;
	padding: 0;

	background-image: url(/assets/img/back_maz-dots.svg);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: left bottom;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 1rem;
	text-wrap: balance;
}

p {
	margin: 1rem;
	text-wrap: pretty;
}

h2 {
	color: var(--clr-primary);
	font-weight: 100;
	font-size: 2.5rem;
	text-wrap: balance;
}

hr {
	border: 0;
	border-top: 1px solid #ffffff;
}

table {
	width: calc(100% - 2rem);
	border-collapse: collapse;
	border: 0;
	margin: 1rem;
	border-top: 1px solid var(--clr-ui-200);
}

table tr td,
table tr th {
	text-align: left;
	padding: 0.75rem;
	border-bottom: 1px solid var(--clr-ui-200);
	border-right: 1px solid var(--clr-ui-200);
}

table tr td:last-of-type,
table tr th:last-of-type {
	text-align: right;
	border-right: 0px;
}

table thead th {
	background-color: var(--clr-ui-100);
}

a {
	color: var(--clr-ui-500);
	transition: color 250ms ease-in;
}

a:hover {
	color: var(--clr-primary);
}

/* Site Structure */

.site-shell {
	display: flex;
	flex-direction: column;
	gap: 2rem;

	min-height: 100dvh;
}

header {
	padding: 1rem;
}

main {
	display: grid;
	grid-template-columns: 1fr 4fr;
	gap: 0;

	max-width: 1440px;
	margin-inline: auto;
	padding-top: 4rem;
	padding-inline: 1rem;
	flex: 1;
}

section {
	padding: 1rem;
}

aside {
	border-right: 1px solid var(--clr-ui-200);
	padding-inline: 1rem;
	min-width: 240px;
}

footer {
	display: grid;
	grid-template-columns: 3fr 1fr;
	align-items: center;

	background-color: rgba(0, 0, 0, 0.05);
	padding: 1rem;
	margin-top: auto;

	font-size: 0.75rem;
}

footer .footer-content--logo a {
	display: block;
	max-width: 160px;
	margin-left: auto;
	margin-right: 1rem;
}

/* Navigation */

nav ul {
	list-style: none;
	padding: 0;
	margin: 1rem;
}

nav ul li {
	padding: 0;
	margin: 0;
}

nav ul li a {
	text-decoration: none;
}

.menu--side {
}

.menu--side li a {
	display: block;
	padding: 0.5rem 0;
	font-size: 1rem;
	color: var(--clr-ui-300);
}

.menu--side li a:hover {
	color: var(--clr-ui-800);
}

.menu--footer {
	max-width: 1440px;
	margin-inline: auto;
	margin-block: 1rem;
	padding-inline: 2rem;
}

.menu--footer ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}

/* Content */
.logo--main {
	position: sticky;
	top: 65px;
}

.doc-group {
	border-left: 3px solid var(--clr-primary);
	margin-left: 1rem;
	margin-bottom: 2rem;
}

.file-desc {
	display: block;
	font-size: 0.8rem;
	color: var(--clr-ui-300);
}

/* UI Elements */
.btn-group {
	display: flex;
	gap: 0.25rem;
	justify-content: flex-end;
}

.btn {
	display: inline-block;
	background-color: var(--clr-ui-700);
	color: #ffffff;

	padding: 0.5rem 2rem;
	border-radius: 100vw;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 1rem;

	transition: all 250ms ease-in;
}

.btn:hover {
	background-color: var(--clr-primary);
	color: #ffffff;
}

.btn__outline {
	background-color: transparent;
	color: var(--clr-ui-500);
	border: 1px solid currentColor;
}

.btn__outline:hover {
	background-color: transparent;
	color: var(--clr-primary);
}

form {
	margin: 2rem 1rem;
}

form fieldset {
	border: 1px solid var(--clr-primary);
	padding: 1rem;
}

form fieldset legend {
	background-color: var(--clr-primary);
	color: #ffffff;
	text-transform: uppercase;
	padding: 0.5px 1rem;
}

form label {
	display: block;
	margin: 1rem;
}

form input[type="text"],
form input[type="email"],
form input[type="password"] {
	border: 1px solid var(--clr-ui-200);
	display: block;
	width: 100%;
	padding: 0.5rem;
	margin-block: 0.25rem;
}

form input[type="text"]:focus-within,
form input[type="email"]:focus-within,
form input[type="password"]:focus-within {
	border: 1px solid var(--clr-primary);
	outline: 0;
}

form input[type="button"],
form input[type="submit"] {
	border: 0;
}

.text__callout {
	color: var(--clr-primary);
}

.text__ghost {
	color: var(--clr-ui-200);
}

.text__sml {
	font-size: 0.8rem;
}

@media only screen and (max-width: 1024px) {
	/*------- 1024 & Under ------- */
}

@media only screen and (max-width: 768px) {
	/*------- 768 & Under ------- */
	main,
	footer {
		grid-template-columns: 1fr;
		text-align: center;
	}

	aside {
		border-right: 0;
	}

	.doc-group {
		border-left: 0;
		margin-left: 0;
	}

	.footer-content--logo {
		margin-left: unset;
		margin-inline: auto;
	}

	.logo--main {
		max-width: 200px;
		margin-inline: auto;
	}

	.doc-group {
		text-align: center;
	}

	.menu--footer ul {
	}
}

@media only screen and (max-width: 480px) {
	/*------- 480 & Under ------- */
	table tr td {
		display: block;
		width: 100%;
		text-align: center;
		border-right: 0;
		border-bottom: 0;
	}

	table tr td:last-of-type {
		text-align: center;
		border-bottom: 1px solid var(--clr-ui-200);
	}

	.btn-group {
		flex-direction: column;
	}
}
