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

html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
}

.site-wrapper {
	text-align: center;
	background-color: #EFF0C7;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.main {
	flex: 1;
}

/* ── Header ───────────────────────────────────────────────────────────────── */
.header {
	background-color: #EFF0C7;
	border: 3px solid #000;
	position: fixed;
	margin-left: 2.5%;
	margin-top: 1rem;
	width: 95%;
	height: 5.4rem;
	padding: 10px 10px 10px 0;
	transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	z-index: 1000;
}

@media screen and (min-width: 1024px) {
	.header {
		margin-left: 12.5%;
		margin-top: 2rem;
		width: 75%;
		height: 6rem;
		padding: 10px 40px 10px 5px;
	}
}

.expanded-header {
	padding: 20px 15px;
	margin-left: 0;
	margin-top: 0;
	width: 100%;
	height: 6.5rem;
	border-radius: 0;
}

.logoimg {
	width: 100px;
	height: 100px;
}

.header a {
	text-decoration: none;
}

.header h1 {
	font-family: "Oswald", Arial, sans-serif;
	color: black;
}

.nav-highlight:hover {
	color: #88D498;
}

.header-content {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.nav-menu-content {
	overflow: hidden;
	background-color: #EFF0C7;
	border-radius: 15px;
	min-width: 90%;
	transform: translateY(-10px);
	padding: 5% 0;
	opacity: 0;
	pointer-events: none;
	transition: transform 0.4s ease, opacity 0.4s ease;
}

.expanded-menu {
	min-width: 100%;
}

.nav-menu-content h1 {
	font-size: 100%;
	margin-bottom: 1rem;
}

.header-content p {
	width: 135px;
	flex-shrink: 0;
	line-height: 1.2;
}

.header input {
	display: none;
}

.header input:checked ~ .nav-menu-content {
	transform: translateY(0px);
	opacity: 1;
	pointer-events: auto;
}

.highlight {
	color: #1F3F00;
	font-weight: bold;
	font-size: 1.2rem;
}

.header-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: clamp(0.5rem, 1.5vw, 2rem);
	margin-left: auto;
	margin-right: auto;
	font-size: 0.5rem;
	flex: 1;
	min-width: 0;
	overflow: hidden;
}

.header-nav h1 {
	font-size: clamp(0.7rem, 1.2vw, 1rem);
	white-space: nowrap;
}

.header-button {
	background-color: #1F3F00;
	border: 3px solid #000;
	box-shadow: 5px 5px #000;
	color: white;
	text-align: center;
	margin-left: auto;
	font-size: 1rem;
	font-weight: bold;
	white-space: nowrap;
	flex-shrink: 0;
	padding: 0 clamp(0.8rem, 2vw, 1.5rem);
	height: 3rem;
	cursor: pointer;
}

.header-button:hover {
 	transform: translate(-2px, -2px);
	box-shadow: 7px 7px 0 0 #000;
}

.nav-menuButton {
	border: 3px solid #000;
	box-shadow: 5px 5px #000;
	background-color: #1F3F00;
	color: #EFF0C7;
	margin-left: auto;
	font-size: 2.3rem;
	font-weight: bold;
	width: 3rem;
	height: 3rem;
	cursor: pointer;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.footer {
	background-image: linear-gradient(to bottom right, #1D3A02, #1F3F00, #3B7500);
	width: 100%;
}

.footer-divider {
	width: 100%;
	height: 2px;
	background: linear-gradient(to right, transparent, black, transparent);
}

.footer-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.8rem 2.5rem;
	gap: 1rem;
	position: relative;
}

.footer-nav {
	display: flex;
	flex-direction: row;
	gap: clamp(0.5rem, 1.5vw, 2rem);
	flex: 1;
	overflow: hidden;
}

.footer-nav a {
	text-decoration: none;
	color: #EFF0C7;
}

/* Copyright */
.footer-copy {
	font-family: "Oswald", Arial, sans-serif;
	font-size: 0.7rem;
	letter-spacing: 1px;
	color: #EFF0C7;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
}

/* Business branding */
.footer-brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-direction: row-reverse;
	text-decoration: none;
}

.footer-logo {
	width: 42px;
	height: 42px;
	object-fit: contain;
	opacity: 0.85;
	transition: opacity 0.2s ease;
	filter: brightness(0) saturate(100%) invert(90%) sepia(50%) saturate(500%) hue-rotate(20deg) brightness(185%) contrast(90%);
}

.footer-brand:hover .footer-logo {
	opacity: 1;
}

.footer-brand-name {
	font-family: "Oswald", Arial, sans-serif;
	font-size: 0.8rem;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #EFF0C7;
	transition: color 0.2s ease;
}

.footer-brand:hover .footer-brand-name {
	opacity: 0.7;
}

/* Responsive */
@media screen and (max-width: 768px) {
	.footer-content {
		flex-direction: column;
		align-items: center;
		padding: 1.5rem 1rem;
		gap: 1.2rem;
	}

	.footer-copy {
		position: static;
		transform: none;
	}

	.footer-social {
		align-items: center;
	}

	.footer-brand {
		flex-direction: column;
	}
}