#header {
  height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  position: absolute;
  top: 0;
}

.bg-image {
  background: url("assets/pexels-pixabay-270404.jpg") no-repeat center/cover;
  /* background-image: url("/assets/pexels-pixabay-270404.jpg"); */
  height: 40vh;
  filter: blur(8px);
  -webkit-filter: blur(8px);
}

#header-container {
  overflow: hidden; /* hiding unintended box shadow from blurring */
  position: sticky;
  top: 0;
}

#footer {
  height: 5vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.8);
}

/* matching background color from header for seamless transition */
#gallery {
  background-color: rgba(0, 0, 0, 0.8);
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.lightbox:target {
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 50%;
  max-height: 50vh;
  object-fit: contain;
  position: relative;
  z-index: 1000;
  border-radius: 16px;
}

.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
}
