/* 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 query for larger viewports */
@media (min-width: 600px) {

    /* 1a. Configure form with grid layout, 60% width, and two columns */
    form {
        display: grid;
        grid-template-columns: 10em 1fr;  /* First column: 10em, Second column: flexible */
        grid-gap: 1em;  /* Space between grid items */
        width: 60%;
    }

    /* 1b. Configure submit button to span the second column */
    input[type="submit"] {
        grid-column: 2;  /* Place the submit button in the second column */
        width: 9em;      /* Set the width of the submit button */
    }
}


#flow {
    display: flex;       
    flex-direction: row; 
}

/* Configure the form as a flex container */
form {
    display: flex;
    flex-direction: column;
    align-items: center;  /* Center the form horizontally */
    padding-left: 1em;
    width: 80%;
    margin: 0 auto; /* Center the form on the page */
}

/* Flexbox row for labels and input fields */
.form-row {
    display: flex;
    justify-content: space-between;
    width: 100%; /* Use full width for alignment */
    max-width: 600px; /* Optional: Set a max width for better layout */
    margin-bottom: 0.5em;
}

/* Labels should remain left-aligned */
label {
    text-align: left;
    width: 30%; /* Adjust as needed to control the label width */
}

/* Inputs and textareas aligned to the right */
input, textarea {
    width: 65%; /* Adjust width as needed to align with the label */
    margin-left: 1em;
}

button {
    max-width: 80px;
    align-self: center; /* Center the button */
    margin-top: 1em; /* Add some spacing above the button */
}

/* Configure the reshero ID */
#reshero {
    background-image: url('pacific/ocean.jpg');
    background-size: 200% 100%;
    background-repeat: no-repeat;
    height: 300px;
}


  