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

/* ============================================== */
/* =================== fonts ==================== */
/* ============================================== */

@font-face {
    font-family: 'amatic';
    src: url('../fonts/amaticsc-regular-webfont.woff2') format('woff2'),
         url('../fonts/amaticsc-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'aurore';
    src: url('../fonts/la_belle_aurore-webfont.woff2') format('woff2'),
         url('../fonts/la_belle_aurore-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'robotobold';
    src: url('../fonts/roboto-bold-webfont.woff2') format('woff2'),
         url('../fonts/roboto-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'robotoitalic';
    src: url('../fonts/roboto-italic-webfont.woff2') format('woff2'),
         url('../fonts/roboto-italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'robotolight';
    src: url('../fonts/roboto-light-webfont.woff2') format('woff2'),
         url('../fonts/roboto-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'robotoregular';
    src: url('../fonts/roboto-regular-webfont.woff2') format('woff2'),
         url('../fonts/roboto-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
/* ============================================== */
/* ============== body and wrapper ============== */
/* ============================================== */

body{
	font-size: 100%;	
    color: #1e2a2f;
    font-family: robotolight, verdana, helvetical, sans-serif;
}
.inner_wrapper{
	display: block;
	overflow: hidden;
    margin: 0 auto;
}
#wrapper{
    margin: 0 auto;

	display: block;
	overflow: hidden;
}
#wrapper, .inner_wrapper, .boreal-info{ /* boreal-info has abs positioning so need to duplicate these properties there also */
   
      max-width: 1400px;
    min-width: 1000px;
}
/* ============================================== */
/* ===================== nav ==================== */
/* ============================================== */
.nav-logo{
    display: block;
    width: 200px;
    float: left;
    margin-top: -5px;
}
nav{
	display: block;
	overflow: hidden;
	text-transform: uppercase;
    padding-top: 10px;
    height:55px;
    transition: top 0.35s;
}

nav ul{
	float: right;	
}
nav ul li{
	display: block;
	line-height: 2.2;
	border-right: 1px solid #9fafb0;
	padding: 0 20px;
	float: left;
}
nav ul li:last-of-type{
    border-right: none;
}

nav a{
    position: relative;
	text-decoration: none;
	color: #fff;
    letter-spacing: 0.1em;
    padding: 5px 0;
    transition: all 0.3s;
}
nav.dark a{
	color: #4b4953;	
}
nav.dark a:hover{
	color: #c28721;	 /* darker colour to be more visible */
}

nav a:hover, nav a.active, nav.fixed a:hover, nav.dark a.active, nav.fixed a.active{
    text-decoration: none;
    color: #f9bb51;/* lighter colour to be more visible */
}
nav ul li a::before, footer ul li a::before, footer p a::before {
    position: absolute;
    top:-3px;
    left: 0;
    height: 100%;
    display:block;
    content: ' ';
  border-bottom: 1px solid #FFF;
    width: 0;
    transition: all 0.3s;
}
nav.dark ul li a::before{
    border-color: #4b4953;
}
nav ul li a:hover::before, footer ul li a:hover::before, footer p a:hover::before{
    border-color: #c28721;
    width: 100%;
     -webkit-transform-origin: 0% 0%;
}
/* ------------------ fixed nav ------------------------- */
@keyframes animate-nav {
/*    from {top: -60px;}*/
    100% {top: 0;}
}
@keyframes animate-nav-backwards {
    from {top: 0;}
    to {top: -60px;}
}
nav.fixed ul li{
    border-color: #716d7f;
}
nav.fixed{
    z-index: 100;
        position: fixed;
    width: 100%;
    padding: 10px;
    top: -60px;
    left: 0;
    background-color: #0f1112;
    animation: animate-nav 0.3s;
   animation-fill-mode: forwards;
}
/* on home page, don't show logo in nav area because logo is in the header for this page */
#home-logo{
    display: none;
}
/* make it visible in the sticky nav */
nav.fixed #home-logo{
    display: block;
}
nav.nav-transition{
     animation: animate-nav-backwards 0.30s;
     animation-fill-mode: forwards;
   
}
nav.fixed a{
    color: #fff;
}
/*====================== spacer styles ====================== */
#spacer{
    margin: 0;
    display: block;
	padding-top: 0p;	
}
#spacer.fixed{
	padding-top: 55px;	
}
/* ============================================== */
/* ===================== header ==================== */
/* ============================================== */

header{
    display: block;
	position: relative;
	min-height: 900px;
	background-image: url(../images/pine_lake_banner2.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
		text-align: center;
		color: #fff;
    
    
}
.full-size{
    height:100vh; /* full height of browser window */
}
header::after{
	content: ' ';
	display: block;
	width: 100%;
	height: 241px;
	background-image: url(../images/edge.png);	
	background-repeat: repeat-x;
	position: absolute;
    z-index: 10;
	bottom: 0;
	left: 0;
}
header > div {
	display: block;
    height: 100%;
	margin-top: 120px;
    position: relative;
}


header > div a{
    clear: both;
}

h1, h2, h3{
	font-family: amatic, "Arial Narrow",  Arial,  sans-serif;
}
h4{
    
    font-family: robotobold, verdana, helvetica, sans-serif;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    font-size: 1.125em;
}
h1{
	font-size: 6.25em; /* 100/16 */	
}
h2{
    font-size: 3.75em; /* 60/16  */ 
    margin-bottom: 25px;
}
header p{
    font-size: 2.5em;/* 40/16 */
    font-family: aurore, "Brush Script MT", cursive;
/*    margin-bottom: 1.5em;*/
}
header .button{
     z-index: 90;
    position: absolute;
    left: 50%;
    top: auto;
    margin-left: -105px; /* 210/2 */
    
}

/* ============================================== */
/* ===================== intro ================== */
/* ============================================== */


#intro p{
    font-size: 1.5em; /* 24/16 */
    margin-bottom: 0.5em; /* 12/24 */
}
#intro .emph{
    margin-top: 2em; 
}
/* ============================================== */
/* ===================== stats ================== */
/* ============================================== */
#stats{
    font-size: 1.125em; /* 18/16 */
    line-height: 1.333333; /* 24/18 */
}
#stats img{
    margin-bottom: 34px;
}
/* move this image up to be in line with the others */
#stats .three-cols:last-of-type img {
    margin-top: -20px;
}
/* ============================================== */
/* ================== cottages ================== */
/* ============================================== */
#cottages{
    
    
}
#cottages h2 span{
    font-size: 0.6em; /* 36/60 */
    position: relative;
    top: -8px;
   
}
#cottages img{
    width: 100%;
    max-width: auto;
}
#cottages ul{
    font-size: 1.125em;/* 18/16 */
    margin-bottom: 40px;
}
#cottages ul li{
    margin-bottom: 12px;
}
#cottages ul li:first-child {
    font-family: robotoregular, verdana, helvetica, sans-serif;
    font-size: 1.875em; /* 30/16  */
}
#cottages ul li:first-child span {
    font-family:robotolight, verdana, helvetica, sans-serif;
    font-size: 0.4666666666em; /* 14/18  */
}
.cottage-teaser{
    display: block;
    min-height: 290px;
}
/* adjust image size for last cottage... needs to be bigger
since its the BEST cottage */
#cottages > div:last-of-type .cottage-teaser img{
    width: 130%;
    margin-left: -20%;
}
/* ============================================== */
/* ========= ====== rediscover ================== */
/* ============================================== */

#rediscover{
    background-image: url(../images/rediscover.jpg);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 80%;
    min-height: 753px;
    position: relative;
    display: block;
}
#rediscover > div{
    margin: 80px 40px 60px 0;*/
    display: block;
    float: right;
    width: 40%;
}
#rediscover h2, #rediscover p{
       text-align: left;
}
#rediscover .button{
    margin-top: 45px;
    float: left;
}
/* ============================================== */
/* ========= ====== questions ================== */
/* ============================================== */

#questions{
     background-image: url(../images/fishing.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 700px;
    display: block;
    position: relative;
}
#questions h2:first-of-type{
    margin-bottom: 0;
}
#questions > div{
    display: block;
    width: 50%;
    min-width: 300px;
    margin: 200px auto 0 auto;
}
#questions::after{
    content: ' ';
	display: block;
	width: 100%;
	height: 132px;
	background-image: url(../images/edge2.png);	
	background-repeat: repeat-x;
	position: absolute;
	bottom: 0;
	left: 0;
}
#questions .button{
    margin-top: 30px;
}
/* ============================================== */
/* =============== newsletter  ================== */
/* ============================================== */
#newsletter{
    display: block;
    margin-bottom: 80px;
}
#newsletter h2{
    width: 600px;
    margin: 0 auto;
    margin-bottom: 42px;
}
#newsletter p{
    width: 400px;
    margin: 0 auto;
}
form{
    width: 555px;
    margin: 40px auto;
    display: block;
    overflow: auto;
}
input[type="email"]{
    height: 56px;
    padding: 10px;
    border: 1px solid #274454;
    text-transform: uppercase;
    color: #485f6c;
    float: left;
    width: 300px;
}
/* ============================================== */
/* =================== footer =================== */
/* ============================================== */
footer{
    min-height: 540px;
    display: block;
    overflow: auto;
    color: #fff;
    background-image: url(../images/footer.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
footer .three-cols:first-of-type  p{
    display: block;
    float: right;
    max-width: 270px;
}
footer .button{
    float: left;
    text-align: center;
    margin-top: 44px;

}
footer iframe{
    display: block;
    float: left;
    width: 46.811594202%; /* 323/690 */
   min-height: 323px;
    margin-right: 20px;
}
footer a{
    color: #fff;
    position: relative;
    transition: all 0.3s;
}
footer a:hover{
    color: #e9aa3d;
}
footer h3{
    font-family: roboto, verdana, helvetica, sans-serif;
    display: block;
    height: 40px;
    border-bottom: 2px solid #fff;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
}
footer ul li{
    font-family: robotolight, verdana, helvetical, sans-serif;
    letter-spacing: 0.1em;
    margin-bottom: 25px;
}
footer .three-cols{
    margin: 0 !important;
    padding: 30px 20px;
}
footer .three-cols:first-of-type img{
    margin-bottom: 35px;
}
footer .three-cols:first-of-type {
    text-align: right;
    width: 28.92%; /* 405/1400  */
}
footer .three-cols:nth-child(2) {
    width: 21.78%; /* 305/1400  */
}
footer .three-cols:nth-child(2) h3:last-of-type{
    margin-top: 70px;
}
footer .three-cols:nth-child(3) {
    width: 49.28%; /* 690/1200 */
}
/* ============================================== */
/* ============= common styles ================== */
/* ============================================== */
p{
    margin-bottom: 0.75em; /* 12/16*/
    letter-spacing: 0.01em; 
    line-height: 1.5; /* 24/16 */
}
section{
    text-align: center;
    display: block;
    overflow: auto;
    margin: 40px 0;
}
.emph-sans-serif {
    font-size: 1.5em; /* 24/16 */
    line-height: 1.416666667 /* 34/24*/
}
.emph{
    font-family: aurore, "Brush Script MT", cursive;
    font-size: 2.25em !important; /* 36/16 */
    color: #69888f;
}
.grey{
    background-color: #f9fafb;
    padding: 40px 20px;
}

.three-cols{
    width: 30%;
    display: block;
    float: left;
}
.three-cols:first-of-type {
    margin-right: 3.333%; 
}
.three-cols:nth-child(2) {
    margin-right: 3.333%; 
}
a{
    text-decoration: none;
    padding: 5px 0;
}
a:hover{
   
}
.button, input[type="submit"] {
    text-transform: uppercase;
    color: #fff;
    text-decoration:  none;
    margin: 0 auto;
    display: block;
    background-color: #c28721;
    width: 210px;
    height: 56px;
    line-height: 56px; /* set as px for vertical text alignment */
    letter-spacing: 0.1em;
    border: none;
    box-shadow: inset 0 0 0 0 #363d45;
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	transition: all ease 0.3s;
    position: relative;
    padding: 0;
    text-align: center;
}
.button:hover, input[type="submit"]:hover{
    text-decoration: none;
    box-shadow: inset 210px 0 0 0 #363d45;
    background-color: #363d45;
    color: #e9aa3d;
}

input[type="submit"]{
    float: left;
    padding: 0;
}
input[type="submit"]:hover{
     box-shadow: inset 208px 0 0 0 #363d45;
    background-color: #363d45;
}
h2 span{
    font-size: 0.6em; /* 36/60 */
    position: relative;
    top: -8px;
   
}
.larger{
    width: 320px;
}
.two-cols{
    text-align: left;
    width: 50%;
    float: left;
}
/* max width of second column */
.two-cols:last-of-type {
    max-width: 525px;
    z-index: 30;
}
/* ============================================== */
/* ============ COTTAGES PAGE =================== */
/* ============================================== */

.inner-page{
    min-height: 425px;
}
#cottages-page{
    background-image:  url(../images/header_pines.jpg);
}

#cottages-page::after{
    	background-image: url(../images/edge2.png);	
    bottom: -150px;
}
#cottages-page > div > div:last-of-type{ /* don't select #spacer by mistake */
    margin-top: 60px;
}

.cottage-quick-info {
    text-align: center;
    display: block;
    overflow: auto;
    margin-bottom: 20px;
  
}
.cottage-quick-info li:first-of-type{
    padding-left: 0; /* override to get rid of left padding on first item */
}
.cottage-quick-info h2{
    margin: 0;
    font-size: ; 1.2em;/* 72/60 */
}
.cottage-quick-info li{
    overflow: hidden;
    padding: 0 15px;
    float: left;
    width: 33%;
    border-right: 1px solid #c0c0c0;
}
.cottage-quick-info li:last-of-type{
   border: none;
    max-width: 130px;
}
.cottage-quick-info li p {
    color: #69888f;
    font-size: 0.875em; /* 14/16 */
    line-height: 1.2;
}
.cottage-quick-info li p span{
    display: inline-block;
    font-family: robotoregular, verdana, helvetica, sans-serif;
    font-size:  2.25em; /* 36/16 */
    width: 100%; /* force line break */
}

.cottage-summary{
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 30px;
}
.cottage-summary li{
    margin-bottom: 12px;
    line-height: 1.5;
}

.two-cols > p{
    font-size: 0.875em;
    max-width: 370px;
}
.two-cols .button{
    float: left;
    margin: 30px 30px 0 0;
}
.cottage-pics{
    padding-top: 450px;
    padding-left: 40px;
    min-height: 300px;
  
}
/*
.main-pic {
    position: absolute;
    margin-top: -150px;
    z-index: 20;
    
}
*/
/*
#boreal-parent{
    display: block;
    background-color: red;
    position: relative;
    min-height: 800px;
}
*/
#boreal-placeholder{ /* placeholder in the DOM to mimic boreal-info height so that layout doesnt break.  */
    display: block;
    height: 800px;
   
}
section.boreal-info{
      position: absolute; /* absolute positioning because this section overlaps the header. */
    margin-top: -130px;
    z-index: 20;
    background-image: url(../images/main_boreal.png);
    background-repeat:  no-repeat;
    padding-bottom: 80px;
}
/* blue line to separate sections */
section.boreal-info::after, section.tamarack-info::after{
    content: ' ';
    position: absolute;
    left: 50%;
    margin-left: -225px;
    bottom: 0;
    display: block;
    height: 1px;
    width: 450px;
    border-bottom: 1px solid #a7d2db;

}
section.boreal-info .two-cols:last-of-type{
    margin-top: 160px;
}





section.tamarack-info > div > p {
    text-align: right;
    clear: both;
    float: right;
}
section.tamarack-info ul {
    float: right;
}
section.tamarack-info .button {
    float: right;
    margin-right: 0;
    margin-left: 20px;
    margin-bottom: 60px;
}
section.tamarack-info .button:first-of-type {
    clear: both;
}
section.tamarack-info .cottage-quick-info{
    float: right;
   width: 520px;
    
}

section.tamarack-info .cottage-quick-info li:first-of-type{
   min-width: 215px;

}
section.tamarack-info .cottage-quick-info li:last-of-type{
   max-width: 127px;
}

section.tamarack-info .two-cols:first-of-type{
    width: 55%;
    padding-top: 200px;
}
section.tamarack-info .two-cols:last-of-type{
    width: 45%;
    padding-right: 0;
}

section.tamarack-info{
    position: relative;
     background-image: url(../images/main_tamarack.png);
    background-repeat:  no-repeat;
    background-position:  right top;
    padding-bottom: 60px;
   overflow-x: hidden;

}

section.northern-info{
    margin-bottom: 160px;
}

section.northern-info{
    margin-bottom: 160px;
} .cottage-quick-info li:first-of-type{
    min-width: 205px;
    
}
section.northern-info .cottage-quick-info li:last-of-type{
    max-width: 115px;
    
}

section.northern-info{
     background-image: url(../images/main_northern.png);
    background-repeat:  no-repeat;
    background-size: 50%;
    overflow: hidden;
}
section.northern-info .two-cols:last-of-type{
    padding-top: 200px;
    min-width: 500px;
    max-width: 587px;
}



/* ============================================== */
/* ================== GALLERY =================== */
/* ============================================== */

.gallery-thumbnails img{
    width: 97px;
    height: 97px;
    opacity: 0.58;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0);
}
.gallery-thumbnails img:hover{
    opacity: 1;
}
.gallery-thumbnails img.active-thumb{
    border: 2px solid rgba(194, 135, 33, 1);
    opacity: 1;
}
.gallery{
    color: #fff;
    width: 90%;
    max-width: 570px;
    min-height: 300px;
}
.gallery-thumbnails{
    color: #000;
}
.gallery-big-pic{
    width: 100%;
    height: auto;
}
.gallery-big-pic img{
  width: 100%;
}

#t_gallery{
    width: 100%; /* bump up tamarack gallery size since its column is smaller */
}


/* ============================================== */
/* ================== modal window =================== */
/* ============================================== */

.modal-window{
     position: fixed;
    /* allow scroll inside modal wnidow only */
    overflow-x:auto;
    overflow-y:scroll;
    bottom:0;left:0;right:0;top:0;
    background-color: rgba(0, 0, 0, 0.85);
     display: block;
    z-index: 110; /* above even the nav */
    opacity: 0;
    transition: all 0.3s;
}
.modal-window-content{
   /* z-index: 120;  above modal window and fixed nav */
   display: block;
    overflow: auto;
    width: 800px;
    margin: 60px auto;
    background-color: #fff;
    padding: 20px;
    letter-spacing: 0.01em;
    transition: all 0.3s;
    transform: scale(0.8);
    opacity: 0;
}
.modal-window-content.modal-grow{
    opacity: 1;
    transform: scale(1.0);
}
.modal-window.modal-grow{
      opacity: 1;
}
.modal-window-content p{
    margin: 40px auto;
    width: 400px;
    text-align: center;
    font-size: 1.3em;
}
.modal-window-content table{
    margin: 40px 0 15px 0;
    
}
.modal-window-content  table th{
    text-transform: uppercase;
    background-color: #fff;
    font-size: 0.875em;
}

.modal-window-content table tbody tr th:first-child{
    text-align: right;
    max-width: 120px;
}
.modal-window-content  table td, .modal-window-content  table th{
    padding: 15px;
}
.modal-window-content  table tr:nth-child(even){
    background-color: #f7f7f7;
}
.modal-window-content table tr td{
    border-bottom: 1px solid #e8e8e8;
    text-align: center;
    color: #69888f;
    line-height: 1.2em;
}

.modal-window-content table tr:first-child th{
    font-family: amatic, "Arial Narrow",  Arial,  sans-serif;
    color: #c5881e;
    font-size: 3.25em; /* 60/16  */ 
    margin-bottom: 25px;
}
.modal-window-content table tr:first-child th span{
    font-size: 0.6em; /* 36/60 */
    position: relative;
    top: -8px;
   
}
/* first content row (prices) */
.modal-window-content table tr:nth-child(2) td{
    font-family: robotoregular, verdana, helvetica, sans-serif;
    font-size: 1.5em;
}
.modal-window-content .button:first-of-type{
    margin-left: 135px;
}
.modal-window-content .button{
    float: left;
    margin-right: 52px;
    width: 160px;
}
.modal-window-content .button:last-of-type{
    margin-right: 0;
}
#close{
    display: block;
    float: right;
    opacity: 0.5;
    transition: all 0.3s;
}

#close:hover{
    opacity: 1.0;
}
.modal-window-content h3.legal{
    clear: both;
    text-align: left;
    font-size: 1.2em;
    width: 540px;
    float: left;
    font-family: robotolight, verdana, helvetical, sans-serif;;
    margin: 60px 0 12px 0;
    color: #828282;
}
.modal-window-content p.legal{
    font-size: 0.85em;
    text-align:  left;
    width: 540px;
    margin: 0;
    color: #828282;
}

.modal-window-content p.legal a{
    color: #c28721;
}
/* placed on body to prevent body scroll when modal active (trigger by JS) */
.modal-active {
     overflow: hidden;
}
/* ======================================================= */
/* ================== A DAY IN THE LIFE=================== */
/* ======================================================= */
/* id for the header of Day in the life page */
#life-page{
    background-image: url(../images/banner_duck.jpg);
}
/* first section on page- lifetime from stress (haha I wish!) */
#lifetime{
    background-image: url(../images/drawn_map.jpg);
    background-repeat: no-repeat;
    background-position:  center left 490px;
    min-height: 684px;
    padding-top: 200px;
    
}
#lifetime > div{
    display: block;
    width: 502px;
    overflow: auto;
}
#lifetime h2, #lifetime p{
    float: right;
    clear: right;
    text-align: right;
/*    margin-left: 216px;*/
    
}
#lifetime p, #lifetime h2:last-of-type{
    
}
#lifetime p {
    max-width: 422px;
}
/* ================================================= pristine lakes */
#pristine{
    color: #fff;
    display: block;
     background-image: url(../images/pristine_lake.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 626px;
}
#pristine p{
    max-width: 415px;
    margin: 0 auto;
}
#pristine > div{
    display: block;
    width: 600px;
    height: auto;
    margin: 200px auto 0 auto;
}

/* ================================================= gear lodge */

#gear-lodge{
    display: block;
    overflow: hidden;
    min-height: 200px;
    margin: 80px 0 80px 0;
}
#gear-lodge p{
    max-width: 545px;
    margin: 0 auto;
}
/* contains all 3 sections for centering */
#gear-lodge > div{
    display: block;
    overflow: auto;
    width: 910px;
    margin: 20px auto;
}
/* the grey areas for each section */
#gear-lodge > div > div {
    display: block;
    float: left;
    width: 290px;
    background-color: #f9fafb;
    margin-right: 20px;
    height: 440px;
    padding: 20px;
}
/* override so last div doesnt have margin (not required) */
#gear-lodge > div > div:last-of-type{
    margin-right: 0;
}
/* div that image/icons are inside */
#gear-lodge > div > div > div{
    display: block;
    height: 172px;
    overflow: auto;
  
    
}
#gear-lodge > div > div > div img{
margin-top: 50px;
    
}
#gear-lodge h3{
     font-size: 3em; /* 48/16 */
}   
#gear-lodge > div ul{
    margin-top: 20px;
}
#gear-lodge > div ul li{
    margin-bottom: 8px;
}
/* ================================================= parks */

#parks{
    display: block;
    background-image: url(../images/moose.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 730px;
    color: #fff;
}
/* contain the content and position it */
#parks > div{
    width: 730px;
    min-height: 420px;
    margin: 150px 0 0 120px;
    float: left;
    display:block;
    overflow: auto;
}
#parks > div > p{
    margin-bottom: 30px;
}
.park-name, .dashed-line, .drive-time{
    padding-top: 3px; /* line up with the dashed line better */
 display: block;
 float: left;
    height: 30px;
    margin-bottom: 20px;
}
.park-name{
    clear: left;
    width: 220px;
    text-align: right;
     margin-right: 12px;
}
.dashed-line{
    width: 50px;
     background-image: url(../images/dashed-line.gif);
    background-repeat: repeat-x;
    background-position: left center;
    margin-right: 12px;
}

.killbear{
     width: 110px;
}
.french-river{
    width: 208px;
}
.killarney{
    width: 300px;
}
/* ================================================= winterized! */


#off-season{
    display: block;
    overflow: auto;
    margin: 80px 0;
}

#off-season .off-season-intro{
    width: 900px;
    margin: 0 auto;
    overflow: auto;
}
#off-season .off-season-intro h2{
    float: left;
    display: block;
    width: 50%;
    text-align: right;
    padding-right: 20px;
    border-right: 1px solid #c28721;
    
}
#off-season .off-season-intro p{
    text-align: left;
    float: left;
    display: block;
    width: 40%;
    padding-left: 20px;
    font-size: 1.125em; /* 18/16 */
}
.factoid{
    display: block;
    overflow: auto;
    width: 900px;
    margin: 0 auto;
}
.factoid .text-left p{
    max-width: 255px;
    float: right;
    margin-right: 20px;
}
.factoid .text-right p{
    max-width: 225px;
    margin-left: 40px;
}
.text-left, .image-right{
display: block;
    overflow: auto;
    width: 540px;
    float: left;
}
.text-left{
    padding-top: 150px;
    width: 360px;
    text-align: right;
    background-image: url(../images/snowflake.jpg);
    background-repeat: no-repeat;
    background-position: top 20px left 0;
}
.image-right img{
    width: 100%;
    display: block;
}

.text-right, .image-left{
display: block;
    overflow: auto;
    width: 540px;
    float: left;
}
.text-right{
    padding-top: 150px;
    width: 360px;
    text-align: left;
        background-image: url(../images/snowflake.jpg);
    background-repeat: no-repeat;
    background-position: top 20px right 0;
}
.image-left img{
    width: 100%;
    display: block;
}

#off-season .button{
    margin-top: 60px;
}

#help-you{
    background-image: url(../images/faded_cottage.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 640px;
    padding-top: 190px;
    margin-bottom: 0;
}
/* ======================================================= */
/* ================== CONTACT=================== */
/* ======================================================= */

/* MAIN HEADER for contact page */
#contact-page{
    background-image: url(../images/pines_purple.jpg);
}
#contact-page h1{
    margin-top: 60px;
}

/* styles for paragraphs to the left */
#contact-intro > div > p{
    text-align: left;
    float: right;
    width: 100%;
/*    min-width: 350px;*/
    font-size: 1.125em; /* 18/16 */
}
.call-out{
    display: block;
    overflow: auto;
    border: 1px solid #efefef;
    width: 254px;
    height: 254px;
    float: left;
    padding: 20px;
    position: relative;
}
/* phone numbers */
.call-out p{
        font-size: 2.5em; /* 48/16 */
    font-family: amatic, "Arial Narrow",  Arial,  sans-serif;
    text-align: center;
    margin: 0;
    width: 100%;
}
.call-out p span{
    color: #c28721;
}
.call-out h2{
    text-align: center;
}
.dark-callout{
    margin-left: 15px;
    background-color: #efefef;
}
#contact-intro .call-out p{
    float: left;
    text-align: center;
}
#contact-intro .two-cols:first-of-type{
    width: 40%;
    padding-right: 30px;
}
#contact-intro .two-cols:last-of-type{
    width: 60%;
}
#location-down{
    background-image: url(../images/arrow_down.png);
    background-repeat: no-repeat;
    width: 85px;
    height: 68px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    margin-left: -42.5px;
    opacity: 0.6;
    transition: all 0.3s;
}
#location-down:hover{
    opacity: 1;
}
/* ================================================= contact form */
#contact-intro form{
    width: 810px;
    clear: both;
    display: block;
    overflow: auto;
    min-height: 350px;
    margin-top: 350px;
}

#contact-intro form > fieldset > div{
 
    width: 400px;
    float: left;
    margin-bottom: 12px;
}
#contact-intro form label{
    display: block;
    float: left;
    text-align: right;
    padding-right: 10px;
    width: 120px;
    background-color: efefef;
    line-height: 40px; /* vertical align */
    text-transform: lowercase;
}
#contact-intro form input, #contact-intro input[type="email"] {
      height: 40px;
    display: block;
    float: left;
    width: 200px;
    text-transform: lowercase;
    
    padding: 10px;
    border: 1px solid #d9dee1;
    color: #485f6c;

}

#contact-intro form input[type="submit"]{
    clear: both;
    float: right;
    margin-right: 90px;
    margin-bottom: 20px;
    line-height: 1;
    text-transform: uppercase;
        color: #fff;
    
}
textarea{
    border: 1px solid #d9dee1;
    float: left;
    width: 600px;
    height: 250px;
    padding: 10px;
    font-family: robotolight,  verdana, helvetical, sans-serif;;
     color: #485f6c;
  
}
#contact-intro select{
     color: #485f6c;
    display: block;
    border: 1px solid #d9dee1;
    height: 40px;
    font-family: robotolight, verdana, helvetical, sans-serif;;
    width: 200px;
    margin: 0;
}
 #contact-intro form > fieldset > div.full-width{
    width: 800px;
}

/* ================================================= location */
#location-page{
    padding-top: 1px;
    background-image: url(../images/pines_sunset.jpg);
}
#map p{
    
    text-align: center;
    margin-top: 20px;
    
    line-height: 1.4;
}
#map p span{
    font-size: 1.25em; 
    font-family: robotoregular, verdana, helvetica, sans-serif;
}
#map{
    margin-bottom: 160px;
}
#map div{
    display: block;
    float: left;
    width: 300px;
}

#map iframe{
    width: 800px;
    min-height: 550px;
    display: block;
    float: left;
    margin-left: 50px;
}

     /* ================================================= media queries! */
@media(max-width:1175px){
    #map iframe{
        float: none;
        margin: 0 auto;
    }
    #map div{
        float: none;
        width: 500px;
        margin: 0 auto;
    }
    #map img{
   margin-top: 20px;
        float: left;
        display: block;
    }
    #map p{
        padding-left: 25px;
        margin-top: 100px;
        border-left: 1px solid #c28721;
        border-left: 1px solid #c28721;
       width: 240px;
        display: block;
        float: left;
        text-align: left;
        margin-left: 30px;
    }
} /* end media query*/



   /* =================================================modal book viewing extras */

#modal-booking-content{
    display: block;
    overflow: auto;
    overflow-x:hidden;
    
}
#modal-booking-content h2{
    margin-top: 30px;
    text-align: center;
}
#modal-booking-content p{
    font-size: 16px;
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}
#modal-booking-content #contact-intro form{
   margin: 40px 0 60px; 0;
    
}



#attribution p{
    /* make it appear clickable */
    cursor: pointer; 
    cursor: hand;
    text-decoration: underline;
    text-transform: uppercase;
    font-size: 0.9em;
    text-align: center;
}
#attribution{
    color: #9bb9cb; /* fade text colour a bit */
    text-align: lft;
    display: block;
    width: 700px;
    overflow: auto;
    margin: 0 auto 20px auto;
}
#attribution-content {
    display: block;
    width: 700px;
    overflow: auto;
    font-size: 0.75em;
    
}
#attribution-content table th{
    text-transform: uppercase;
    background-color: rgba(0, 0,0, 0.25);
}
#attribution-content img{
    width: 40px;
}
#attribution-content table tr{
    border-bottom: 1px solid #333;
}
#attribution-content table td, #attribution-content table th{
    padding: 5px;
      vertical-align: middle;
}
#attribution-content table{
    text-align: left;
  margin-bottom: 3px; /* got rid of vertical scrollbar that was happening */
    
}
#attribution-content a{
    text-decoration: underline;
}



/* ------------------ intro animation! and fade on scroll ----------- */
#animated-intro{
    display: none;
}
/*
#animated-intro{
    position: fixed;
      bottom:0;left:0;right:0;top:0;
    background-color: rgba(255, 255, 255, 1);
     display: block;
    z-index: 110; /* above even the nav */
 /*   animation-delay: 3s;
    animation: animate-mist 6s;
    animation-fill-mode: forwards;
      background-color: rgba(255, 255, 255, 1);
        background-image: url(../images/mist_left_1.png),
            url(../images/mist_left_2.png),
             url(../images/mist_right_1.png);
        background-position: top left, top left, top right;
        background-repeat: no-repeat
}
*/
/*
@-webkit-keyframes animate-mist {
    0% {
       background-color: rgba(255, 255, 255, 1);
    }
    50%{
        opacity: 1.0;
    }
    70% {
       
         background-color: rgba(255, 255, 255, 0);
        
    }
  
        90%{
            opacity: 0;
        }
    100%{
            opacity: 0;    
        background-color: rgba(255, 255, 255, 0);
         background-position:  top -200px left -499px, top -50px left -510px, top -20px right -544px;
    }
}
    @-moz-keyframes animate-mist {
    0% {
       background-color: rgba(255, 255, 255, 1);
    }
    50%{
        opacity: 1.0;
    }
    70% {
       
         background-color: rgba(255, 255, 255, 0);
        
    }
  
        90%{
            opacity: 0;
        }
    100%{
            opacity: 0;    
        background-color: rgba(255, 255, 255, 0);
         background-position:  top -200px left -499px, top -50px left -510px, top -20px right -544px;
    }
}
    @-0-keyframes animate-mist {
    0% {
       background-color: rgba(255, 255, 255, 1);
    }
    50%{
        opacity: 1.0;
    }
    70% {
       
         background-color: rgba(255, 255, 255, 0);
        
    }
  
        90%{
            opacity: 0;
        }
    100%{
            opacity: 0;    
        background-color: rgba(255, 255, 255, 0);
         background-position:  top -200px left -499px, top -50px left -510px, top -20px right -544px;
    }
}
    @keyframes animate-mist {
    0% {
       background-color: rgba(255, 255, 255, 1);
    }
    50%{
        opacity: 1.0;
    }
    70% {
       
         background-color: rgba(255, 255, 255, 0);
        
    }
  
        90%{
            opacity: 0;
        }
    100%{
            opacity: 0;    
        background-color: rgba(255, 255, 255, 0);
         background-position:  top -200px left -499px, top -50px left -510px, top -20px right -544px;
    }
}
*/

p.fade-in {
    opacity: 0;
    animation: animate-fade 4s;
    animation-fill-mode: forwards;
}
a.fade-in {
   opacity: 0;
    animation: animate-fade 4s;
      animation-delay: 2s;
    animation-fill-mode: forwards;
}

@keyframes animate-fade {
    0%{
        opacity: 0;
    }
    50%{
        opacity: 0;
    }

    100%{
        opacity: 1;
      
    }
}

.fade-on-scroll{
    opacity: 0 !important;
    transition: opacity 1.75s;
}
.fade-on-scroll-opaque{
        opacity: 1 !important;

}