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 */

/*general CSS */
body{
	min-height: 100vh;
  	display: flex;
  	flex-direction: column;
	background-color: rgb(168, 180, 226);
	font-family: 'Roboto Condensed', sans-serif;
}


/* Header CSS */
header{
	display: flex;
	justify-content: center;
	background-color: #4f63a4;
	color: rgb(255, 255, 255);
	align-items: center;
	padding-bottom: 15px;
	padding-top: 10px;
	font-family: 'Handlee', cursive;
}

header h1{
	font-size: 35px;
	font-weight: bolder;
}

.logo{
	width: 75px;
}

/* Navigation Bar Css */
.navigation ul{
    display: flex;
    list-style-type: none;
	justify-content: center;
	font-size: 25px;
	font-family: 'Handlee', cursive;
}

.navigation li{
    width: 200px;
    text-align: center;
	padding-bottom: 10px;
}

.navigation{
	background-color: #4f63a4;
}

.navigation a:link, .navigation a:visited{
    color: rgb(255, 255, 255);
    text-decoration: none;
	font-weight: bold;
}

.navigation a:hover{
	background-color: rgb(39, 73, 102);
}

.navigation a{
    display: block;
    padding: 5px 0;
}

/* Drop down selector css */
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
	display: none;
	position: absolute;
	max-width: 200px;
	background-color: rgb(85, 110, 179);
}
  
/* Links inside the dropdown */
.dropdown-content a {
	display: block;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
	display: block;
	width: 200px;
	
}

.drop{
	color: rgb(255, 255, 255);
    text-decoration: none;
	font-weight: bold;
}

/*Home page CSS */

main{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 500px 250px 25px 500px 500px 500px 500px 525px;
}

#homePage h2{
	font-size: 30px;
	text-align: center;
	color: whitesmoke;
	text-shadow: 2px 2px 1px rgba(0, 0, 0, .25);
}

#homePage h3{
	font-size: 27px;
	text-align: center;
	margin-top: 15px;
	color: whitesmoke;
	text-shadow: 2px 2px 1px rgba(0, 0, 0, .25);
}

.greeting{
	grid-column: 1/2;
	grid-row: 1/2;
	display: flex;
	flex-direction: column;
	align-self: center;
	padding: 10px 0 10px 45px;
}

.greeting hr{
	height:5px;
	width: 250px;
	color:rgb(255, 255, 255);
	background-color:rgb(255, 255, 255);
}

.mainPhoto{
	grid-column: 2/4;
	grid-row: 1/2;
	background-image: url(images/house.jfif);
	background-size: cover;
	width: 750px;
	max-width: 1000px;
	height: 350px;
	display: flex;
	place-self: center;
	background-position: 50% 50%;
	box-shadow: 10px 10px 10px 12px rgba(0, 0, 0, .5);
}

.homeText{
	font-size: 24px;
	grid-column: 1/4;
	grid-row: 2/3;
	min-width: 1000px;
	text-align: center;
	margin: auto;
	margin-top: 0;
	height: 20px;
}

.homeText p{
	padding: 50px;
	width: 1000px;
	background-color: rgba(255, 255, 255, 0.75);
	color: black;
	box-shadow: 10px 10px 10px 12px rgba(0, 0, 0, .5);
}

.divider{
	grid-column: 1/4;
	grid-row: 3/4;
	height:5px;
	width: 1250px;
	color:rgb(255, 255, 255);
	background-color:rgb(255, 255, 255);
	display: flex;
	align-self: flex-start;
}

.infoButton{
	grid-column: 1/4;
	grid-row: 4/5;
	padding: 50px 100px 50px 100px;
	width: 1000px;
	display: flex;
	place-self: center;
	flex-direction: row;
	align-items: center;
	border: 3px black outset;
	background-color: rgba(255, 255, 255, .75);
	box-shadow: 10px 10px 10px 12px rgba(0, 0, 0, .5);
}

.infoButton img{
	text-align: left;
}

.infoButton p{
	width: 300px;
	font-size: 24px;
	padding: 0 10px 0 25px;
	color: black;
}

.infoButton button{
	background-color: rgb(8, 47, 86);
	color: whitesmoke;
	width: 200px;
	height: 100px;
	font-size: 22px;
}

.map{
	grid-column: 1/4;
	grid-row: 5/6;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.map iframe{
	width: 850px;
	height: 400px;
	padding: 20px;
	background-color: rgba(255, 255, 255, .75);
	margin: 50px;
  	box-shadow: 10px 10px 5px 12px rgba(0, 0, 0, .5);
}

.roomButton{
	grid-column: 1/4;
	grid-row: 6/7;
	padding: 50px 100px 50px 100px;
	width: 1000px;
	display: flex;
	place-self: center;
	flex-direction: row;
	align-items: center;
	border: 3px black outset;
	background-color: rgba(255, 255, 255, .75);
	box-shadow: 10px 10px 10px 12px rgba(0, 0, 0, .5);
}

.roomButton img{
	width: 50%;
	text-align: left;
}

.roomButton p{
	width: 300px;
	font-size: 24px;
	padding: 0 5px 0 35px;
	color: black;
}

.roomButton button{
	background-color: rgb(8, 47, 86);
	color: whitesmoke;
	width: 200px;
	height: 100px;
	font-size: 22px;
}

.hisButton{
	grid-column: 1/4;
	grid-row: 7/8;
	padding: 50px 100px 50px 100px;
	width: 1000px;
	display: flex;
	place-self: center;
	flex-direction: row;
	align-items: center;
	border: 3px black outset;
	background-color: rgba(255, 255, 255, .75);
	box-shadow: 10px 10px 10px 12px rgba(0, 0, 0, .5);
}

.hisButton img{
	width: 50%;
	text-align: left;
}

.hisButton p{
	width: 300px;
	font-size: 24px;
	padding: 0 10px 0 25px;
	color: black;
}

.hisButton button{
	background-color: rgb(8, 47, 86);
	color: whitesmoke;
	width: 200px;
	height: 100px;
	font-size: 22px;
}

.attButton{
	grid-column: 1/4;
	grid-row: 8/9;
	padding: 50px 100px 50px 100px;
	width: 1000px;
	display: flex;
	place-self: center;
	flex-direction: row;
	align-items: center;
	border: 3px black outset;
	background-color: rgba(255, 255, 255, .75);
	box-shadow: 10px 10px 10px 12px rgba(0, 0, 0, .5);
	margin-bottom: 25px;
}

.attButton img{
	width: 50%;
	text-align: left;
}

.attButton p{
	width: 300px;
	font-size: 24px;
	padding: 0 10px 0 25px;
	color: black;
}

.attButton button{
	background-color: rgb(8, 47, 86);
	color: whitesmoke;
	width: 200px;
	height: 100px;
	font-size: 22px;
}
	

/* Contact Form */

input, textarea{
	width: 320px;
	font-size: 20px;
	font-family: Arial, Helvetica, sans-serif;
	border-radius: 15px;
	border: 2px black solid;
	padding-top: 5px;
	padding-bottom: 5px;
}

.form p{
	text-align: center;
	margin: 10px auto;
}

.con1{
	padding: 5px;
	line-height: 25px;
	width: 320px;
	margin: auto;
	border-radius: 75px;
	margin-top: 10px;
	background-color: #4f63a4;
	color: aliceblue;
	border: 1px black solid;
	font-size: 28px;
}

form span{
	color: red;
}

#address{
	display: none;
}

.submit input{
	background-color: #4f63a4;
	color: aliceblue;
}


/* PHP submit screen */
.formHead{
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 22px;
	color: aliceblue;
	display: flex;
	flex-direction: column;
	align-self: center;
	text-align: center;
	width: 150px;
    background-color: rgba(0, 43, 160, 0.651);
	padding: 5px 75px;
	border-radius: 60px;
	margin:15px 5px 5px 5px;
	line-height: 35px;
}

.thanks{
	width: auto;
	font-family: 'Roboto Condensed', sans-serif;
}

/* Footer CSS */

.facebook{
	font-size: 25px;
	color: whitesmoke;	
	text-decoration: none;
	grid-column: 1 / 2;
	grid-row: 2 / 3;
}

footer{
	margin-top: auto;
	text-align: center;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	background-color: #4f63a4;
	color: whitesmoke;
}

.airbnb{
	font-size: 25px;
	color: rgb(229, 145, 148);
	text-decoration: none;
	grid-column: 1 / 2;
	grid-row: 1 / 2;
	padding-top: 17px;
}

.location{
	grid-column: 3 / 4;
	grid-row: 1 / 3;
	padding-top: 17px;
}

.location h4{
	font-weight: bold;
	font-size: 20px;
}

.location p{
	font-size: 18px;
}

footer ul{
	grid-column: 2/3;
	grid-row: 1/3;
	padding-top: 17px;
	font-size: 18px;
	line-height: 25px;
}

.bottomNav a:link, .bottomNav a:visited{
    color: rgb(255, 255, 255);
    text-decoration: none;
	font-weight: bold;
}

.bottomNav a{
	width: 200px;
}

.bottomNav a:hover{
	color: rgb(132, 159, 182);
}

.copyright{
	grid-column: 1/4;
	grid-row: 3/4;
	padding-top: 20px;
} 

.contactFoot{
	margin-top: 150px;
}

/* Accomodations and Policies Page CSS */

.accommodation{
	display: grid; 
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 500px 500px;
}

.infoTop{
	grid-column: 1/2;
	grid-row: 1/2;
	display: flex;
	flex-direction: column;
	align-self: center;
	padding: 10px 0 10px 45px;
}

.acoPic{
	grid-column: 2/4;
	grid-row: 1/2;
	background-image: url(images/livingRoom.webp);
	background-size: cover;
	width: 750px;
	max-width: 1000px;
	height: 350px;
	display: flex;
	place-self: center;
	background-position: 50% 50%;
	box-shadow: 10px 10px 10px 12px rgba(0, 0, 0, .5);
}

.infoTop h2{
	font-size: 30px;
	text-align: center;
	color: whitesmoke;
	text-shadow: 2px 2px 1px rgba(0, 0, 0, .25);
}

.infoTop h3{
	font-size: 25px;
	text-align: center;
	color: whitesmoke;
	text-shadow: 2px 2px 1px rgba(0, 0, 0, .25);
	margin-top: 15px;
}

.infoTop hr{
	height:5px;
	width: 250px;
	color:rgb(255, 255, 255);
	background-color:rgb(255, 255, 255);
	box-shadow: 2px 2px 1px rgba(0, 0, 0, .25);
}

.acoList{
	grid-column: 1/4;
	grid-row: 2/3;
	padding: 25px 100px 25px 100px;
	width: 500px;
	display: flex;
	place-self: center;
	flex-direction: row;
	align-items: center;
	border: 3px black outset;
	background-color: rgba(255, 255, 255, .75);
	box-shadow: 10px 10px 10px 12px rgba(0, 0, 0, .5);
	color: black;
}

.acoList ul{
	font-size: 24px;
    margin-left: 25px;
	list-style-type: square;
}

.policies{
	display: grid; 
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 500px 650px;
}

.polTop{
	grid-column: 1/2;
	grid-row: 1/2;
	display: flex;
	flex-direction: column;
	align-self: center;
	padding: 10px 0 10px 45px;
}

.polPic{
	grid-column: 2/4;
	grid-row: 1/2;
	background-image: url(images/policies.webp);
	background-size: cover;
	width: 750px;
	max-width: 1000px;
	height: 350px;
	display: flex;
	place-self: center;
	background-position: 50% 50%;
	box-shadow: 10px 10px 10px 12px rgba(0, 0, 0, .5);
}

.polTop h2{
	font-size: 30px;
	text-align: center;
	color: whitesmoke;
	text-shadow: 2px 2px 1px rgba(0, 0, 0, .25);
}

.polTop h3{
	font-size: 25px;
	text-align: center;
	color: whitesmoke;
	text-shadow: 2px 2px 1px rgba(0, 0, 0, .25);
	margin-top: 15px;
}

.polTop hr{
	height:5px;
	width: 250px;
	color:rgb(255, 255, 255);
	background-color:rgb(255, 255, 255);
	box-shadow: 2px 2px 1px rgba(0, 0, 0, .25);
}

.polList{
	grid-column: 1/4;
	grid-row: 2/3;
	padding: 25px 100px 25px 100px;
	width: 850px;
	display: flex;
	place-self: center;
	flex-direction: row;
	align-items: center;
	border: 3px black outset;
	background-color: rgba(255, 255, 255, .75);
	box-shadow: 10px 10px 10px 12px rgba(0, 0, 0, .5);
	color: black;
	margin-bottom: 150px;
}

.polList ul{
	font-size: 24px;
    margin-left: 25px;
	list-style-type: square;
}

.mainUl ul{
	list-style-type: circle;
}

/* Rooms and Rates CSS */

.ratesMain{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 500px 500px 500px 500px 500px 500px;
}

.ratesMain h2{
	font-size: 30px;
	text-align: center;
	color: whitesmoke;
	text-shadow: 2px 2px 1px rgba(0, 0, 0, .25);
}

.ratesMain h3{
	font-size: 25px;
	text-align: center;
	color: whitesmoke;
	text-shadow: 2px 2px 1px rgba(0, 0, 0, .25);
	margin-top: 15px;
}

.ratePhoto{
	grid-column: 2/4;
	grid-row: 1/2;
	background-image: url(images/ratesBed.webp);
	background-size: cover;
	width: 750px;
	max-width: 1000px;
	height: 350px;
	display: flex;
	place-self: center;
	background-position: 50% 50%;
	box-shadow: 10px 10px 10px 12px rgba(0, 0, 0, .5);
}

.rateTop{
	grid-column: 1/2;
	grid-row: 1/2;
	display: flex;
	flex-direction: column;
	align-self: center;
	padding: 10px 0 10px 45px;
}

.rateTop hr{
	height:5px;
	width: 350px;
	color:rgb(255, 255, 255);
	background-color:rgb(255, 255, 255);
	box-shadow: 2px 2px 1px rgba(0, 0, 0, .25);
}

.colorRoom{
	padding: 50px 100px 50px 100px;
	width: 1000px;
	display: flex;
	place-self: center;
	flex-direction: row;
	align-items: center;
	border: 3px black outset;
	background-color: rgba(255, 255, 255, .75);
	box-shadow: 10px 10px 10px 12px rgba(0, 0, 0, .5);
}

.colorRoom img{
	text-align: left;
}

.colorRoom p{
	width: 300px;
	font-size: 24px;
	padding: 0 10px 0 25px;
	color: black;
}

.roomCon{
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 60px 5px 2fr;
}

.blue{
	grid-column: 1/4;
	grid-row: 2/3;
	font-size: 22px;
}

.blue h4{
	grid-column: 1/3;
	grid-row: 1/2;
	font-size: 26px;
	padding-left: 150px;
	font-weight: bold;
}

.blue p{
	grid-column: 2/3;
	grid-row: 3/4;
	width: 500px;
	padding-top: 50px;
	font-size: 24px;
}

.blue img{
	grid-column: 1/2;
	grid-row: 3/4;
	width: 85%;
	text-align: left;
}

.beige{
	grid-column: 1/4;
	grid-row: 3/4;
	padding: 50px 100px 50px 100px;
	width: 1000px;
	display: flex;
	place-self: center;
	flex-direction: row;
	align-items: center;
	border: 3px black outset;
	background-color: rgba(255, 255, 255, .75);
	box-shadow: 10px 10px 10px 12px rgba(0, 0, 0, .5);
}

.beige h4{
	grid-column: 1/3;
	grid-row: 1/2;
	font-size: 26px;
	padding-left: 150px;
	font-weight: bold;
}

.beige p{
	grid-column: 2/3;
	grid-row: 3/4;
	width: 500px;
	padding-top: 50px;
	font-size: 24px;
}

.beige img{
	grid-column: 1/2;
	grid-row: 3/4;
	width: 85%;
	text-align: left;
}

.yellow{
	grid-column: 1/4;
	grid-row: 4/5;
	padding: 50px 100px 50px 100px;
	width: 1000px;
	display: flex;
	place-self: center;
	flex-direction: row;
	align-items: center;
	border: 3px black outset;
	background-color: rgba(255, 255, 255, .75);
	box-shadow: 10px 10px 10px 12px rgba(0, 0, 0, .5);
}

.yellow h4{
	grid-column: 1/3;
	grid-row: 1/2;
	font-size: 26px;
	padding-left: 150px;
	font-weight: bold;
}

.yellow p{
	grid-column: 2/3;
	grid-row: 3/4;
	width: 500px;
	padding-top: 50px;
	font-size: 24px;
}

.yellow img{
	grid-column: 1/2;
	grid-row: 3/4;
	width: 85%;
	text-align: left;
}

.peach{
	grid-column: 1/4;
	grid-row: 5/6;
	padding: 50px 100px 50px 100px;
	width: 1000px;
	display: flex;
	place-self: center;
	flex-direction: row;
	align-items: center;
	border: 3px black outset;
	background-color: rgba(255, 255, 255, .75);
	box-shadow: 10px 10px 10px 12px rgba(0, 0, 0, .5);
}

.peach h4{
	grid-column: 1/3;
	grid-row: 1/2;
	font-size: 26px;
	padding-left: 150px;
	font-weight: bold;
}

.peach p{
	grid-column: 2/3;
	grid-row: 3/4;
	width: 500px;
	padding-top: 50px;
	font-size: 24px;
}

.peach img{
	grid-column: 1/2;
	grid-row: 3/4;
	width: 85%;
	text-align: left;
}

.green{
	grid-column: 1/4;
	grid-row: 6/7;
	padding: 50px 100px 50px 100px;
	width: 1000px;
	display: flex;
	place-self: center;
	flex-direction: row;
	align-items: center;
	border: 3px black outset;
	background-color: rgba(255, 255, 255, .75);
	box-shadow: 10px 10px 10px 12px rgba(0, 0, 0, .5);
}

.green h4{
	grid-column: 1/3;
	grid-row: 1/2;
	font-size: 26px;
	padding-left: 150px;
	font-weight: bold;
}

.green p{
	grid-column: 2/3;
	grid-row: 3/4;
	width: 500px;
	padding-top: 50px;
	font-size: 24px;
}

.green img{
	grid-column: 1/2;
	grid-row: 3/4;
	width: 85%;
	text-align: left;
}

.colorRoom hr{
	grid-column: 1/2;
	grid-row: 2/3;
	height:5px;
	width: 250px;
	color:rgb(168, 180, 226);
	background-color:rgb(168, 180, 226);
}

/* History CSS */

#hisMain{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 450px 50px 6fr;
}

#history h2{
	font-size: 30px;
	text-align: center;
	color: whitesmoke;
	text-shadow: 2px 2px 1px rgba(0, 0, 0, .25);
}

#history h3{
	font-size: 27px;
	text-align: center;
	color: whitesmoke;
	text-shadow: 2px 2px 1px rgba(0, 0, 0, .25);
	margin-top: 15px;
}

.greeting{
	grid-column: 1/2;
	grid-row: 1/2;
	display: flex;
	flex-direction: column;
	align-self: center;
	padding: 10px 0 10px 45px;
}

#hisMain hr{
	grid-column: 1/4;
	grid-row: 2/3;
	height:5px;
	width: 250px;
	color:rgb(255, 255, 255);
	background-color:rgb(255, 255, 255);
	box-shadow: 2px 2px 1px rgba(0, 0, 0, .25);
	place-self: center;
}

.hisPhoto{
	grid-column: 2/4;
	grid-row: 1/2;
	background-image: url(images/historyHero.jpg);
	background-size: cover;
	width: 750px;
	max-width: 1000px;
	height: 350px;
	display: flex;
	place-self: center;
	background-position: 50% 50%;
	box-shadow: 10px 10px 10px 12px rgba(0, 0, 0, .5);
}

#hisInfo{
	grid-column: 1/4;
	grid-row: 3/4;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 50px;
	font-size: 24px;

}

#hisInfo li{
	padding: 50px 100px 50px 100px;
	width: 1000px;
	display: flex;
	place-self: center;
	flex-direction: row;
	align-items: center;
	border: 3px black outset;
	background-color: rgba(255, 255, 255, .75);
	box-shadow: 10px 10px 10px 12px rgba(0, 0, 0, .5);
	margin: 20px 0 40px 0;
}

/* Attractions CSS */

#attMain{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 500px 25px 1fr;
}

#attMain h2{
	font-size: 30px;
	text-align: center;
	color: whitesmoke;
	text-shadow: 2px 2px 1px rgba(0, 0, 0, .25);
}

#attMain h3{
	font-size: 27px;
	text-align: center;
	color: whitesmoke;
	text-shadow: 2px 2px 1px rgba(0, 0, 0, .25);
	margin-top: 15px;
}

.greeting{
	grid-column: 1/2;
	grid-row: 1/2;
	display: flex;
	flex-direction: column;
	align-self: center;
	padding: 10px 0 10px 45px;
}

attMain hr{
	height:3px;
	width: 250px;
	color:rgb(255, 255, 255);
	background-color:rgb(255, 255, 255);
	box-shadow: 2px 2px 1px rgba(0, 0, 0, .25);
}

.attPhoto{
	grid-column: 2/4;
	grid-row: 1/2;
	background-image: url(images/attraction.jpg);
	background-size: cover;
	width: 750px;
	max-width: 1000px;
	height: 350px;
	display: flex;
	place-self: center;
	background-position: 50% 50%;
	box-shadow: 10px 10px 10px 12px rgba(0, 0, 0, .5);
}

.attList{
	grid-column: 1/4;
	grid-row: 3/4;
	padding: 25px 100px 25px 100px;
	width: 500px;
	display: flex;
	place-self: center;
	flex-direction: row;
	align-items: center;
	border: 3px black outset;
	background-color: rgba(255, 255, 255, .75);
	box-shadow: 10px 10px 10px 12px rgba(0, 0, 0, .5);
	color: black;
	margin-top: 50px;
	margin-bottom: 50px;
}

.attList ul{
	font-size: 24px;
    margin-left: 25px;
	list-style-type: square;
}