/*
Theme Name: GreenbayTech
Description: Child theme for the GreenbayTech Industrial Park website.
Author: GreenbayTech
Template: twentytwentyfive
Version: 1.0.0
Text Domain: greenbaytech
*/

html,
body {
	margin: 0;
	padding: 0;
}

.wp-site-blocks,
.wp-block-group,
main#wp--skip-link--target {
	padding: 0 !important;
	margin: 0 !important;
}

.wp-block-html {
	display: contents;
}

/* :root {
	--gbt-green: #005b4c;
	--gbt-green-dark: #00483d;
	--gbt-gold: #b5a16b;
	--gbt-text: #20332f;
}

* {
	box-sizing: border-box;
}

.gbt-topbar {
	position: relative;
	z-index: 100;
	width: 100%;
	background: #fff;
	box-shadow: 0 1px 0 rgba(0, 67, 56, 0.08);
}

.gbt-topbar__inner {
	display: grid;
	grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
	align-items: stretch;
	width: min(100% - 48px, 1440px);
	min-height: 72px;
	margin: 0 auto;
	gap: clamp(18px, 3vw, 52px);
}

.gbt-brand {
	display: inline-flex;
	align-items: center;
	justify-self: start;
	color: var(--gbt-green);
	text-decoration: none;
	white-space: nowrap;
}

.gbt-brand__name {
	font-size: 17px;
	font-weight: 800;
	letter-spacing: -0.03em;
}

.gbt-brand__tagline {
	margin-left: 9px;
	padding-left: 9px;
	border-left: 1px solid #d8ddd9;
	color: #8a918e;
	font-size: 7px;
	font-weight: 600;
	line-height: 1.45;
	letter-spacing: 0.28em;
	text-transform: uppercase;
}

.gbt-nav {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: clamp(20px, 2.6vw, 42px);
}

.gbt-nav__link {
	position: relative;
	display: flex;
	align-items: center;
	color: var(--gbt-text);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.45;
	text-align: center;
	text-decoration: none;
	transition: color 180ms ease;
}

.gbt-nav__link::after {
	position: absolute;
	right: 0;
	bottom: 12px;
	left: 0;
	height: 1px;
	background: var(--gbt-gold);
	content: "";
	opacity: 0;
	transform: scaleX(0.4);
	transition: opacity 180ms ease, transform 180ms ease;
}

.gbt-nav__link:hover,
.gbt-nav__link:focus-visible,
.gbt-nav__link[aria-current="page"] {
	color: var(--gbt-green);
}

.gbt-nav__link:hover::after,
.gbt-nav__link:focus-visible::after,
.gbt-nav__link[aria-current="page"]::after {
	opacity: 1;
	transform: scaleX(1);
}

.gbt-topbar__action {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	justify-self: end;
	align-self: stretch;
	width: min(100%, 190px);
	padding: 0 22px;
	background: var(--gbt-green);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: 0.03em;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 180ms ease;
}

.gbt-topbar__action:hover,
.gbt-topbar__action:focus-visible {
	background: var(--gbt-green-dark);
	color: #fff;
}

.gbt-topbar__action span:last-child {
	font-size: 19px;
	font-weight: 300;
	line-height: 1;
}

.gbt-mobile-nav {
	display: none;
}

@media (max-width: 1180px) {
	.gbt-topbar__inner {
		grid-template-columns: auto 1fr auto;
		width: min(100% - 32px, 1200px);
		gap: 22px;
	}

	.gbt-nav {
		gap: 20px;
	}

	.gbt-nav__link {
		font-size: 12px;
	}

	.gbt-brand__tagline {
		display: none;
	}
}

@media (max-width: 900px) {
	.gbt-topbar__inner {
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: 66px;
	}

	.gbt-nav,
	.gbt-topbar__action {
		display: none;
	}

	.gbt-mobile-nav {
		position: relative;
		display: block;
	}

	.gbt-mobile-nav summary {
		display: grid;
		width: 42px;
		height: 42px;
		cursor: pointer;
		list-style: none;
		place-items: center;
	}

	.gbt-mobile-nav summary::-webkit-details-marker {
		display: none;
	}

	.gbt-mobile-nav__icon,
	.gbt-mobile-nav__icon::before,
	.gbt-mobile-nav__icon::after {
		display: block;
		width: 24px;
		height: 2px;
		background: var(--gbt-green);
		content: "";
	}

	.gbt-mobile-nav__icon {
		position: relative;
	}

	.gbt-mobile-nav__icon::before {
		position: absolute;
		top: -7px;
	}

	.gbt-mobile-nav__icon::after {
		position: absolute;
		top: 7px;
	}

	.gbt-mobile-nav__panel {
		position: absolute;
		top: 54px;
		right: 0;
		display: flex;
		flex-direction: column;
		width: min(320px, calc(100vw - 32px));
		padding: 16px;
		background: #fff;
		box-shadow: 0 16px 40px rgba(0, 45, 37, 0.16);
	}

	.gbt-mobile-nav__panel a {
		padding: 12px 8px;
		border-bottom: 1px solid #edf0ee;
		color: var(--gbt-text);
		font-size: 14px;
		text-decoration: none;
	}

	.gbt-mobile-nav__panel a:last-child {
		margin-top: 12px;
		border: 0;
		background: var(--gbt-green);
		color: #fff;
		font-weight: 700;
		text-align: center;
		text-transform: uppercase;
	}
}

@media (max-width: 480px) {
	.gbt-topbar__inner {
		width: calc(100% - 24px);
	}

	.gbt-brand__name {
		font-size: 15px;
	}
} */
