/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* end of CSS Reset */

/* Navbar CSS */
header{
	font-family: 'DM Serif Display', serif;
	position: fixed;
	display: flex;
	width: 100%;
	background-color: white;
	box-shadow: 5px 1px 5px 1px black;
	grid-row: 1 / 2;
	grid-column: 1 / span 3;
}

header h1{
	font-size: 2em;
	font-family: 'DM Serif Display', serif;
	font-weight: bold;
	margin: 0 10px;
	background-color: white;
}

#logo{
	width: 50px;
	height: 35px;
	margin: 0px 5px;
}

#menu ul{
	display: flex;
	list-style-type: none;
}

#menu li{
    width: 210px;
    text-align: center;
}

#menu li a{
    display:block;
    padding: 10px;
	text-decoration: none;
	color: black;
	font-weight: bold;
	background-color: white;
}

#menu a:hover{
    background-color: rgb(54, 90, 150);
	color: white;
    text-decoration: none;
}

#social{
	margin-left: auto;
	margin-right: auto;
	font-size: 25px;
	display:block;
    padding: 5px;
	color: rgb(54, 90, 150);
	background-color: white;
}

/* Banner/Hero Image CSS */
#hero{
	grid-row: 2 / 3;
	grid-column: 1 / span 3;
}

#hero img{
	width: 100%;
	height: 600px;
}

/* Home Page CSS Grid*/
#mainHome{
    display: grid;
	grid: 50px 1fr 400px 50px / 1fr 1fr;
    background-color: white;
	max-width: 1920px;
}

#intro{
	border-top: solid 2px  rgb(54, 90, 150);
	text-align: center;
	grid-row: 3 / 4;
	grid-column: 1 / 2;
	padding: 10px 0 0;
	margin: 10px 100px;
}

#intro h2{
	font-family: 'DM Serif Display', serif;
	text-align: center;
	margin: 10px 0px;
	font-size: 1.5em;
}

#intro p{
	font-family: 'Roboto Serif', serif;
	font-size: 1.25em;
	text-align:left;
	line-height: 1.25;
	margin: 10px 0px;
}

#map{
	border-top: solid 2px  rgb(54, 90, 150); 
	margin: 10px 100px 20px;
	grid-row: 3 / 4;
	grid-column: 2 / 3;
}

/* Contact Page CSS*/
#mainContact{
    display: grid;
	grid: 50px 1fr 0.5fr 50px / 1fr 1fr;
    background-color: white;
	max-width: 1920px;
}

#form{
	margin: 0px 0px 20px;
	grid-row: 3 / 4;
	grid-column: 1 / span 3;
}

#form form h2{
	font-family: 'DM Serif Display', serif;
	text-align: center;
	margin: 5px 0px 40px;
	font-size: 1.75em;
	border-bottom: solid 2px  rgb(54, 90, 150); 
}

#form form{
	background-color: whitesmoke;
	border: solid 2px rgb(54, 90, 150);
    display: flex;
	width: 400px;
	flex-wrap: wrap;
	justify-content: space-around;
	margin: auto;
	color: black;
}

#form form p{
	width: 400px;
    color: black;
	font-size: 18px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 30px;
	padding: 20px 10px;
	margin:10px auto;
	font-family: 'Roboto Serif', serif;
}

form p span{
	color: red;
}

#form #address{
	display: none;
}

#thank{
	font-family: 'Roboto Serif', serif;
	border-top: solid 2px  rgb(54, 90, 150);
	text-align: center;
	grid-row: 3 / 4;
	grid-column: 1 / span 3;
	padding: 10px 0 0;
	margin: 10px 100px;
}

/* History Page CSS */
#mainHistory{
    display: grid;
	grid: 50px 1fr 1500px 50px / 1fr 1fr;
    background-color: white;
	max-width: 1920px;
}

#history{
	border-top: solid 2px  rgb(54, 90, 150);
	grid-row: 3 / 4;
	grid-column: 1 / 2;
	margin: 10px 100px;
}

#history h2{
	font-family: 'DM Serif Display', serif;
	margin: 10px 0px;
	font-size: 1.5em;
}

#history p{
	font-family: 'Roboto Serif', serif;
	font-size: 1.25em;
	text-align:left;
	line-height: 1.25;
	margin: 10px 0px;
	width: 500px;
}

#imagesHistory{
	display:flex;
	flex-direction: column;
	border-top: solid 2px  rgb(54, 90, 150);
	grid-row: 3 / 4;
	grid-column: 2 / 3;
	margin: 0 100px 10px;
}

#imagesHistory img{
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
	width: 500px;
	height: 350px;
}

/* Rooms & Rates Page CSS */
#mainRooms{
    display: grid;
	grid: 50px 1fr 1400px 50px / 1fr 1fr;
    background-color: white;
	max-width: 1920px;
}

#rooms{
	border-top: solid 2px  rgb(54, 90, 150);
	grid-row: 3 / 4;
	grid-column: 1 / 2;
	margin: 10px 100px;
}

#rooms h2{
	font-family: 'DM Serif Display', serif;
	margin: 10px 0px;
	font-size: 1.5em;
}

#rooms h3{
	font-family: 'DM Serif Display', serif;
	margin: 10px 0px;
	font-size: 1.5em;
}

#rooms p, #rooms a{
	font-family: 'Roboto Serif', serif;
	font-size: 1.25em;
	text-align:left;
	line-height: 1.25;
	margin: 10px 0px 0px;
	width: 500px;
}

#imagesRooms{
	display:flex;
	flex-direction: column;
	width:500px;
	border-top: solid 2px  rgb(54, 90, 150);
	grid-row: 3 / 4;
	grid-column: 2 / 3;
	margin: 10px 100px;
}

#imagesRooms img{
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
	width: 400px;
	height: 300px;
}

#rates{
	text-align: left;

}

/* Accomodations Page CSS */
#mainAccomodations{
    display: grid;
	grid: 50px 0.5fr 1fr 50px / 1fr 1fr;
    background-color: white;
	max-width: 1920px;
}

#accomodations{
	border-top: solid 2px  rgb(54, 90, 150);
	grid-row: 3 / 4;
	grid-column: 1 / 2;
	margin: 10px 100px;
}

#accomodations h2{
	font-family: 'DM Serif Display', serif;
	margin: 10px 0px;
	font-size: 1.5em;
}

#accomodations p{
	font-family: 'Roboto Serif', serif;
	font-size: 1.25em;
	text-align:left;
	line-height: 1.25;
	margin: 10px 0px 0px;
	width: 500px;
}

#accomodations ul{
	list-style:circle;
	width: 500px;
	margin: 10px 50px 0px;
}

#accomodations li{
	font-family: 'Roboto Serif', serif;
	font-size: 1em;
	text-align:left;
	line-height: 1.25;
	margin: 10px 0px 0px;
}

#imagesAccomodations{
	display:flex;
	flex-direction: row;
	justify-content: space-evenly;
	flex-wrap: wrap;
	width:650px;
	border-top: solid 2px  rgb(54, 90, 150);
	grid-row: 3 / 4;
	grid-column: 2 / 3;
	margin: 10px 25px;
}

#imagesAccomodations #topImage{
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
	width: 625px;
}

#imagesAccomodations .bottomImage{
	margin-top: 10px;
	width: 200px;
}

/* Footer for All Pages */
footer{
	font-family: 'Roboto Serif', serif;
	text-align: center;
	grid-row: 4 / 5;
	grid-column: 1 / span 3;
	margin: 20px 100px 10px;
	border-top: solid 2px  rgb(54, 90, 150); 
}

footer ul{
	display: flex;
	list-style-type: none;
	justify-content: center;
}

footer ul li{
	text-align: center;
	margin: 5px 20px;
}



