body {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  color: #fff;
  background-color: white;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

canvas#stars-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: white;
  pointer-events: none;
}

.main-link {
  position: absolute;
  top: 20px;
  left: 30px;
  text-decoration: none;
  color: black;
  font-size: 14px;
  letter-spacing: 1px;
  z-index: 3;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 100px 20px 40px;
  z-index: 2;
}

.gallery-img {
  max-width: 275px;
  max-height: 400px;
  width: 100%;
  height: auto;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s;
  border: 2px solid transparent;
}



.gallery-img:hover {
  transform: scale(1.05);
  border-color: #888;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 99;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80vh;
}

.hidden {
  display: none;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

.arrow {
  position: absolute;
  top: 50%;
  font-size: 40px;
  color: white;
  cursor: pointer;
  user-select: none;
  padding: 10px;
}

.photo-credit {
  margin-top: 10px;
  margin-bottom: 50px;
  text-align: center;
  color: black;
  font-size: 16px;
  font-family: 'Cormorant Garamond', serif;
  z-index: 2;
}


.arrow.left { left: 20px; }
.arrow.right { right: 20px; }


@media (max-width: 768px) {
  .photo-credit {
    font-size: 15px;
    font-family: 'Cormorant Garamond', serif;
  }
}
