.goldlinehor {
    height: 3px;
    background-color: gold;
}

.gallery-section {
  padding: 40px 20px;
  background-color: #111;
  color: gold;
  text-align: center;
  font-family: Arial, sans-serif;
}

.gallery-section h1 {
  font-size: 36px;
  margin-bottom: 30px;
}

.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.gallery-container a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
  transition: transform 0.3s ease;
}

.gallery-container img {
  width: 250px;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.gallery-container a:hover {
  transform: scale(1.05);
}

#custom-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
}

#custom-lightbox img {
  max-width: 90%;
  max-height: 80%;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

#lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  z-index: 10000;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
  z-index: 10000;
}

.lightbox-nav button {
  background: none;
  border: none;
  color: white;
  font-size: 60px;
  cursor: pointer;
  user-select: none;
}

.lightbox-hidden {
  display: none;
}

@media (max-width: 768px) {
  .gallery-container img {
    width: 180px;
    height: 220px;
  }
}

@media (max-width: 480px) {
  .gallery-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}
