/*colors*/
/*gray: rgba(89, 81, 83, 1);*/
/*brown: rgba(166, 138, 123, 1);*/
/*tan: rgba(217, 185, 167, 1);*/
/*red: rgba(242, 31, 12, 1);*/
/*salmon: rgba(242, 69, 53);*/

/*index*/
*
{
	box-sizing: border-box;
}

html
{
	font-size: 62.5%;
}
body
{
	padding: 0;
	margin: 0;
	font-family: 'Josefin Sans', sans-serif;
}

#container
{
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: auto;
	grid-template-areas:
		'banner'
		'panels'
		'banner2'
		'services'
		'banner3'
		'map'
		'footer';
	margin-top: 2rem;
}

#sbm-image
{
	grid-area: banner;
	width: 100%;
	z-index: -1;
}

#panel-section
{
	grid-area: panels;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto;
	grid-template-areas:
		'exp local craft'
		'. button .';
	grid-gap: 10rem;
	padding: 10rem;
	background: rgba(166, 138, 123, 1);
	min-height: 60vh;
	text-align: center;
	box-shadow: 0px -2px 10px rgba(58, 61, 63, 1);
	box-shadow: 0px 2px 10px rgba(58, 61, 63, 1);
}

.home-panel
{
	background: white;
	box-shadow: 1.4rem 1.4rem rgba(242, 69, 53);
	padding: 5rem;
}

.home-panel h3
{
	font-size: 3rem;
}

.home-panel p
{
	font-size: 2.4rem;
	padding-top: 2rem;
}

#experience-panel
{
	grid-area: exp;
}

#local-panel
{
	grid-area: local;
}

#craftsmanship-panel
{
	grid-area: craft;
}

#panel-button
{
	grid-area: button;
	place-self: center;
}

#inside-image
{
	grid-area: banner2;
	width: 100%;
	z-index: -1;
}

#services-section
{
	grid-area: services;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto;
	grid-template-areas:
		'monument monument .'
		'. marker marker'
		'statue statue .'
		'. button .';
	grid-gap: 7rem;
	background: rgba(217, 185, 167, 1);
	min-height: 60vh;
	padding-top: 8rem;
	padding-bottom: 8rem;
	box-shadow: 0px -2px 10px rgba(58, 61, 63, 1);
	box-shadow: 0px 2px 10px rgba(58, 61, 63, 1);
}

.services-panel
{
	background: white;
}

.services-panel img
{
	justify-self: center;
	height: 20rem;
	width: auto;
	margin: 3rem;
}

.services-panel p
{
	font-size: 2.4rem;
	margin-right: 3rem;
}

#monument-panel
{
	grid-area: monument;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: auto;
	grid-template-areas:
		'img p';
	box-shadow: -1.4rem 1.4rem rgba(242, 69, 53);
}

#monument-image
{
	grid-area: img;
}

#monument-text
{
	grid-area: p;
	place-self: center start;
}

#marker-panel
{
	grid-area: marker;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: auto;
	grid-template-areas:
		'p img';
	box-shadow: 1.4rem 1.4rem rgba(242, 69, 53);
}

#marker-image
{
	grid-area: img;
}

#marker-text
{
	grid-area: p;
	place-self: center end;
}

#statue-panel
{
	grid-area: statue;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: auto;
	grid-template-areas:
		'img p';
	box-shadow: -1.4rem 1.4rem rgba(242, 69, 53);
}

#statue-image
{
	grid-area: img;
}

#statue-text
{
	grid-area: p;
	place-self: center start;
}

#services-button
{
	grid-area: button;
	place-self: center;
}

#outside-image
{
	grid-area: banner3;
	width: 100%;
	z-index: -1;
}

#map
{
	grid-area: map;
	min-height: 60vh;
	box-shadow: 0px -2px 10px rgba(58, 61, 63, 1);
}

iframe
{
	height: 600px;
	width: 100%;
}

#footer
{
	grid-area: footer;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto;
	grid-template-areas:
		'hours nav info'
		'hours copy info';
	background: rgba(89, 81, 83, 1);
	min-height: 20vh;
	box-shadow: 0px 2px 10px rgba(58, 61, 63, 1);
}

.footer-panel
{
	place-self: center;
	font-size: 1.6rem;
	color: black;
}

#footer-navigation
{
	grid-area: nav;
	text-align: center;
}

#footer-hours
{
	grid-area: hours;
}

#footer-info
{
	grid-area: info;
	text-align: right;
}

#copyright
{
	grid-area: copy;
	text-align: center;
	font-size: 1.4rem;
}

.footer-panel a
{
	text-decoration: none;
}

.footer-panel a:link, a:visited
{
	color: black;
	transition:
			color 270ms cubic-bezier(0.2, 0.1, 0.2, 1);
}

.footer-panel a:hover, a:active
{
	color: rgba(166, 138, 123, 1);
	transition:
			color 270ms cubic-bezier(0.2, 0.1, 0.2, 1);
}

.footer-panel ul
{
	list-style-type: none;
}

.button
{
	font-size: 2rem;
	border: 0.3rem solid rgba(242, 69, 53);
	padding: 2rem;
	text-decoration: none;
	text-align: center;
	background: white;
	box-shadow: inset 0rem 0rem 0rem white;
}

a.button:link, a.button:visited
{
	color: black;
	transition:
			box-shadow 270ms cubic-bezier(.2, 0.1, .2, 1),
			color 270ms cubic-bezier(0.2, 0.1, 0.2, 1);
}

a.button:hover, a.button:active
{
	color: white;
	transition:
			box-shadow 270ms cubic-bezier(.2, 0.1, .2,1),
			color 270ms cubic-bezier(0.2, 0.1, 0.2, 1);
	box-shadow: inset 0 -100px rgba(242, 69, 53);
}

@media only screen and (max-width: 1050px)
{
	html
	{
		font-size: 58%;
	}

	#container
	{
		grid-template-areas:
			'panels'
			'services'
			'map'
			'footer';
		margin-top: 9rem;
	}

	#sbm-image
	{
		display: none;
	}

	#panel-section
	{
		grid-template-columns: 1fr;
		grid-template-areas:
			'exp'
			'local'
			'craft'
			'button';
		grid-gap: 5rem;
		padding: 5rem;
		box-shadow: none;
	}

	.home-panel
	{
		padding: 2rem;
	}

	.home-panel p
	{
		padding-top: 0rem;
	}

	#inside-image
	{
		display: none;
	}

	#services-section
	{
		grid-template-columns: 1fr;
		grid-template-areas:
			'monument'
			'marker'
			'statue'
			'button';
		padding-top: 5rem;
		padding-bottom: 5rem;
		box-shadow: none;
	}

	#monument-panel, #marker-panel, #statue-panel
	{
		grid-template-columns: 1fr;
		grid-template-areas:
			'img'
			'p';
		text-align: center;
	}

	#monument-panel
	{
		margin-right: 5rem;
	}

	#marker-panel
	{
		margin-left: 5rem;
	}

	#statue-panel
	{
		margin-right: 5rem;
	}

	.services-panel img
	{
		height: 18rem;
		width: auto;
		margin: 2rem;
	}

	.services-panel p
	{
		margin-right: 0;
		padding: 2rem;
	}

	#outside-image
	{
		display: none;
	}

	#map
	{
		box-shadow: none;
	}

	#footer
	{
		grid-template-columns: 1fr;
		grid-template-areas:
			'copy';
		min-height: 0;
		height: 10vh;
	}

	#footer-navigation
	{
		display: none;
	}

	#footer-hours
	{
		display: none;
	}

	#footer-info
	{
		display: none;
	}

	#copyright
	{
		justify-self: center;
	}
}
