/*
index.css
created on 4/3/19
by Twin Tiers IT, LLC
modified 7/22/19
*/

#grid {
	display: grid;
	grid-template-columns: 1fr;
}

#hero {
	height: 85vh;
	min-height: 450px;
	background-image: url('../images/hero.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #5a5a5a;
	display: grid;
	justify-items: center;
	align-items: center;
}

h1 {
	font-size: 50px;
}

#a_hero {
	align-self: start;
	font-size: 35px;
	text-decoration: none;
}

h1, #a_hero {
	text-align: center;
	color: #fff;
	text-shadow: 1px 1px 2px #000;
	font-family: 'Libre Baskerville', serif;
	font-weight: bold;
}

/* MailChimp signup form styling */

#mc_embed_signup {
	align-self: end;
    background: #fff;
    font-size: 14px;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
}

#mc-embedded-subscribe-form {
	max-width: 450px;
	margin-left: auto;
	margin-right: auto;

}

#mc-embedded-subscribe {
	font-weight: 500;
	background-color: #5a5a5a;

}

/* End of mailchimp styling */

#about {
	width: 80%;
	max-width: 800px;
	text-align: left;
	margin: 75px auto 75px auto;
	color: #5a5a5a;
}

em {
	font-family: 'Libre Baskerville', serif;
	font-size: 20px;
	font-weight: 700;
}

.p_about {
	font-size: 18px;
	font-weight: 500;
	margin-top: 10px;
	margin-bottom: 10px;
}

div#units {
	background-color: #3c97bf;
	padding-top: 2%;
}

h2.rentals {
	color: #fff;
	font-size: 400%;
	font-family: 'Libre Baskerville', serif;
	text-align: center;
	width: 100%;
}

p#units_header {
	color: #fff;
	font-size: 200%;
	text-align: center;
	padding-left: 1%;
	padding-right: 1%;
}

.phone_mobile {
	font-size: 250%;
	color: #fff;
	text-shadow: 2px 2px 2px #5a5a5a;
	font-weight: bold;
	text-decoration: none;
	display: block;
	text-align: center;
	margin-bottom: 5%;
}

#unit_container {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr 1fr;
	color: #5a5a5a;

}

#unit_1, #unit_2 {
	grid-column-start: 1;
	grid-column-end: 2;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr 1fr 1fr 1fr;
}

#unit_1 {
	grid-row-start: 1;
	grid-row-end: 2;
}

#unit_2 {
	grid-row-start: 2;
	grid-row-end: 3;
}

.slideshow_wrapper, .amenities, .rates, .booking  {
	grid-column-start: 1;
	grid-column-end: 2;
}

.slideshow_wrapper {
	grid-column-start: 1;
	grid-column-end: 2;
	grid-row-start: 1;
	grid-row-end: 2;
	width: 100%;
	height: 300px;
	justify-self: center;
}

img {
	box-shadow: 2px 2px 7px #fff;
	width: 90%;
	height: auto;
}




* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: 3% auto;
  width: 95%;

}

/* Hide the images by default */
.mySlides1, .mySlides2 {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(91,91,91,0.2);
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(91,91,91,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot1, .dot2 {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 1% 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot1:hover, .dot2:hover {
  background-color: #5a5a5a;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

.amenities {
	grid-row-start: 2;
	grid-row-end: 3;
}

.rates {
	grid-row-start: 3;
	grid-row-end: 4;
	background-color: #5a5a5a;
	width: 100%
	height: 100%;
	border: 1px solid #5a5a5a;

}

table {
	border: 5px solid #fff;
	margin: 0% auto 7% auto;
	width: 90%;
}

tr {
	width: 100%;
}

td {
	border: 3px solid #fff;
	color: #fff;
	font-size: 200%;
	padding: 2%;
	width: 40%;
	text-align: center;
}

a.button {
	text-decoration: none;
	text-align: center;
	border-radius: 5px;
	border: 3px solid #fff;
	background-color: #5a5a5a;
	color: #fff;
	font-size: 100%;
	margin: 3% auto 9% auto;
	padding: 1%;
	display: block;
	width: 30%;
}

.booking {
	grid-row-start: 4;
	grid-row-end: 5;
	padding-bottom: 2%;
}

p.inquire {
	color: #fff;
	text-align: center;
	font-size: 160%;
	margin: 5%;
	overflow-wrap: break-word;
}

p.booking {
	color: #fff;
	text-align: center;
	margin-bottom: 1%;
}

a.email {
	color: #fff;
	text-shadow: 2px 2px 2px #5a5a5a;
}

a.email:hover {
	color: #5a5a5a;
}

div#directions {
	width: 100%;
	padding-top: 2%;
}

div#directions_Container {
	width: 100%;
	padding: 2%;
	vertical-align: top;
}

h2#directions_Heading {
	color: #5a5a5a;
	text-align: left;
	margin-top: 0%;
	margin-left: 5%;
	font-family: 'Libre Baskerville', serif;
}

p#directions_Text {
	font-size: 100%;
	color: #5a5a5a;
	margin: 5% 5%;
}

div#iframe_Container {
	width: 100%;
	padding-top: 2%;
}

iframe {
	width: 90%;
	height: auto;
	margin: 2% auto;
	display: block;
}

} /* End of default styling */

@media screen and (min-width: 470px) {

#mc_embed_signup {
	padding-left: 0;
	padding-right: 0;
}

} /* End 470px */



@media screen and (min-width: 606px) {

h1 {
	font-size: 55px;
}

#a_hero {
	font-size: 40px;
}


} /* End of 606px */


@media (min-width: 840px) {

div#directions_Container {
	display: table-cell;
	width: 50%;
	padding: 2%;
	vertical-align: top;
}

p#directions_Text {
	text-align: left;
	font-size: 150%;
	color: #5a5a5a;
}

div#iframe_Container {
	display: table-cell;
	width: 50%;
	padding-top: 2%;
}

iframe {
	width: 400px;
	height: 400px;
	margin: 2% auto;
	display: block;
}



}   /* End of min-width: 840px - max-width: 1365px */

@media screen and (min-width: 1100px) {

h1 {
	font-size: 60px;
}

#a_hero {
	font-size: 45px;
}

#about {
	margin-top: 125px;
	margin-bottom: 125px;
}

em {
	font-size: 24px;
}

.p_about {
	font-size: 20px;
	margin-top: 30px;
	margin-bottom: 30px;
}

} /* End of 1100px */


@media only screen and (min-width: 1366px) {
	div#banner_container {
	height: 683px;
	width: 100%;
	/*background-image: url('../images/hero_l.jpg');*/
	background-image: url('../images/evv_hero_new.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-color: #3c97bf;
}



div#units {
	background-color: #3c97bf;
	padding-top: 2%;
}

h2.rentals {
	color: #fff;
	font-size: 400%;
	text-align: center;
	width: 100%;
}

p#units_header {
	color: #fff;
	font-size: 200%;
	text-align: center;
}

.phone_mobile {
	font-size: 250%;
	color: #fff;
	text-shadow: 2px 2px 2px #5a5a5a;
	font-weight: bold;
	text-decoration: none;
	display: block;
	text-align: center;
	cursor: default;
}

#unit_container {
	border-top: solid 10px #fff;

}



div.unit_cell {
	display: table-cell;
	width: 50%;
	min-width: 400px;
	vertical-align: top;

}

div#rates {
	background-color: #5a5a5a;
	width: 100%
	height: 100%;
	border: 1px solid #5a5a5a;

}

table {
	border: 5px solid #fff;
	margin: 0% auto 7% auto;
	width: 90%;
	min-width: 360px;
}

tr {
	width: 100%;
}

td {
	border: 3px solid #fff;
	color: #fff;
	font-size: 200%;
	padding: 2%;
	width: 40%;
	text-align: center;
}

a.button {
	text-decoration: none;
	text-align: center;
	border-radius: 5px;
	border: 3px solid #fff;
	background-color: #5a5a5a;
	color: #fff;
	font-size: 100%;
	margin: 3% auto 9% auto;
	padding: 1%;
	display: block;
	width: 30%;
}



p.inquire {
	color: #fff;
	text-align: center;
	font-size: 140%;
	margin: 5%;
}

p.booking {
	color: #fff;
	text-align: center;
}

a.email {
	color: #fff;
	text-shadow: 2px 2px 2px #5a5a5a;
}

a.email:hover {
	color: #5a5a5a;
}

div#directions {
	display: table;
	width: 100%;
	padding-top: 2%;
}



}   /* End of min-width: 1366px - max-width: 1919px */

@media screen and (min-width: 1500px) {

h1 {
	font-size: 65px;
}

#a_hero {
	font-size: 50px;
}

em {
	font-size: 26px;
}
.p_about {
	font-size: 24px;
}

#about {
	max-width: 1000px;
}

} /* End of 1500px */


@media (min-width: 1920px) {



div#banner_container {
	height: 960px;
	width: 100%;
	background-image: url('../images/hero_xl.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-color: #3c97bf;

}

h1#hero_h1 {
	font-size: 500%;
}

h2#hero_h2 {
	font-size: 450%;
}

h2#directions_Heading {
	font-size: 300%;
}

iframe {
	max-width: 400px;
	max-height: 400px;
	margin: 2% auto;
	display: block;
}




} /* End of min-width: 1920px */