@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

html {
	width: 100%;
	height: 100%;
}
body.staged {
	background: var(--primary);
	color: var(--primary-contrast);
	width: 100%;
	height: 100%;
	position: relative;
	text-align: center;
	overflow-x: hidden;
}
body {
	position: relative;
	padding-top: 75px;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 300;
}
p {
	font-weight: 300;
	line-height: 2rem;
}
h1,h2,h3,h4,h5,h6 {
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	margin: 10px 0px;
}
.staged #siteContent {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
	padding: 15px 15px 30px;
}
header {
	background-color: var(--primary);
	color: var(--primary-contrast);
	padding: 10px 0px;
	position: fixed;
	top: 0px;
	left: 0px;
	width:100%;
	z-index: 100;
	box-shadow: 0 2px 8px rgba(255,255,255,.15);
}
#logo {
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 52px;
}
#menu a, #menu button {
	color: inherit;
	font-weight: 500;
	font-size: 1rem;
	position: relative;
	padding: 2px;
	margin-left: 16px;
	transition: color var(--transition);
}
#menu li:hover a, #menu li:hover button {
	background: none;
	color: inherit;
}
#menu a::after, #menu button::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--secondary);
	border-radius: 1px;
	transition: width var(--transition);
}
#menu li:hover a::after, #menu li:hover button::after {
	width: 100%;
}

h3 {
	color: var(--secondary);
	text-transform: uppercase;
	font-size: 1rem;
	font-weight: 500;
	font-family: 'Inter', sans-serif;
	line-height: 1em;
}
.divider {
    width: 48px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
    margin-bottom: 2rem;
	display: inline-block;
}
.button {
	outline: none;
	border: none;
	background-color: var(--secondary);
	color: var(--secondary-contrast);
	padding: 16px 32px;
	border-radius: 8px;
	cursor: pointer;
	transition: background-color var(--transition);
	font-weight: 700;
	font-size: 1rem;
}
.button:hover {
	background-color: var(--secondary-tint);
}
.button.outline {
	background-color: rgba(var(--light-rgb),0);
	color: var(--light);
	padding: 14px 30px;
	border: 2px solid var(--light);
}
.button.outline:hover {
	background-color: rgba(var(--light-rgb),0.2);
}
#LI {
	position: absolute;
	right: 0px;
	bottom: 0px;
	margin: 0px 15px;
	display: block;
	color: var(--primary-contrast) !important;
	font-size: 36px;
}
#contactForm {
	padding: 30px;
	background-color: var(--light);
	border-radius: 15px;
	box-shadow: 0 2px 8px rgba(13,35,71,.08);
	border: 1px solid var(--light-shade);
	position: relative;
}
.req {
	position: absolute;
	right: 30px;
	top: 15px;
	margin: 0px;
	font-style: italic;
	font-size: .8rem;
}
#contactForm label {
	text-transform: uppercase;
	color: var(--primary);
	display: block;
	margin: 0px 0px 30px;
	font-size: .8rem;
	font-weight: 400;
}
#contactForm input, #contactForm textarea {
	border: 1px solid var(--light-shade);
	border-radius: 8px;
	color: var(--text);
	font-size: 1rem;
	padding: 0px 8px;
	margin: 4px 0px 0px;
}
#formMessage p {
	color: var(--primary);
	text-align: center;
	font-size: 1.2em;
	margin: 10px 0;
}
#formMessage p.error{
	color: var(--danger);
}
footer {
	background-color: var(--primary);
	color: var(--primary-contrast);
}
#secondaryLogo {
	padding-bottom: 10px;
}
#brief {
	font-size: .875rem;
	color: var(--medium);
	line-height: 1.75;
}
footer h4 {
	font-family: 'Inter', sans-serif;
	text-transform: uppercase;
	color: var(--secondary);
	font-weight: 300;
	font-size: .875rem;
}
footer ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
footer li {
	margin: 20px 0px;
	padding: 0px;
	list-style: none;
}
footer li button {
	margin: 0px;
	padding: 0px;
	background: none;
	color: var(--medium);
	outline: none;
	font-size: .875rem;
	border: none;
	transition: color var(--transition);
	cursor: pointer;
}
footer li button:hover {
	color: var(--primary-contrast);
}
#copyright {
	text-align: center;
	color: var(--medium);
	padding: 30px 0px 30px;
	border-top: 0.5px solid var(--medium);
}
#copyright span {
	margin-left: 5px;
	padding-left: 5px;
	border-left: 1px solid var(--medium);
}
#copyright span a {
	color: inherit;
	transition: color var(--transition);
}
#copyright span a:hover {
	color: var(--secondary-tint);
}
.staged footer {
	background: transparent;
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
	padding: 0px;
}
@media (max-width: 991px) {
	#contactForm .button {
		width: 100%;
		margin: 20px 0px 0px;
	}
}
@media (max-width: 767px) {
	body {
		padding-top: 52px;
		font-size: 14px;
	}
	header {
		padding: 5px 0px;
	}
	#logo {
		max-height: 42px;
	}
	#menu {
		display: block;
		position: absolute;
		top: 0px;
		left: 110%;
		transition: var(--transition);
	}
	#menu.open {
		left: 0%;
	}
	#menuBtn {
		font-size: 40px;
	}
	#menuBtn {
		color: var(--primary-contrast);
	}
	#menu {
		background: var(--tertiary);
	}
	#menu a, #menu button {
		color: var(--tertiary-contrast);
		font-size: 1.5rem;
		padding: 5px;
	}
	#menu a::after, #menu button::after {
		display: none;
	}
	.section {
		padding: 60px 0px;
	}
	.button {
		padding: 16px 30px;
	}
	#copyright span {
		display: block;
		margin: 0;
		padding: 0;
		border: none;
	}
}