@charset "utf-8";
/* CSS Document */

/* unvisited link */
a:link {
  color: black;
	text-decoration: none;
}

/* visited link */
a:visited {
  color: black;
	text-decoration: none;
}

/* mouse over link */
a:hover {
  color: black;
	text-decoration: none;
}

.flex-item2:hover{
	transition: transform 1s;
	transform: scale(1.15);
	left: 2%
}

body {		
	position: absolute;
	width: 100vw;
	height: 100vh;
	margin: 0;
	overflow: hidden;
	background-image: url("../images/background.png");
	background-repeat:repeat;
	background-size: 25%;
}

/*Code for the responsive element*/
#mobile_nav{
	display: none;
	
}

#hamburger_menu {
	display: none;
}

#mask {
position: absolute;
    width: 105%;
    height: 100%;
    background-color: black;
    opacity: 0.8;
    z-index: 4;
    display: none;
}

/*Start of header code */
#header {
	position: relative;
	width: 100vw;
	height: 10vh;
	float: left;
	clear: left;
}

#flex-container1 {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}
	

.flex-item1 {
	position: relative;
	width: 20%;
	font-size: 1.5vw;
	text-align: center;
}

.flex-item1_2 {
	position: relative;
	font-size: 2.0vh;
	text-align: center;
	color: black;
	height: 31%;
	width: 100%;
	line-height: 4vh;
}

.logo {
    position: absolute;
    z-index: 3;
    height: 200%;
    width: auto;
    float: left;
    clear: left;
    left: 2%;
    top: 30%;
}

/*Start of nav code */
#nav {
    float: left;
    text-align: left;
    margin-left: 40px;
    margin-top: 125px;
    display: flex;
    flex-wrap: nowrap;
    width: 75%;
    flex-direction: column;
}

.flex-item2 {
	position: relative;
	width: 25%;
	text-align: left;
	font-size: 1.5vw;
	line-height: 5vh;
	height: 100%;
	cursor: pointer;
	font-family: sans-serif;
}

.title {
    position: relative;
    text-align: left;
    left: 28%;
    top: -28%;
    font-size: 2.5vw;
    height: 5%;
    font-family: sans-serif;
    width: 50%;
}

.testimonials {
    position: absolute;
    width: 50%;
    height: 20%;
    text-align: left;
    right: 2%;
    font-family: cursive;
	color: #71bfd1;
    font-size: 1.25vw;
    top: 4%;
}
/*RATES AND AVAILABILITY CSS*/
table {
    font-family: sans-serif;
    border-collapse: collapse;
    width: 30%;
    position: absolute;
    left: 27.5%;
    top: 33%;
}

td, th {
  border: 1px solid #dddddd;
  text-align: center;
  padding: 3px;
}

tr:nth-child(even) {
  background-color: #dddddd;
}
#calendar {
    position: absolute;
    left: 60%;
    top: 33%;
    width: 38%;
    height: 60%;
    overflow: hidden;
}
/*Phone Landscape Screen Code*/
@media screen and (min-width: 667px) and (max-width: 926px) and (orientation: landscape){
	
	body{
	    overflow:scroll;
	}
	
	.logo {
    left: 2%;
}

    .title {
    left: 27%;
    top: -38%;
}
	
	#nav {
    margin-left: 15px;
    margin-top:65px;
}
	
	.flex-item2 {
    font-size: 2vw;
    line-height: 6vh;
}
	/*RATES AND AVAILABILITY CSS*/
    table {
    width: 65%;
    left: 27%;
    top: 36%;
}

    td, th {
  font-size: 2vw;
}

.testimonials {
    width: 65%;
    height: 41%;
    font-size: 2vw;
    top: 192%;
    left:27.5%;
}

    #calendar {
    position: absolute;
    left: 27%;
    top: 150%;
    width: 65%;
    height: auto;
    overflow: hidden;
    
}

}

/*Phone Portrait Screen Code*/
@media screen and (max-width:428px){
	
	a:link {
    color: white;
}

    a:visited {
    color: white;
}
	
	body {
		overflow: scroll;
	}
	
	#nav{
		display: none;
}
	.logo {
    height: 150%;
    left: 15%;
    top: -30%;
	}
	
	#hamburger_menu {
	position: relative;
    width: 10%;
    left: 45%;
    clear: left;
    float: left;
    font-size: 10vw;
    display: block;
    text-align: center;
    cursor: pointer;
    top: 19vh;
	}
	
	#mobile_dropdown {
    position: absolute;
    width: 100%;
    float: left;
    clear: left;
    height: 10%;
    top: 27vh;
    z-index: 5;
}
	
	.mobile_nav_link {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	text-align: center;
	margin-bottom: 1vw;
	cursor: pointer;
	font-family: sans-serif;
    font-size: 10vw;
    line-height: 12vw;
}
	/*RATES AND AVAILABILITY CSS*/
    table {
    width: 90%;
    left: 5%;
    top: 36%;
}

    td, th {
  font-size: 3.5vw;
}
.title {
    text-align: center;
    top: 30%;
    font-size: 6vw;
    width: 75%;
    left: 10%;
}

.testimonials {
    width: 90%;
    height: 16%;
    font-size: 3vw;
    top: 112%;
    left:5%;
}

    #calendar {
    position: absolute;
    left: 5%;
    top: 90%;
    width: 90%;
    height: auto;
    overflow: hidden;
    
}

}

/*Tablet Landscape Screen Code*/
@media screen and (min-width: 1024px) and (max-width: 1100px) {
    
	body {
		overflow: scroll;
	}

	#nav{
		
	}
	
	.logo {
    height: 150%;
    left: 3%;
    top: 35%;
}
	
	.flex-item2 {
    font-size: 2vw;
    line-height: 6vh;
	width: 30%;
}
	
	/*RATES AND AVAILABILITY CSS*/
    table {
    top: 27%;
    width: 57%;
    }

    .title {
    top: -36%;
    }

    .testimonials {
    font-size: 1.75vw;
    width: 60%;
    top: 1%;
    }

    #calendar {
    padding: 3vh;
    left: 25%;
    width: 58%;
    height: 40%;
    top: 90%;
}
}

/*Tablet Portrait Screen Code*/
@media screen and (min-width:760px) and (max-width: 1000px) and (orientation: portrait){

      a:link {
  color: white;
	text-decoration: none;
}

    a:visited {
    color: white;
	text-decoration: none;
}
    
    #nav{
        display:none;
    }
    
    body {
		overflow: scroll;
	}
    
    .logo {
    height: 150%;
    left: 25%;
    top: -60%;
    }

#hamburger_menu {
	position: relative;
    width: 10%;
    left: 45%;
    clear: left;
    float: left;
    font-size: 10vw;
    display: block;
    text-align: center;
    cursor: pointer;
    top: 17vh;
    z-index:5;
	}
	
	#mobile_dropdown {
    position: absolute;
    width: 100%;
    float: left;
    clear: left;
    height: 10%;
    top: 27vh;
    z-index: 5;
}
	
	.mobile_nav_link {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	text-align: center;
	margin-bottom: 1vw;
	cursor: pointer;
	font-family: sans-serif;
    font-size: 10vw;
    line-height: 12vw;
}
    
    /*RATES AND AVAILABILITY CSS*/
    table {
    width: 70%;
    left: 15%;
    top: 32%;
    }

    .title {
    position: absolute;
    left: 0%;
    top: 26%;
    font-size: 4vw;
    width: 100%;
    text-align: center;
}

    .testimonials {
    position: absolute;
    font-size: 2vw;
    width: 80%;
    left: 10%;
    top: 112%;
    height: 14%;
}

    #calendar {
    left: 15%;
    top: 80%;
    width: 70%;
    height: 30%;
    }
    
}