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

/* COLORS */
/* Green - #034001 */
/* Brown - #6c3f21 */
/* Light Brown - #f0ebe8 */
/* Default font size = 16px */

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;700&display=swap');

body {
	background-color: #fff;
}

header {
	background-color: #fff;
	width: 100%;
	padding: 12px 0;
}

#header-content {
	width: 70%; /* 960px = 70% */
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

#header-content img {
	height: 120px;
}

nav {
	width: 76.0416666667%; /* 730px / 960px */
	position: absolute;
	bottom: 8px;
	right: 0;
}

nav ul {
	display: block;
	text-align: right;
	list-style-type: none;
}

nav li {
	display: inline-block;
    font-family: 'Jost', sans-serif;
    font-weight: 300;
	font-size: 1.25em; /* 20px / 16px */
	color: #034001;
	padding: 0 4.10958904%; /* 30px / 730px */
	text-align: left;
}

nav li:last-child {
	padding-right: 0;
}

nav a:link {
	text-decoration: none;
	color: #034001;
	/* Remove left/right padding: 10px 20px; It's doing weird stuff */
    padding: 10px auto;
}

nav a:hover {
	color: #034001;
	/* Remove left/right padding: 10px 20px 5px; It's doing weird stuff */
    padding: 10px auto 5px;
    border-bottom: 6px solid #034001;
}

nav a:visited {
    color: #6c3f21; 
}

p {
	font-size: 1em; /* 16px / 16px */
	color: #000;
    font-family: 'Jost', sans-serif;
    font-weight: 300;
	margin-bottom: 16px;
	line-height: 180%;
}

#banner {
	width: 100%;
	height: 525px;
	background: url("../images/clear-lake-banner.jpg");
	background-repeat: no-repeat;
	background-size: cover;
    position: relative;
    text-align: center;
}
#banner h1 {
    font-size: 3.5em; /* 56px / 16px */
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    color: #fff;
}
#banner h4 {
    font-size: 1.625em; /* 26px / 16px */
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    color: #fff;
    margin: 15px 0 50px;
}

#banner a {
    background-color: #034001;
    padding: 15px 3.125%; /* 30px / 960px */
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-weight: 700; 
    font-size: 1.25em; /* 20px / 16px */
    text-decoration: none; 
}

#explore {
    position: relative;
    top: 180px;
}

#wrapper-white {
    display: flex;
    justify-content: space-between;
}
#wrapper-white,
#wrapper-about {
	width: 70%; /* 960px = 70% */
	background-color: #fff;
	margin-left: auto;
	margin-right: auto;
	padding: 60px 0;
    
}

section {
	width: 60.41666667%; /* 580px / 960px */
    height: 340px;
    position: relative;
    text-align: center;
}

section img {
    opacity: 1;
    width: 100%;
    /* CHANGE STYLE FOR HEIGHT */
    height: 340px;
    transition: 1s ease;
}

.discover-content {
    position: absolute;
    top:45%;
    left: 20%;
    right: 20%;
    transition: .5s ease;
}


section a {
    background-color: #034001;
    padding: 15px 5.17241379%; /* 30px / 580px */
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-weight: 700; 
    font-size: 1.25em; /* 20px / 16px */
    text-decoration: none; 
    display: block;
}

section:hover img {
    opacity: .5
}
section:hover .discover-content  {
    transform: scale(1.25);
}


aside {
	width: 33.33333333%; /* 320px / 960px */
}


aside h1 {
	color: #034001;
	font-family: 'Jost', sans-serif;
    font-weight: 700;
	font-size: 1.875em; /* 30px / 16px */
	margin-bottom: 16px;
    text-transform: uppercase;
}

aside p {
	font-size: 1.125em; /* 18px / 16px */
	line-height: 150%;
	font-family: 'Jost', sans-serif;
    font-weight: 300;
	margin-top: 10px;
	margin-bottom: 0;
}

#wrapper-about h1 {
    color: #034001;
	font-family: 'Jost', sans-serif;
    font-weight: 700;
	font-size: 1.875em; /* 30px / 16px */
	margin-bottom: 16px;
    text-transform: uppercase;
    text-align: center;
}

#wrapper-about p {
	font-size: 1.375em; /* 22px / 16px */
	line-height: 150%;
	font-family: 'Jost', sans-serif;
    font-weight: 300;
	margin-top: 10px;
	margin-bottom: 0;
}

#wrapper-trails {
	width: 100%;
	padding: 60px 0;
	background-color: #f0ebe8;
	overflow: hidden;
}

#wrapper-trails h2 {
    color: #034001;
    font-size: 2em; /* 32px / 16px */
    text-align: center;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 40px;
}

#trail-content {
	width: 70%; /* 960px = 70% */
	margin-left: auto;
	margin-right: auto;
}
#spirit-content {
	width: 70%; /* 960px = 70% */
	margin-left: auto;
	margin-right: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
/* NEW STYLES */
#spirit-content .trail-gallery:first-child {
    width: 65.625%; /* (600px (width of pic) + 30px (margin)) / 960px */
}

#spirit-content .trail-gallery {
    width: 31.25%
}

#spirit-content img {
    width: 100%;
}
/* END NEW STYLES */

.trail-box {
	width: 31.25%; /* 300px / 960px */
	text-align: center;
	display: inline-block;
    vertical-align: top;
}

.trail-box:first-of-type {
	margin-right: 2.7083333333333%; /* 26px / 960px */
}

.trail-box:last-of-type {
	margin-left: 2.7083333333333%; /* 26px / 960px */
}

.trail-box h3 {
	color: #034001;
	font-family: 'Jost', sans-serif;
    font-weight: 700;
	font-size: 1.75em; /* 28px / 16px */
	margin: 18px 0 12px;
}

.trail-box p {
	font-size: 1em; /* 16px / 16px */
	margin-bottom: 24px;
}

.trail-gallery img {
    margin-bottom: 30px;
}

footer {
	padding: 40px 0 10px;
	width: 100%;
	font-size: .75em; /* 12px / 16px */
	background-color: #034001;
}

footer h3 {
	font-family: 'Jost', sans-serif;
	color: #fff;
	text-transform: uppercase;
	font-size: 1em; /* 16px / 16px */
	font-weight: 700;
    margin-bottom: 15px;
}

footer p {
	font-family: 'Jost', sans-serif;
    font-weight: 300;
	color: #fff;
}

#footer-content {
	width: 70%; /* 960px = 70% */
	margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

#footer-left {
	width: 30%;
}

#footer-left a {
    color: #fff;
}

#footer-center {
    width: 30%;
}

#footer-center img {
    height: 50px;
    margin-right: 5.20833333%; /* 15px / 288px (288px = 30% of 960px)*/
}

#footer-right {
	width: 30%;
	text-align: right;
}

#footer-right img {
    height: 50px;
    margin-left: 6.94444444%; /* 20px / 288px (288px = 30% of 960px)*/
}

/*  EXTRA CREDIT TRANSITION EFFECTS */

.trail-pics {
	width: 100%; /* 300px / 300px */
	height: 149px;
	opacity: 0.5;
	transition: 2s;
}

.copper-falls {
	background-image:url("../images/copper-falls.jpg");
    background-size: 100%;
    background-repeat: no-repeat;  
}

.chippewa {
	background-image:url("../images/chippewa-moraine.jpg");
    background-size: 100%;
    background-repeat: no-repeat;
}

.manitou {
	background-image:url("../images/manitou-falls.jpg");
    background-size: 100%;
    background-repeat: no-repeat;
}

.trail-pics:hover {
	opacity: 1.0;
}

/* --------- TABLE STYLES ---------*/


table {
	border-collapse:separate;
	width:600px;
	margin: 20px auto;
	background-color: #fff;
}

table tr th,
table tr td {
  	border-right: 2px solid #034001;
  	border-bottom: 2px solid #034001;
	font-size: 1em; /* 16px / 16 px */
	color: #000;
	font-family: 'Jost', sans-serif;
	text-align:center;
  	padding: 10px;
}
table tr th:first-child,
table tr td:first-child {
  	border-left: 2px solid #034001;
}
table tr th {
  	background: #034001;
  	border-top: 1px solid #034001;
  	text-align: left;
}

/* top-left border-radius */
table tr:first-child th:first-child {
  	border-top-left-radius: 10px;
}

/* top-right border-radius */
table tr:first-child th:last-child {
  	border-top-right-radius: 10px;
}

/* bottom-left border-radius */
table tr:last-child td:first-child {
  	border-bottom-left-radius: 10px;
}

/* bottom-right border-radius */
table tr:last-child td:last-child {
  	border-bottom-right-radius: 10px;
}

table tr th {
	background-color:#034001;
	font-weight: bold;
	color: #fff;
}

.labels {
	font-family: 'Jost', sans-serif;
    font-weight: 700;
    text-align: right;
}

/* --------- SLIDESHOW ----------- */

#slideshow-wrapper {
	width: 100%;
	height: 525px;
}

#slideshow {
  width: 100%;
  height: 525px;
  overflow: hidden;
  white-space: nowrap;
}

#slideshow img {
  display: inline-block;
  width: 100%;
  height: 100%;
}

#rectangle-nav {
	margin-top: -50px;
	text-align: center;
}

.rectangle {
  margin-right: 15px;
  display: inline-block;
  background-color: #f0ebe8;
  width: 2.70833333%; /* 26px / 960px */
  height: 5px;
}

/* --------- Media Query Tablet ----------- */

@media only screen and (max-width: 1024px) {
		
	#header-content {
		width: 100%; 
		text-align: center;
	}

	nav {
		width: 100%;
		position: relative;
		bottom: auto;
		right: auto;
		margin: 12px auto 8px;
	}

	nav ul {
		text-align:center;
	}

	nav a:link {
		padding: 6px auto; 
	}

	nav a:hover {
		padding: 6px auto; 
	}
	
	#banner {
		height: 300px;
	}
    
    #banner h1 {
        font-size: 3em; 
    }
    
    #banner h4 {
        font-size: 1.5em; 
        margin: 15px 0 50px;
    }

    #banner a {
        padding: 15px 3.125%; 
        font-size: 1.25em; 
    }

    #explore {
        position: relative;
        top: 60px;
    }

	p {
	margin-bottom: 12px;
	line-height: 150%;
}
	
    #wrapper-white,
    #wrapper-about {
        width: 90%; 
        padding: 30px 0;
    }

    .discover-content {
        top:40%;
    }

    aside h1 {
        font-size: 1.75em; /* 30px / 16px */
        margin-bottom: 12px;
    }

    aside p {
        font-size: 1.125em;
        line-height: 110%;
        margin-top: 0px;
    }

    #wrapper-about h1 {
        font-size: 1.75em;
        margin-bottom: 12px;
    }

    #wrapper-about p {
        font-size: 1.125em;
        line-height: 120%;
    }
   
	section h1 {
		font-size: 2em; 
		margin-bottom: 12px;
	}

	aside h2 {
		font-size: 1.5em;
		margin-bottom: 14px;
	}
	
    #trail-content {
        width: 50%;
        margin: 0 auto;
    }
    
	#trail-content h1 {
		font-size: 1.5em;
		margin: 0;
	}

	.trail-box {
		width: 100%;
		margin-bottom: 15px;
	}
    
    .trail-box:last-of-type {
        margin-bottom: 0;
    }
    
    .trail-box h3 {
		font-size: 1.5em; /* 28px / 16px */
	    margin: 12px 0 8px;
	}
	
	.trail-pics {
		min-height: 150px;
	}

	.trail-box:first-of-type {
		margin-right: auto;
	}

	.trail-box:last-of-type {
		margin-left: auto;
	}
    
    footer {
        padding: 20px 0 10px;
    }

    footer h3 {
        margin-bottom: 10px;
    }

    #footer-content {
        width: 90%;
    }

    #footer-center img {
        height: 40px;
    }
    
    #footer-right img {
        height: 40px;
    }
	
	#slideshow-wrapper,
	#slideshow {
		height: 300px;
	}

	#rectangle-nav {
		margin-top: -30px;
	}

} /* Closes first media query */


/* --------- Media Query Smart Phone ----------- */

@media only all and (max-width: 480px) {
	
	#header-content img {
	    height: 72px;
    }
    
    nav {
		width: 100%;
		background-color: #034001;
	}

	nav li {
		display: block;
        width: 100%;
		text-align: center;
		padding: 10px 0; 
		border-bottom: 1px solid #f0ebe8;
	}

	nav a:link,
	nav a:visited {
        color: #f0ebe8;
	}

	nav a:hover {
        color: #f0ebe8;
		background-color: transparent;
        border-bottom: none;
	}
    
	#banner {
		height: 200px;
	}
    
    #banner h1 {
        display: none; 
    }
    
    #banner h4 {
        display: none; 
        margin: 15px 0 50px;
    }

    #banner a {
        padding: 15px 3.125%; 
        font-size: 1.5em; 
        background-color: transparent;
    }

    #explore {
        position: relative;
        top: 80px;
    }
	
	#slideshow-wrapper,
	#slideshow {
		height: 200px;
	}
	
    #wrapper-white {
        display:block;
        justify-content:center;
    }
    
    section {
        width: 100%;
        height: 240px;
    }

    section img {
        width: 100%;
        height: 240px;
    }

    .discover-content {
        top:35%;
    }
		
	aside {
		width: 100%;
	}
    
    aside h1 {
        font-size: 1.5em; /* 30px / 16px */
        margin-bottom: 12px;
        margin-top: 20px;
    }

    aside p {
        font-size: 1.125em;
        line-height: 120%;
        margin-top: 0px;
    }
	    
	#trail-content {
        width: 90%;
        margin: 0 auto;
    }
    
	#trail-content h1 {
		font-size: 1.25em;
	}
    
    #spirit-content .trail-gallery:first-child {
        width: 100%;
    }
    
    #spirit-content .trail-gallery {
        width: 47%;
    }
    
    #spirit-content img {
        margin-bottom: 10px;
    }
    
	.trail-pics {
		min-height: 150px;
        opacity: 1;
	}
    
    #wrapper-about h1 {
        font-size: 1.25em;
        margin-bottom: 12px;
    }
    
    #wrapper-about p {
        font-size: 1em;
    }
    
    #wrapper-trails {
        padding: 30px 0;
    }
    
    #wrapper-trails h2 {
        font-size: 1.5em;
        margin-bottom: 20px;
    }
    
    footer h3 {
        margin-bottom: 10px;
    }
    
    #footer-content {
        display: block;
    }

    #footer-left,
    #footer-center,
    #footer-right {
        width: 100%;
        text-align: center;
    }
    
    #footer-center {
        padding: 15px 0;
        border-bottom: 1px solid #f0ebe8;
        border-top: 1px solid #f0ebe8;
    }
    
    #footer-center img,
    #footer-left img {
        margin:0 2.10421111%;
    }
    
    #footer-right {
        padding: 15px 0;
    }
	

	
} /* Closes second media query */
