/* style.css - Full dark theme */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #111;  /* Dark background */
  color: #eee;             /* Light text */
}

header, footer {
  text-align: center;
  padding: 1rem;
  background-color: #000;  /* Dark header/footer */
  color: #eee;
}

h1, h2 {
  text-align: center;
  margin-top: 1rem;
  color: #fff;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 10px;
}

.gallery img {
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
  max-width: 150px;
  height: auto;
  background-color: #222;  /* Dark thumbnail background */
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Lightbox overlay */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95); /* Dark overlay */
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#lightbox img {
  max-width: 95%;
  max-height: 90%;
  border-radius: 10px;
  border: 2px solid #fff;
}

#lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
