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

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

a {
    text-decoration: inherit;
    color: inherit;
}

body {
    font-family: 'Jost', sans-serif;
}

header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}

#header-content {
    width: 960px;
    position: relative;
}

nav {
    position: absolute;
    top: 75px;
    left: 50%;
}

nav li:first-child {
    margin-left: 2vw;
}

nav li {
    float: left;
    padding: 16px 30px;
    font-size: 20px;
    font-weight: 300;
    color: #034001;
}

nav li:hover {
    border-bottom: 6px solid #034001;
}

header img {
    height: 120px;
}

#banner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("./images/clear-lake-banner.jpg");
    background-size: cover;
    height: auto;
    position: relative;
    text-align: center;
}

#explore {
    width: 960px;
    padding: 250px 100px;
}

#banner h1, #banner h4, #banner a {
    font-weight: 700;
    color: white;
}

#banner h1 {
    font-size: 56px;
    margin-bottom: 10px;
}

#banner h4 {
    font-size: 26px;
    margin-bottom: 50px;
}

#banner a {
    background-color: #034001;
    font-size: 20px;
    padding: 15px;
}

#wrapper-white {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 75px;
}

section {
    width: 580px;
    height: 340px;
    background-image: url(./images/lake-wissota.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

#wrapper-white section a {
    font-size: 20px;
    font-weight: 700;
    color: white;
    background-color: #034001;
    padding: 15px;
}

#wrapper-white aside {
    width: 320px;
    padding: 0 0 0 50px;
}

#wrapper-white aside h1 {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    color: #034001;
    margin-bottom: 15px;

}

#wrapper-white aside p {
    font-size: 18px;
    font-weight: 300;
    line-height: 150%;
}

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

#trail-content {
    width: 100%;
    display: flex;
    vertical-align: top;
    align-items: center;
    justify-content: center;
}

#wrapper-trails h2 {
    font-size: 28px;
    font-weight: 700;
    color: #034001;
    text-align: center;
    padding: 0 0 30px;
    text-transform: uppercase;
}

.trail-box {
    width: 300px;
    margin: 0 10px;
    display: inline-block; 
}

.trail-box h3 {
    font-size: 28px;
    font-weight: 700;
    color: #034001;
    text-align: center;
    padding: 10px 5px;
}

.trail-box p {
    font-size: 16px;
    text-align: center;
    font-weight: 300;
    line-height: 150%;
}

footer {
    background: #034001;
    width: 100%;
    padding: 15px 0;
}

#footer-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer p {
    font-size: 16px;
    color: white;
    font-weight: 300;
    padding: 5px 0 10px;
}

footer h3 {
    font-size: 16px;
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    padding: 15px 0;
}

footer img {
    height: 50px;
}

#footer-left,#footer-center,#footer-right {
    padding: 50px;
}

#footer-right {
    text-align: right;
}

#footer-center a, #footer-right a {
    padding: 0 10px;
}

#footer-left a {
    text-decoration: underline;
}

#footer-left p {
    line-height: 150%;
}