/**
 * Variables
 */
:root {
	--sky-blue: #B5D2DB;
	--near-mountain-blue: #62A8C1;
	--back-mountain-blue: #8DBFCD;
	--green-grass: #0A8542;
	--grey: #828282;
	--dark-grey: #303030;
}
/**
 * General
 */
html, body {
	margin: 0;
	padding: 0;
}
body {
	color: var(--dark-grey);
	font-family: Arial, sans-serif;
	background: url(/resources/graphics/high-point.JPG) no-repeat center center;
	background-size: cover;
}
h1 {
	margin: 0;
	padding: 0;
}
a {
	color: var(--dark-grey);
}
/**
 * Header
 */
header {
	background: var(--sky-blue);
	border-bottom: var(--green-grass) solid 3px;
}
header .wrapper {
	display: flex;
}	
header .logo {
	display: inline-block;
	height:  150px;
	width: auto;
	margin-right: 1em;
}
header .wrapper div {
	width: calc(100% - (150px + 1em));
	text-align: right;
}
header h1 {
	padding: 0.75em 0 0.25em;
}
menu {
	display: flex;
	list-style: none;
}
header .menu-wrapper {
	background: var(--green-grass);
}
header menu {
	background: var(--back-mountain-blue);
	padding: 0;
}
header menu li {
	width: 25%;
	padding: 0.5em 0;
	display: flex;
	align-content: center;
	justify-content: center;
}
[data-page="home"] menu li:nth-child(1),
[data-page="about"] menu li:nth-child(2),
[data-page="services"] menu li:nth-child(3),
[data-page="faq"] menu li:nth-child(4),
header menu li:hover {
	background: var(--near-mountain-blue);
}
header menu a {
	display: inline-block;
	font-weight: bold;
}
header address ul {
	justify-content: flex-end;
	flex-direction:  column;
	margin:  auto 1em auto auto;
	align-items: flex-end;
}
header address li {
	margin-left: 1em;
}
header .menu-wrapper menu,
header .wrapper,
article,
footer small,
footer address {
	width: 90%;
	max-width: 800px;
	margin: 0 auto;
}
/**
 * Body/main/article
 */
article {
	padding: 1em;
	background:  rgba(255, 255, 255, 0.75);
	box-sizing: border-box;
}
dt {
	font-weight: bold;
	padding-top: 1em;
}

/**
 * Footer
 */
footer {
	background: var(--sky-blue);
	border-top: var(--green-grass) solid 3px;
	padding:  1em 0;
}
footer small {
	display: block;
	text-align: center;
}
footer address {
	font-style: normal;
}
footer ul {
	padding: 1em 0;
}
footer address ul {
	justify-content: center;
	margin: 0.5em 0 1em;
}
footer address ul li {
	margin: auto 0.5em;
}
footer strong {
	font-size: 1.25em;
	text-align: center;
	width: 100%;
	display: block;
}
address li a {
	display: inline-block;
}
/**
 * Figure/images
 */
figure {
	width: 50%;
	background: var(--grey);
	border: var(--dark-grey) solid 1px;
}
figure img {
	width: 100%;
	height: auto
}
figcaption {
	padding: 0.5em;
	color: var(--sky-blue);
}
/**
 * Columns
 */
[data-columns] {
	display: flex;
	margin-top: 1em;
}
[data-columns="2"] .column {
	flex: 1;
}
[data-column="media-left"] figure {
	margin: 0 1em 0 0;
}
[data-column="media-right"] figure {
	margin: 0 0 0 1em;
}
/**
 * Address menu
 */
address {
	text-align: center;
}
address ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	justify-content: space-around;
	align-items: center;
}
address li {
	text-decoration: none;
	vertical-align: text-top;
}
.icon-phone,
.icon-email {
	width: 50px;
	height: 50px;
	display: block;
	margin: 0;
}
.icon-phone,
.icon-email {
	height: auto;
}
.icon-phone path,
.icon-email path {
	fill: var(--dark-grey);
}
.icon-phone:hover path,
.icon-email:hover path {
	fill: var(--green-grass);
}
.icon-phone circle,
.icon-email circle {
	fill: var(--back-mountain-blue);
	stroke-width: 49.8176;
	stroke-linecap: round;
	stroke-linejoin: round;
	stop-color: #000000;
	fill-opacity: 1;
}
.icon-phone:hover circle,
.icon-email:hover circle {
	fill: var(--near-mountain-blue);
}
.icon-email .at-symbol,
.icon-email:hover .envelope {
	display: none;
}
.icon-email:hover .at-symbol {
	display: inherit;
}
/**
 * Responsive styles
 */
@media (max-width: 600px) {
	header .wrapper {
		flex-direction: column;
	}
	header .wrapper div {
		width: 100%;
	}
	header h1 {
	  padding: 0.25em 0;
	  text-align: center;
	}
	header address ul {
		margin: auto;
		justify-content: center;
	}
	[data-columns] {
		flex-direction: column;
	}
	[data-column] figure {
		margin: 1em auto;
		width: 100%;
	}
	[data-column] p {
		order: 1;
	}
	[data-column] figure {
		order: 2;
	}
}