/* Gallery Container */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* Category Buttons */
.category-btns {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.category-btns button {
  background-color: #ddd;
  border: none;
  color: black;
  padding: 10px 20px;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.category-btns .active {
  background-color: #4CAF50;
  color: white;
}

.category-btns button:hover:not(.active) {
  background-color: #ccc;
}

/* Gallery Items */
.gallery-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.item {
  margin: 10px;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.3s ease;
  width: 300px;
  height: 200px;
}

.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item:hover {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}

/* View More Button */
.view-more-btn {
  background-color: #4CAF50;
  border: none;
  color: white;
  padding: 10px 20px;
  margin-top: 20px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.view-more-btn:hover {
  background-color: #3e8e41;
}