/* styles.css */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #111;
  color: #fff;
}

h1 {
  text-align: center;
  padding: 20px;
}

.filters {
  text-align: center;
  margin-bottom: 20px;
}

.filters button {
  padding: 10px 15px;
  margin: 5px;
  border: none;
  cursor: pointer;
  border-radius: 20px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  padding: 20px;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s, filter 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
  filter: brightness(80%);
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

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

.lightbox button {
  margin: 10px;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

@media(max-width: 600px) {
  .lightbox img {
    max-width: 95%;
  }
}
