/* Gallery Wrapper */
.gallery-wrapper {
    text-align: center;
    margin: 20px 0;
  }
  
  /* Filter buttons */
  .filters {
    margin-bottom: 20px;
  }
  .filter-btn {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    background-color: #ddd;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
  }
  .filter-btn.active {
    background-color: #f39f5f;
    color: #fff;
  }
  
  /* Gallery grid */
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .gallery a {
    display: block;
  }
  
  .gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .gallery img:hover {
    transform: scale(1.05);
  }
  
  /* Pagination */
  .pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .pagination button {
    padding: 8px 14px;
    border: none;
    background-color: #f39f5f;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    margin: 4px;
  }
  
  .pagination button.active {
    background-color: #e0701a;
    color: #fff;
  }
  