.header {
  text-align: center;
  text-transform: uppercase;
  padding: 12px;
  background-color: var(--accent-color-lteal);
  color: #ffffff;
  border-bottom: 4px solid var(--accent-color-brown);
}

.lightbox {
	position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
	display: none;
  transition: 0.3s ease;
  z-index: 3;
}

#lightbox-image {
	height: 50%;
	position: relative;
	top: 25%;
	display: block;
  margin: 0 auto;
	border-radius: .5%;
}

#close-btn {
  position: fixed;
  top: 25px;
  right: 20px;	
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 5;
}

/* Gallery Container */
.gallery {
  display: flex;
  flex-wrap: wrap;          
  justify-content: center;  
  gap: 16px;                
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 10px;
}

/* Gallery Images */
.gallery img {
  width: 50%;              
  max-width: 350px;         
  height: auto;             
  object-fit: cover;        
  border-radius: 10px;
  display: block;
	cursor: pointer;
}

/* =========================================================================
   Responsive Breakpoints
   ========================================================================= */

/* Medium screens (tablet) */
@media (max-width: 1200px) {
  .gallery img {
    max-width: 45%;  /* Two images per row */
    height: auto;
  }
}

/* Small screens (mobile) */
@media (max-width: 576px) {
  .gallery {
    padding: 10px 5px;
    gap: 10px;
  }
  .gallery img {
    max-width: 100%; /* One image per row */
    height: auto;
  }
}