/* CSS for lodge.html, this page contains many unique elements in comparison to the others */

#lodge-photo {
  background-attachment: fixed;
  width: 100vw;
  height: 40vh;
  min-height: 40vh;
  background-position: 50% 170%;
  background-size: cover;
  margin: 0 auto;    
}

body {
  background-color: #dbdbdb;
  color: #484848;
  font-weight: 100 !important;
}

.container {
  margin: 0 auto;  
  padding: 0;
  width: auto;
  background: #fff;
  margin-top: -1.8em;
  max-width: 1200px;
}

/* Flex used for two elements aside with 50% width each */

.lodge-view {
  display: flex;  
  margin-bottom: 2em;
  font-family: 'Open Sans', sans-serif;
}


.flex-right h2 {
  text-align: right;
  text-transform: uppercase;
  background: #2e4c2e;
  padding: 0.5em;
  color: #fff;
}

.lodge-name {
  font-size: 1.6em;
  font-weight: 400;
  text-transform: uppercase;
  padding-bottom: 0.5em;
}

.feature {
  display: flex;
  padding: 8px;
  width: 100%;
}

.feature-item, .feature-description {
  padding: 8px;  
}

/* CSS for small image gallery on lodge.html */

.gallery {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  flex-direction: row-reverse;
  margin-bottom: 1.5em;
  border: 1px solid #2e4c2e;
}

.gallery-image {
  height: 100px;
  padding: 8px;
  cursor: pointer;
}

.gallery-image img {
  height: 100%;
}

h2 {
  font-weight: 500;
}

h3 {
  font-weight: 500;
  font-size: 1.2em;
  padding-bottom: 14px;
}

h6 {
  font-weight: 500;
}

.about-stay-content, .booking-quote-content {
  padding: 0.5em;
}

.about-stay, .booking-quote {
  border: 1px solid #2e4c2e;
}

.booking-quote {
  display: none;
  margin-bottom: 1em;
}

.booking-quote p {
  padding-bottom: 8px;
}

.about-stay p {
  text-align: justify;
  padding-bottom: 14px;
  font-weight: 300;
}

.lodge-description {
  margin-bottom: 1em;
}

.lodge-capacity {
  margin-bottom: 1em;
}


.booking-container {
  background-color: #2e4c2e;
  padding: 0.5em;
}

#guest-selector {
  width: 15%;
  height: 40px;
  line-height: 40px;
  margin-right: 0.5em;  
}

#checkin, #checkout {
  width: 45%;
  height: 40px;
  line-height: 40px;
  margin-right: 0.5em;
}

#search {
  width: 15%;
  background: #fff;
  color: #2e4c2e;
  text-align: center;
  line-height: 2.5em;
  text-decoration: none;
  text-transform: uppercase;
}

.lodge-container {
  display: flex;
  flex-direction: column;
  margin-top: 4em;
}

.lodge-preview {
  width: 100%;
  margin-bottom: 1em;
  font-size: 0.8em;
}

.lodge-preview:hover {
  cursor: pointer;
}

.lodge-preview h3 {
  text-transform: uppercase;
}

.lodge-preview img {
  width: 30%;
}

.lodge-preview-desc {
  float: right;
  width: 65%;
  margin-left: 1em;
}

/* CSS for full screen gallery element */

.gallery-fs-image {
  position: absolute;
  height: 100%;
  min-height: 100%;
  width: 100vw;
  background-color: rgba(96, 96, 96, 0.7);
  text-align: center;
  padding-top: 4em;
  visibility: hidden;
  cursor: pointer;
}

.gallery-fs-image img {
  width: 70vw;
}