/* Copyright 2019 Smith's Trout Haven */
body {
    position: relative;
    font-family: 'Alegreya', serif;
    font-size: 1.2em;
}
.parallax {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 80px;
    /* The image used */
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url("campground.jpg");

    /* Set a specific height */
    height: 500px;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.logo-header {
    display: flex;
    align-items: center;
    color: white;
    padding: 8px;
}
.logo-image {
    max-height: 80px;
}
.logo-text {
    display: flex;
    flex-direction: column;
    margin-left: 12px;
}
.logo-title {
    font-size: 2.6em;
    text-transform: uppercase;
}
.open-dates {
    color: #A64A39;
    text-align: center;
    font-size: larger;
}
.sticky {
    position: fixed;
    top: 0;
    right: 8px;
    left: 8px;
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url("campground.jpg");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.logo-header .reservations {
    background-color: #F3A985;
    color: black;
    text-decoration: none;
    padding: 8px;
    border-radius: 4px;
}
.logo-container {
    display: flex;
    flex-basis: 75%;
}
section.drought, 
section.drought h1, 
section.drought p {
    background-color: white;
    color: red;
    display: none;
}
section.phone, 
section.phone h1, 
section.phone p {
    background-color: white;
    color: red;
    display: none;
}
.reservation-container {
    display: flex;
    flex-basis: 25%;
}
.rules {
    display: flex;
    flex-wrap: wrap;
    margin-left: 2em;
}
.rules > div {
    max-width: 33%;
}
@media only screen and (max-width: 1040px) {
    .rules > div {
      max-width: 50%;
    }
  }
@media only screen and (max-width: 800px) {
    .rules > div {
      max-width: 100%;
    }
  }
.map-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.map-image {
    max-width: 50%;
    cursor: pointer;
}
h1 {
    font-weight: 900;
    font-style: italic;
    color: #265C6E;
}
h2 {
    color: #A64A39;
}
p {
    color: #344310;
    margin-left: 2em;
}
.quiet-hours {
    font-weight: 900;
    font-size: 110%;
    font-style: italic;
    color: #A64A39;
}
.directions {
    display: flex;
    flex-direction: column;
}
.address-container {
    display: flex;
    justify-content: center;
}
.address-container a {
    text-decoration: none;
}
footer {
    background-color: #FFE8AF;
    padding: 0.5em;
}
