/* Michael Cain | CIS133 | Ch6 Website Case Study */

* {box-sizing: border-box;}

body {background-color: #90C7E3;
        font-family: Verdana, Arial, sans-serif;
        margin: 0;
}

body {
   background-color: #EAEAEA; 
   color: #666666;
   font-family: Verdana;
}

header {
    background-color: #002171;
    color: #FFFFFF;
    font-family: Georgia, serif;
    padding: 1em;
}

header a { text-decoration: none;}

header a:link {color: #FFFFFF;}

header a:visited {color: #FFFFFF;}

header a:hover {color: #90C7E3;}

h1 {
    text-align: center;
    font-size: 1.5em;
}

h2 {
    color: #1976D2;
    font-family: Georgia, serif;
}

h3 {
    font-family: Georgia, serif;
}

nav {
    font-size: 1.2em;
    text-align: center;
    background-color: #FFFFFF;
}

nav ul {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    padding-left: 0em;
    margin: 0;
}

nav a {
    text-decoration: none;
}

nav li { 
    padding-top: .5em;
    padding-bottom: .5em;
    padding-left: 1em;
    padding-right: 1em;
    border-bottom: 1px;
}

nav a:link      {color:#5C7FA3;}
nav a:visited   {color:#344873;}
nav a:hover     {color:#A52A2A;}

section {
    padding-left: .5em;
    padding-right: .5em;
}

main {
   padding-top: 0em;
   padding-bottom: 0em;
    padding-left: 1em;
    padding-right: 1em;
    display: block;
}

dt {
    color: #002171;
    font-weight: bold;
}

.resort {
    color: #1976D2;
    font-size: 1.2em;
}

footer {
    font-size: .70em;
    font-style: italic;
    text-align: center;
    padding: 1em;
    background-color: #FFFFFF;
}

#mobile {display: none;}
#desktop{display: inline;}

#wrapper {
    background-color: #90C7E3;
    background-repeat: no-repeat; 
    min-width: 960px;
    max-width: 2048px;
}


#homehero {
    height: 300px;
    background-image: url(coast.jpg);
    background-repeat: no-repeat;
    background-size: 200% 100%;
}

#yurthero {
    height: 300px;
    background-image: url(yurt.jpg);
    background-repeat: no-repeat;
    background-size: 200% 100%;
}

#trailhero {
    height: 300px;
    background-image: url(trail.jpg);
    background-repeat: no-repeat;
    background-size: 200% 100%;
}

@media (min-width: 1024px) 
{
	body{
       background-image: linear-gradient(to bottom, #FFFFFF 20%, #90C7E3 60%, #FFFFFF 100%);}
	
    nav ul{padding-right: 10%; padding-left: 10%;}
    #wrapper{margin: auto; width: 80%;}

    .telephone-number {
        font-size: 16px;
    }
}

@media (min-width: 600px)
{
	h1{font-size: 2em; letter-spacing: .25em}
	nav ul{
        display: flex;
        flex-direction: row;
        padding-right: 2em;
        justify-content: space-around;
    }
	nav li{width: 12em; border-bottom: none;}
	footer{padding: 0;}
    section {padding-left: 2em; padding-right: 2em;}
    .flow{display: flex;
        flex-direction: row;
    }
    .telephone-number {
        color:blue;
        text-decoration: underline;
        cursor: pointer;
    }
	#mobile{display: none;}
	#desktop{display: inline;}
    #homehero{background-size: 100% 100%}
    #yurthero{background-size: 100% 100%}
    #trailhero{background-size: 100% 100%}
}