/*
 * Theme styling
 */
:root {
	--mesker-primary: #105847;
	--mesker-accent: #ff00ff;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	font-family: sans-serif;
	font-size: 1.125rem;
	margin: 0;
}

div {
	display: block;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
}

p {
	margin-top: 0;
}

a {
	color: var(--mesker-accent);
	display: inline-block;
	text-decoration: none;
}

a:focus-visible {
	outline: 2px solid var(--mesker-accent);
	outline-offset: 3px;
}

button {
	cursor: pointer;
}

button:focus-visible {
	outline: 2px solid var(--mesker-accent);
	outline-offset: 3px;
}

.btn {
	border: 2px solid var(--mesker-primary);
	color: var(--mesker-primary);
	display: inline-block;
	font-weight: 600;
	padding: 1rem 1.5rem;
	text-transform: uppercase;
	transition: 0.25s ease-in-out;
}

.btn:hover {
	background-color: var(--mesker-primary);
	color: #fff;
}

.container {
	margin-left: auto;
	margin-right: auto;
	max-width: 1180px;
	padding-left: 16px;
	padding-right: 16px;
	width: 100%;
}

/*
 * Header
 */
.header {
	background-color: var(--mesker-primary);
	color: #fff;
	padding: 1rem 0;
}

.header-inner {
	align-items: center;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
}

.site-name {
	color: #fff;
	font-size: 1.25rem;
	font-weight: 700;
}

.header-nav ul {
	display: flex;
	gap: 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.header-nav a {
	color: #fff;
	font-size: 0.9375rem;
}

.header-nav a:hover {
	color: var(--mesker-accent);
}

/*
 * Footer
 */
.footer {
	background-color: var(--mesker-primary);
	color: #fff;
	padding: 2rem 0;
}

.copyright {
	font-size: 0.875rem;
	margin: 0;
}
