body {
    margin: 0;
    padding: 0;
    font-family: Mulish, sans-serif;
    background-size: cover;
    min-height: 100vh;
    background-color: #FCFCFC;
}


/* General Styles */

h1,
h2,
h3, 
h4,
h5,
h6 {
    font-family: 'Mulish', sans-serif;
    text-align: center;
}

p {
    line-height: 1.6;
}

a {
    color:  #ac6076;
    text-decoration: none;
}

a:hover {
    color: #28a745;
}

/* page titles */

h1 {
    border-bottom: 1px solid #bbb;
    padding: 0 0 10px 0;
    margin: 10px 0 20px 0;
}

/* HomePage */

/* Box with text */

.col-md-6 {
    border-radius: 1rem;
    opacity: .9;
}

.background-image-container {
    
    background-image: url('https://res.cloudinary.com/dka7n7ady/image/upload/v1698239029/static/images/hp-park.473b3d5222b0.webp'); 
    background-size: cover; 
    background-repeat: no-repeat;
    background-position: center;
    height: 90vh;
    width: 100%;
}

/* Sticky Footer on homepage only */

.site {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    
  }
  
  .site-content {
    flex: 1;
  }


/* Images on recent locations page */

.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Location Display page photo */

.center-photo {
    display: flex;
    justify-content: center;
}

/* forms */
form {
    overflow: auto;
}

form p {
    width: 100%;
    overflow: auto;
}

label {
    float: left;
    clear: both;
    color: #333;
    margin-bottom: 4px;
}

input,
textarea {
    clear: both;
    float: left;
    margin: 0 0 10px;
    background:  #E6E6FA;
    border: 0;
    padding: 6px 10px;
    font-size: 14px;
}

input[type=submit],
a.button {
    font-weight: bold;
    background: #F2F2F2;
    color: #333;
    padding: 10px 20px;
    font-size: 14px;
    text-transform: uppercase;
}


.errorlist {
    color: #cc0033;
    float: left;
    clear: both;
    padding-left: 10px;
}

.helptext {
    margin: 0 0 20px 0;
    color: #2c3034;
    clear: both;
    float: left;
    font-size: 13px;
}

/* messages */
ul.messages {
    margin: 10px 100px;
    padding: 0;
    list-style-type:
        none;
}

ul.messages li.success,
ul.messages li.warning,
ul.messages li.error,
ul.messages li.info {
    margin: 0;
    padding: 14px 20px;
    list-style: none;
    color: #fff;
}

ul.messages li.success {
    background: #81ce81;
}

ul.messages li.success a {
    color: #0ac33e;
}

ul.messages li.error {
    background: #a30029;
    color: #fff;
}

ul.messages li.error a {
    color: #e9828e;
}

ul.messages li.info {
    background: #faffae;
    color: #696b4e;
}

ul.messages li.info a {
    color: #1586de;
}

ul.messages li.warning {
    background: #de9404;
}

ul.messages li.warning a {
    color: #f49000;
}

ul.messages li a.close {
    margin: 0;
    float: right;
    opacity: 1;
    border: 0;
    box-shadow: none;
    text-shadow: none;
}

/* media query for dashboard buttons 475px and below */

@media (max-width: 475px) {
    .list-inline {
      flex-direction: column;
      align-items: center; 
    }
    
    .list-inline-item {
      margin: 10px 0;
    }
  }

/* media query for location_detail.html - screens 900px and larger */
@media (min-width: 900px) {
    .figure-img {
        width: 80% !important; 
    }
}

@media (min-width: 1200px) {
    .figure-img {
        width: 60% !important; 
    }
}