/* gallery.css */
body {
  margin: 0;
  padding: 0;
  text-align: center;
  background-color: #f4f4f4;
}

.gallery-section {
  padding: 20px;
  margin-top: 20px;
}

.filter-buttons {
  margin-bottom: 20px;
}

.filter-btn {
  padding: 10px 15px;
  margin: 5px;
  border: none;
  background: #007BFF;
  color: white;
  cursor: pointer;
  border-radius: 5px;
}

.filter-btn.active, .filter-btn:hover {
  background: #0056b3;
}

.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery-item {
  margin: 10px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 500px;
  height: 450px;
  object-fit: cover;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.1);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  max-width: 80%;
  max-height: 80%;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  color: white;
  font-size: 30px;
  cursor: pointer;
}
