/* Home page hero image styling */
#homehero {
    background-image: url('pacific/coast.jpg'); 
    background-size: 100% 100%;
    background-repeat: no-repeat;
    height: 300px; 
}
#yurthero{
    background-image: url('pacific/yurt.jpg'); 
    background-size: 100% 100%;
    background-repeat: no-repeat;
    height: 300px;
}
#trailhero {
    background-image: url('pacific/trail.jpg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    height: 300px;
}
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #FFFFFF 20%, #90C7E3 60%, #FFFFFF 100%);
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    
    background-image: none;
    background-repeat: no-repeat;
      
      }
      
      header {
        background-image: url('pacific/sunset.jpg');
        background-repeat: no-repeat;
        background-position: right;
        background-color: #002171;
        color: #FFFFFF;
        font-family: serif;
        padding: 1em;
    }
    

header a:link {
    color: #FFFFFF;
    text-decoration: none;
}
      
header a:visited {
    color: #FFFFFF;
    text-decoration: none;
}
header a:hover {
    color: #90C7E3;
    text-decoration: none;  
}
h1 {
    text-align: center;
    font-size: 2em;
    letter-spacing: 0.25em;
}

nav{
    
        text-align: center;
        background-color: white;
        font-size: 1.2em;
    
}


nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #000;
}  
 nav a:hover {
    text-decoration: underline;
    color: #A52A2A;
}
 nav a:link {
    color: #5C7FA3;
  }
  
 nav a:visited {
    color: #344873;
  }

  nav ul {
    display: flex;              
    flex-direction: row;        
    flex-wrap: nowrap;          
    justify-content: space-around; 
    padding-right: 10%;         
    margin: 0;                  
    padding-left: 10%;            
    list-style-type: none;      
}


nav li {
    width: 12em;              
    border-bottom: none;       
    padding-top: 0.5em;        
    padding-bottom: 0.5em;
    padding-left: 1em;         
    padding-right: 1em;
    
}
 
h2{
    color: #1976D2;
    font-family: serif;
}
h3{
    font-family: Georgia, 'Times New Roman', Times, serif;
}
dt{
    color: #002171;
    font-weight: bold;
}
.resort{
    color: #1976D2;
    font-size: 1.2em;
}


table{
    border: 1px solid #3399CC;
    border-width: 90%;
    border-collapse: collapse;
}
td, th{
    padding: 5px;
    border: 1px solid #3399CC;
}
td{
    text-align: center;
}
tr:nth-child(even){
    background-color: #dfedf8;
}

main{
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 1em;
    padding-right: 1em;
    display: block;
    overflow: auto;
    
    section {
        padding-left: 2em;
        padding-right: 2em;
        box-sizing: border-box;
        margin: 0;
        padding: 1em;
        text-align: left;
      }
      dt {
        margin: 0 0 0.5em 0;
      }
      dd { 
        margin: 0;
        padding-left: 0;
      }
      
}
#homehero, #yurthero, #trailhero {
    background-size: 100% 100%; 
}

  
footer {
    padding: 1em;
    font-size: 0.8em;
    background-color: white;
    text-align: center;
  
}
#wrapper {
    min-width: 960px;
    max-width: 2048px;
    width: 80%; 
    margin: auto; 
    background-color: #FFFFFF;
    border-top: 1px solid #ccc; 
    border-left: 1px solid #ccc;
    border-bottom: 3px solid #666;
    border-right: 3px solid #666;
}


* {
    box-sizing: border-box;
  }
  
/* 1a. Styles for the mobile id selector */
#mobile {
    display: none; 
}

/* 1b. Styles for the desktop id selector */
#desktop {
    display: inline; 
}

/* Media query for larger displays */
@media (min-width: 1024px) {
    #mobile {
        display: none; 
    }

    #desktop {
        display: inline; 
    }
}
#flow {
    display: flex;       
    flex-direction: row; 
}


  
 

  