/* reset */

*,
::before,
::after {
	box-sizing: border-box;
	background-repeat: no-repeat;
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline; /* consider middle */
	font-family: inherit;
	color: inherit;
	line-height: 1;
}

[hidden] {
	display: none !important;
}

::before,
::after {
	text-decoration: inherit;
	vertical-align: inherit;
}

:where(:root) {
	line-height: 1;
	overflow-wrap: break-word;
	tab-size: 4;
}

@font-face {
	font-family: 'charter';
	src: url('/fonts/charter_bold-webfont.woff') format('woff');
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: 'charter';
	src: url('/fonts/charter_regular-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'courgette';
	src: url('/fonts/Courgette-Regular.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
}


@font-face {
	font-family: 'Quicksand';
	font-style: normal;
	font-weight: 300 700;
	src: url('/fonts/Quicksand-webfont.woff2') format('woff2');
}


p {
	line-height: 1.5;
}

:where(ol, ul) {
	list-style-type: none;
	display: flex;
	flex-flow: column nowrap;
	row-gap: 0.5rem;
}

li {
	display: flex;
	align-items: center;
}

:where(pre) {
	font-family: monospace;
	font-size: 1rem;
	overflow: auto;
}

:where(audio, canvas, iframe, img, svg, video) {
	vertical-align: middle;
}

:where(svg:not([fill])) {
	fill: currentColor;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

a:active, a:hover, a:focus {
	color: inherit;
}

/* better defaults */

body {
	min-height: 100vh;
	min-height: 100svh;
	font-family: system-ui, sans-serif;
}

main {
	padding-inline: 2rem;
}

header {
	position: relative;
	max-height: 25rem;
	padding: 1rem;
}


/* theme */
:root {
	--mid-green: rgb(57, 132, 117);
	--dark-purple: rgb(88, 33, 116);
	--light-green: rgb(157, 207, 160);
	--dark-green: rgb(29, 48, 44);
	--light-grey: rgb(239, 245, 244);
	--light-purple: rgb(198, 149, 198);
	--pale-purple: rgb(246, 220, 246);
	--pale-green: rgb(220,255,230);
}


/* content, shared */

html {
	background-color: var(--light-green);
}

header {
	background-color: var(--light-grey);
	align-self: flex-start;
}

header img {
	display: block;
	width: min(100%, 50rem);
	margin-inline: auto;
}

nav {
	background-color: var(--light-grey);
	display: flex;
	flex-flow: row;
	justify-content: center;
	column-gap: 2rem;
	padding: 1rem 4rem 1rem 4rem;
	font-size: 1.5rem;
	font-family: Quicksand, sans-serif;
	font-weight: 500;
	position: sticky;
	top: 0;
	z-index: 100;
}

nav a {
	text-decoration: none;
	padding-bottom: 0.25rem;
}

nav a.current {
	border-bottom: 2px solid var(--dark-green);
	pointer-events: none;
	cursor: default;
}

img.emoji {
	width: 1.75em;
}

p {
	max-width: 50rem;
}

section {
	display: flex;
	flex-flow: column;
	align-items: center;
	color: var(--dark-green);
}

.dark {
	background-color: var(--dark-green);
	color: var(--pale-green);
}

section.dark {
	margin-inline: -2rem;
	padding: 2rem;
	margin-block: 2rem;
}

.row {
	display: flex;
	flex-flow: row nowrap;
	column-gap: 2rem;
	justify-content: space-evenly;
}

.column {
	display: flex;
	flex-flow: column;
	row-gap: 2rem;
}


*:has(> .sub) {
	position: relative;
	padding-bottom: 1.5rem;
}

.sub {
	position: absolute;
	bottom: -0.5rem;
	transform: translateY(-100%);
	left: 0;
	right: -2rem;
	font-size: 80%;
}

.nowrap {
	display: inline-block;
}

.images {
	display: grid;
	column-gap: 2rem;
	row-gap: 2rem;
	grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
	max-width: 100%;
	margin-block: 1rem;
}

@media(max-width: 24rem) {
	.images {
		grid-template-columns: 1fr;
	}
}

.images img {
	width: 100%;
	height: 100%;
	max-height: 20rem;
	border: 1px solid var(--dark-green);
}

/* home page */

.banner {
	margin-inline: -2rem;
	height: 18rem;
	background-image: var(--bg-img);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center 40%;
}

.banner.eggplants {
	background-position: center;
	background-size: contain;
	background-repeat: repeat-x;
	height: 15rem;
}

@media(max-width: 45rem) {
	.banner.eggplants {
		height: 0rem;
		padding-top: 40%;
	}
}

.blurb {
	min-height: 7rem;
	display: flex;
	flex-flow: row;
	align-items: center;
	justify-content: center;
	background-color: var(--light-purple);
	margin: -2rem;
	margin-top: 0rem;
	padding: 2rem;
	font-size: max(3vw, 1.5rem);
}

.blurb p {
	margin: 0;
	font-size: inherit;
	font-style: italic;
	max-width: none;
	color: black;
	text-align: center;
	margin-inline: 1rem;
}

.info {
	row-gap: 2rem;
}

.hours {
	row-gap: 0rem;
	align-items: center;
}

.hours p {
	margin-block: 0rem;
}

.location p {
	margin-block: 0rem;
	display: block;
	text-indent: -6.5rem;
	margin-left: 6.5rem;
}

.location p .sub {
	left: 6.5rem;
}

@media(max-width: 25rem) {
	.location p .sub {
		left: 0;
		right: 0;
		text-align: center;
	}
}

/* about page */

.profile {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	flex-flow: row wrap;
	align-items: center;
	justify-content: space-evenly;
	column-gap: 2rem;
	place-items: center;
}

.profile .profile_image {
	width: min(100%, 35rem);
}

.profile .description {
	padding: 2rem 4rem;
	max-width: 35rem;
	color: var(--dark-green);
}

.profile .description p {
	margin-block: 0.5rem;
}


@media (max-width: 800px) {
	.profile {
		grid-template-columns: 1fr;
	}

	.profile .description {
		padding-inline: 0rem;
		padding-bottom: 0.5rem;
	}
}


@media (min-width: 800px) {
	.profile:nth-child(2n) .profile_image {
		order: 1;
	}

	.profile:nth-child(2n) .description {
		order: 2;
	}
}


.profile .description .name {
	font-size: 1.5rem;
	color: var(--dark-purple);
	font-family: Quicksand, sans-serif;
}

.profile:nth-child(2n) {
	flex-flow: row-reverse;
}


section.reports {
	display: flex;
	flex-flow: column;
	align-items: center;
	row-gap: 2rem;
	margin-inline: -2rem;
	margin-top: -2rem;
	padding-block: 4rem;
	background-color: var(--mid-green);
	color: white;
	margin-bottom: 4rem;
	font-family: Quicksand, sans-serif;
}

section.reports h1 {
	font-size: 2.5rem;
	font-weight: bold;
	text-align: center;
}

section.reports ul {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fit, 10rem);
	justify-content: center;
	align-items: center;
	row-gap: 2rem;
	column-gap: 1.5rem;
	text-align: center;
}

section.reports ul li {
	font-size: 1.75rem;
	text-align: center;
	display: block;
	position: relative;
}

footer {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	column-gap: 2rem;
	padding: 2rem 4rem;
	justify-content: space-evenly;
	position: relative;
}

@media(min-width: 75rem) {
	footer {
		column-gap: 10rem;
		justify-content: center;
	}
}

footer .logo {
	width: 8rem;
	height: 8rem;
}

footer p {
	font-size: 1rem;
}


/* opm */

section {
	position: relative;
}


.socials, .documents {
	display: flex;
	flex-flow: row nowrap;
	gap: 1rem;
	margin-inline: auto;
	margin-block: 2rem 3rem;
	justify-content: center;
}

.social {
	display: block;
	width: 2rem;
	height : 2rem;
}

.social img {
	display: block;
	max-width: 100%;
}

.documents {
	font-size: 1.25rem;
}

.vendors {
	font-size: 1.5rem;
	margin-block: 1rem;
	container-type: inline-size;
}

.vendor {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	column-gap: 1rem;
}

.vendor p {
	margin-block: 0.5rem;
	margin-inline: 0.5rem;
}

.vendor span {
	margin-top: 0.25rem;
}

.vendor .location {
	font-size: 1.25rem;
	flex-grow: 1;
	text-align: right;
}

@container (max-width: 24.5rem) {
	/*
	.vendor .name {
		width: 100%;
	}
	*/
	
	.vendor .location {
		width: 100%;
		text-align: left;
	}
	
}

.col-2 {
	max-width: 80rem;
	margin-inline: auto;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	column-gap: 2rem;
	grid-auto-flow: row dense;
	row-gap: 2rem;
}

.col-2 > * {
	display: flex;
	flex-flow: column;
}

@media screen and (max-width: 45rem) {
	.col-2 {
		grid-template-columns: minmax(0, 1fr);
		max-width: 100%;
	}

	.col-2 > * {
		display: contents;
	}

	.vendors-section {
		background-color: rgba(0,50,10, 0.2);
		padding: 1rem 2rem;
		margin-inline: -2rem;
		margin-block: 1rem;
	}
}

p {
	margin-block: 1rem;
	font-size: 1.25rem;
}

p:first-child {
	margin-top: 0;
}

h1 {
	font-size: 2rem;
	font-weight: normal;
}

main .location {
	position: relative;
	padding-right: 1.25em;
	font-size: 1.25rem;
}

main .location img {
	height: 1.5em;
	position: absolute;
	bottom: -0.1em;
	right: 0;
}