@charset "UTF-8";

/* Basic Elements */
html {
	box-sizing: border-box;
	font-size: 100%;
}
*, *::before, *::after {
	box-sizing: inherit;
}
body {
	color: #fff;
	font-size: 1rem;
	font-family: "EB Garamond", Garamond, Georgia, serif;
	font-optical-sizing: auto;
	font-weight: normal;
	line-height: 1.5;
	background: #000 url("../images/bg_floral_tile.jpg") repeat;
	scroll-behavior: smooth;
}
html, body, p, ol, ul, li, dl, dt, dd, blockquote, figure, fieldset, form, legend, textarea, pre, iframe, hr, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}
img {
	max-width: 100%;
}
p {
	margin-bottom: 1.5rem;
}
cite {
	font-style: italic;
}
a, a:visited, a:active {
	color: #fff;
	text-decoration: underline;
}
a:hover {
	color: rgba(255, 255, 255, 0.8);
}

/* Site Header */
#site-header {
	text-align: center;
	background-color: rgba(38, 68, 75, 0.65);
	padding: 0.75rem 1.25rem 0.5rem;
	@media (width >= 1024px) {
		padding: 1.25rem 1.25rem 1rem;
	}
}
#site-header #logo {
	max-width: 8.5rem;
	@media (width >= 1024px) {
		max-width: 12.5rem;
	}
}

/* Main Content */
#content {
	font-size: 1.125rem;
}
.container {
	position: relative;
	max-width: 76.25rem;
	margin: 0 auto;
	@media (width >= 1220px) {
		padding-left: 1.25rem;
		padding-right: 1.25rem;
	}
}
.container > :last-child {
	margin-bottom: 0;
}

/* Hero */
#hero {
	margin-top: 3rem;
	@media (width >= 1220px) {
		margin-top: 10.5rem;
		margin-bottom: 10rem;
	}
	@media (width >= 1024px) and (width <= 1219px) {
		margin-top: 3rem;
		margin-bottom: 5rem;
	}
}
#hero header {
	font-size: 2.25rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	line-height: 1.25;
	position: relative;
	z-index: 1;
	@media (width >= 1220px) {
		width: 50%;
		margin-left: 50%;
	}
}
#hero header .txt-italic {
	font-size: 1.25rem;
	font-weight: 400;
	text-transform: none;
	display: block;
	@media (width >= 1024px) {	
		font-size: 1.75rem;
	}
}
#hero header::after {
	content: "";
	color: #000;
	background-color: #fff;
	display: block;
	width: 50%;
	max-width: 13.4375rem;
	height: 1px;
	margin: 2.5rem auto;
	@media (width <= 1023px) {
		margin-bottom: 0.75rem;
	}
}
#hero-img {
	max-width: 100%;
	position: relative;
	overflow: hidden;
	z-index: 0;
	@media (width >= 1220px) {
		top: -9rem;
		left: -6.25rem;
	}
	@media (width >= 1024px) {
		position: absolute;
	}
	@media (width >= 1024px) and (width <= 1219px) {
		max-width: 50%;
		top: 2.8rem;
		left: 0;
	}
	@media (width <= 1023px) {
		margin: 0 auto;
		text-align: center;
	}
}
#hero-blurb {
	position: relative;
	z-index: 1;
	@media (width >= 1220px) {
		width: 50%;
		margin-left: 50%;
	}
	@media (width >= 1024px) and (width <= 1219px) {
		width: 55%;
		margin-left: 45%;
	}
	@media (width <= 1219px) {
		padding-left: 1.25rem;
		padding-right: 1.25rem;
	}
	@media (width <= 1023px) {
		width: 100%;
		margin-left: 0;
		padding-bottom: 1.25rem;
	}
}
#hero-buttons {
	list-style: none;
	display: inline-block;
	margin: 1.5rem auto 0;
	padding: 0;
	@media (width <= 1023px) {
		display: block;
	}
}
#hero-buttons li {
	display: inline-block;
	margin: 0 0.25rem;
	@media (max-width: 1023px) {
		display: block;
		margin: 0.75rem 0;
	}
}
#hero-buttons li a {
	display: block;
	@media (width <= 1023px) {
		display: inline-block;
		padding-left: 1rem;
		padding-right: 1rem;
	}
}

/* About Us */
#about {
	background-color: rgba(38, 68, 75, 0.65);
	.container {
		max-width: 60rem;
		padding: 4.375rem 1.25rem;
		@media (width <= 1023px) {
			padding-top: 2rem;
			padding-bottom: 2rem;
		}
	}
}

/* Site Footer */
#site-footer {
	font-size: 0.875rem;
	text-align: center;
	background-color: #0f1c22;
	padding: 1.25rem;
}
#site-footer > :last-child {
	margin-bottom: 0;
}

/* Headings */
h2 {
	font-size: 2.25rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	line-height: 1.25;
}
h2::after {
	content: "";
	color: #000;
	background-color: #fff;
	display: block;
	width: 50%;
	max-width: 13.4375rem;
	height: 1px;
	margin: 2.5rem auto;
}

/* Buttons */
.button, a.button {
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
	background: linear-gradient(to bottom, #625273 0%,#564468 100%);
	padding: 0.75rem 1.25rem;
	@media (width <= 1023px) {
		font-size: 1.25rem;
		padding: 0.25rem;
	}
}
.button:hover, a.button:hover {
	background: linear-gradient(to bottom, #4a3a5b 0%, #352347 100%);
}

/* Screen-Reader Specific */
.sr-only {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
	word-break: normal;
}
#skip a {
	color: #fff;
	text-decoration: underline;
	background-color: #564468;
}
#skip a:focus {
	top: 5px;
	left: 5px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	display: block;
	width: auto;
	height: auto;
	padding: 0.5rem;
	z-index: 100000;
	clip: auto !important;
	clip-path: none;
}

/* Display Helpers */
.align-center {
	clear: both;
	display: block;
	float: none;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}
.txt-italic {
	font-style: italic;
}
.txt-underline {
	text-decoration: underline;
}
.txt-regular {
	font-weight: 400;
}
.txt-medium {
	font-weight: 500;
}
.txt-semi-bold {
	font-weight: 600;
}
.txt-bold {
	font-weight: 700;
}
.txt-extra-bold {
	font-weight: 800;
}