html,
body {
  text-align: center;
}


a {
  text-decoration: none;
}



/* Navbar section */

#mainNavbar {
  background-color: rgb(58, 0, 40, 1);
}


/* Hero section */
.hero .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  /* 8/12/2025 added to keep hero image centered */
  background-position: left left;
  background-repeat: no-repeat;

  transition: background-image 1s ease-in-out;

  background-size: cover;
  z-index: -1;
  background-color: rgb(255, 255, 255);
  opacity: .9;
}




/* gallery styles */
section.gallery {
  background-color: rgb(40, 40, 40, 1);
  padding: 10px 20px;
}

.gallery .grid li {
  padding: 0px;
  flex-basis: 20%;
  text-align: center;
  margin: 4px 4px 4px 4px;
}

.gallery .grid li i {
  color: rgb(58, 0, 40)
}

.gallery .grid li h4 {
  font-family: "Quicksand", sans-serif;
  font-size: 24px;
  margin: 0px 0;
  padding: 5px;
  color: white;
  background-color: rgb(50, 50, 50, .5);
}

.gallery a.btn {
  margin-top: 40px;
  padding: 20px;
}

.gallery p {
  font-family: "Quicksand", sans-serif;
  font-size: 16px;
  margin-bottom: 30px;
}

@media (max-width: 1000px) {
  .gallery .grid li {
    flex-basis: 100%;
  }
}


section .intro h3.title {
  font: bold 50px "Cinzel", sans-serif;
  margin-bottom: 20px;
  text-align: center;
}

@media (max-width: 1000px) {
  section.intro h3.title {
    margin-top: 80px;
    margin-bottom: 25px;
  }
}




/* ------------------------------------------------------------------------------*/
.thumb {
  max-height: 171px;
  border: solid 6px rgba(5, 5, 5, 0.8);
}

.lightbox {
  position: fixed;
  z-index: 999;
  height: 0;
  width: 0;
  text-align: center;
  top: 100px;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  margin-top: 2%;
  opacity: 0;
}

.lightbox:target {
  /** Remove default browser outline */
  outline: none;

  width: 100%;
  height: 100%;
  opacity: 1 !important;

}

.lightbox:target img {
  border: solid 17px rgba(77, 77, 77, 0.8);
  opacity: 1;
  webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.light-btn {
  color: #fafafa;
  background-color: rgb(58, 0, 40);
  border: solid 3px #777;
  padding: 5px 15px;
  border-radius: 1px;
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  position: absolute;
  top: 45%;
  z-index: 99;
}

.light-btn:hover {
  color: white;
  background-color: rgb(58, 0, 40);
}

.btn-prev {
  left: 7%;
}

.btn-next {
  right: 7%;
}

.btn-close {
  position: absolute;
  right: 2%;
  top: 2%;
  color: #fafafa;
  background-color: rgb(58, 0, 40);
  border: solid 5px white;
  padding: 10px 15px;
  border-radius: 1px;
  text-decoration: none;
}

.btn-close:hover {
  color: white;
  background-color: rgb(58, 0, 40)
}