﻿/*Global styles*/
body
{
    background-color: #FFFFFF; /*White background*/
    background: linear-gradient(#FFFFFF, #90C7E3);
    background-repeat: no-repeat;
    color: #666666; /*Dark gray text*/
    font-family: Arial, Helvetica, sans-serif; /* Set font to Arial, Helvetica or sans-serif*/
}


/*Wrapper Styles*/
#wrapper{
    margin: 0 auto;
    width: 80%;
    background-color: #FFFFFF;
    min-width: 960px;
    max-width: 2048px;
    box-shadow: 3px 3px 3px #333333;
}
/*Header styles*/
header {
    background-color: #002171; /*Deep blue background*/
    color: #FFFFFF; /*White text*/
    background-image: url('sunset.jpg');
    background-position: right;
    background-repeat: no-repeat;
    height: 60px;
    text-align: center;
    padding-top: 15px;
}

/*Navigation styles*/
nav{
    background-color: #FFFFFF; /*Sky blue background*/
    font-weight: bold;
    text-align: center;
    padding: 1em;
}

nav a{
    text-decoration: none;
    color: #002171;
}

/*Main element styles*/
main{
    padding: 1px 20px 20px 20px;
    display: block;
}

/*h2 element styles*/
h2{
    color: #1976D2; /*Medium blue text*/
    font-family: Georgia, Times New Roman, serif;
    text-shadow: 1px 1px #CCCCCC;
}

/* dt element styles (for questions)*/
dt{
    color: #002171; /*Dark blue text*/
}

/* Class for resort name*/
.resort{
    color: #1976D2; /*Medium blue text*/
    font-weight: bold;
}

/*h1 styles*/
h1{
    font-family: Georgia, Times New Roman, serif;
    margin-top: 0;
    color: #FFFFFF;
}

/*h3 styles*/
h3{
    font-family: Georgia, Times New Roman, serif;
    color: #000033;
}

/*ul styles*/
ul{
    list-style-image: url('marker.gif');
}

/*Footer styles*/
footer{
    font-size: 75%;
    font-style: italic;
    text-align: center;
    font-family: Georgia, Times New Roman, serif;
}

/*Contact ID styles*/
#contact{
    font-size: 90%;
}

/*Hero Sections*/
#homehero{
    height: 300px;
    background-image: url('coast.jpg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

#yurthero {
    height: 300px;
    width: 0 auto;
    background-image: url('yurt.jpg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    border: 20px solid #FFFFFF;
    box-sizing: border-box;
}

#trailhero {
    height: 300px;
    background-image: url('trail.jpg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    border: 20px solid #FFFFFF;
    box-sizing: border-box;
}