body {
  font-family: Arial, Helvetica, sans-serif;
}

.header-section {
  background-image: url("images/main.letterbox.png");
	height: 350px;
  width: 100%;

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.header-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: left;
  align-items: left;

  background : #1d1d1d;
  width: 60%;
  padding: 25px;
  color: white;

  opacity: 0.8;
}

.header-title {
  font-size: 20px;
  color: white;
}

.header-description {
  font-size: 14px;
  color: rgb(206, 205, 205);
  align-items: center;
}

.book-now-btn {
  --button-color: #df934d;

  width: 200px;
  padding: 5px;
  cursor: pointer;
  background-color: var(--button-color);
  color: #251301;
  font-size: 1.2em;
  text-align: center;
  font-weight: bold;

  height: 35px;
  font: bold;

  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

.footer {
  background-color: #ffffff;
  color: #0099cc;
  text-align: center;
  font-size: 12px;
  padding: 15px;
}

/* Nav menu styles 
   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  */

.topnav {
  overflow: hidden;
  background-color: #333;
  position: relative;
}

.topnav #myLinks {
  display: none;
}

.topnav a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

.menuTitle {
  padding-left: 100px;
  background-color: #04AA6D;
  color: white;
}

.topnav a.icon {
  background: black;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.active {
  background-color: #04AA6D;
  color: white;
}

/* Photo Gallery styles 
   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  */

.img-gallery {
  width: 80%;
  margin: 175px auto 150 px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-gap: 15px;
}

.img-gallery img {
  width: 100%;
  cursor: pointer;
  transition: 1s ease;
}

.img-display {
  width: 80%;
}

.img-photo img {
  width: 100%;
  height: 100%;
}

.img-frame {
  position: relative;
}

/* Dynamic styles based on screen sizes
   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  */

@media only screen and (min-width: 500px) {
  /* For Small sized smartphones */
  .header-title {
    font-size: 20px;
    background : #1d1d1d;
    color: white;
  }

  .book-now-btn {
    margin-top: 20px;
    margin-left: 0px;
  }

  .img-photo {
    width: 80%;
    height:80%;
    margin: auto;
  }
  
  .img-frame img {
    padding: 5px 5px;
    border-top: 1px solid #747474;
    border-left: 1px solid #747474;
    -webkit-box-shadow: 5px 5px 5px #777;
      -moz-box-shadow: 5px 5px 5px #777;
            box-shadow: 5px 5px 5px #777;
  }
}

@media only screen and (max-width: 768px) {
  /* For Smartphones */
  .book-now-btn {
    margin-top: 20px;
    margin-left: 0px;
  }

  .img-photo {
    width: 80%;
    height:80%;
    margin: auto;
  }

  .img-frame img {
    padding: 12px 12px;
    border-top: 1px solid #747474;
    border-left: 1px solid #747474;
    -webkit-box-shadow: 8px 8px 8px #777;
      -moz-box-shadow: 8px 8px 8px #777;
            box-shadow: 8px 8px 8px #777;
  }
}

@media only screen and (min-width: 768px) and (max-width: 990px) {
  /* For Medium sized views */
  .book-now-btn {
    margin-top: 20px;
    margin-left: 0px;
  }

  .img-photo {
    width: 80%;
    height:80%;
    margin: auto;
  }

  .img-frame img {
    padding: 12px 12px;
    border-top: 1px solid #747474;
    border-left: 1px solid #747474;
    -webkit-box-shadow: 8px 8px 8px #777;
      -moz-box-shadow: 8px 8px 8px #777;
            box-shadow: 8px 8px 8px #777;
  }
}

@media only screen and (min-width: 991px) {
  /* For Medium sized views */
  .book-now-btn {
    margin-top: 0px;
    margin-left: 30px;
  }

  .img-photo {
    width: 80%;
    height:80%;
    margin: auto;
  }

  .img-frame img {
    padding: 12px 12px;
    border-top: 1px solid #747474;
    border-left: 1px solid #747474;
    -webkit-box-shadow: 8px 8px 8px #777;
      -moz-box-shadow: 8px 8px 8px #777;
            box-shadow: 8px 8px 8px #777;
  }
}

@media only screen and (min-width: 1200px) {
  /* For Smartphones */
  .img-photo {
    width: 60%;
    height:60%;
    margin: auto;
  }

  .img-frame img {
    padding: 12px 12px;
    border-top: 1px solid #747474;
    border-left: 1px solid #747474;
    -webkit-box-shadow: 5px 5px 5px #777;
      -moz-box-shadow: 5px 5px 5px #777;
            box-shadow: 5px 5px 5px #777;
  }
}

/*  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  */