/*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:
		'content'
		'footer ';
	margin-top: 7rem;
}

#content
{
	grid-area: content;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: auto;
	grid-template-areas:
		'title title'
		'map p'
		'map hours'
		'map address';
	padding: 8rem;
	grid-gap: 5rem;
	background: rgba(166, 138, 123, 1);
}

#content h1
{
	grid-area: title;
	font-size: 4.8rem;
	color: white;
	text-shadow: 0.4rem 0.4rem rgba(242, 69, 53);
	margin-bottom: 0;
}

iframe
{
	grid-area: map;
	place-self: center;
	height: 100%;
	width: 100%;
}

#contact-paragraph
{
  grid-area: p;
	background: white;
	box-shadow: 1.4rem 1.4rem rgba(242, 69, 53);
	padding: 3rem;
	height: auto;
	width: auto;
	font-size: 1.8rem;
}

#hours
{
  grid-area: hours;
	font-size: 2rem;
	font-weight: bold;
}

#hours table
{
	width: 70%;
}

#hours td
{
	padding-bottom: 1rem;
}

#address
{
  grid-area: address;
	font-size: 2rem;
	font-weight: bold;
}

#address ul
{
	list-style-type: none;
	padding-left: 0;
}

#address li
{
	padding-bottom: 1rem;
}

h3
{
	font-size: 3.4rem;
	color: white;
	text-shadow: 0.3rem 0.3rem rgba(242, 69, 53);
	margin: 0rem;
	margin-top: 0rem;
	margin-bottom: 1rem;
}

#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';
	min-height: 17vh;
	background: rgba(89, 81, 83, 1);
	box-shadow: 0px 2px 10px rgba(58, 61, 63, 1);
	z-index: 0;
}

.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;
}


@media only screen and (max-width: 1050px)
{
	html
	{
		font-size: 58%;
	}

	#container
	{
		margin-top: 8rem;
	}

	#content
	{
		grid-template-columns: 1fr;
		grid-template-areas:
			'title'
			'map'
			'p'
			'hours'
			'address';
		padding: 3rem;
		grid-gap: 5rem;
	}

	#content h1
	{
		text-align: center;
	}

	iframe
	{
		height: 40vh;
		width: 100%;
	}

	#hours table
	{
		width: 100%;
	}

	#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;
	}
}
