/* =================Gallery page=============== */
.center_gallery{
     background-image: url(../image/cricket-Gallery.png);
    background-position: center center;
    background-size: cover;
    height: 60vh;
}
 .gallery-banner {
      /* background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%); */
      height: auto;
      padding: 5px 20px 5px 20px;
      color: rgb(0, 0, 0);
      text-align: center;
      display: flex;
      flex-direction: column;
      align-self: center;
      justify-content: center;
    }
    .search-bar {
      display: flex;
      justify-content: center;
      /* margin-top: 20px; */
    }
    .search-bar input {
      padding: 13px 10px;
      width: 300px;
      border-radius: 5px;
      border: none;
      outline: none;
          background: #fff4dc;
    color: rgb(0, 0, 0);
    }
    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 15px;
      padding: 20px;
           max-width: 1330px;
    margin: auto;
    }
    .image {
      display: none; /* Hide all images initially */
    }
    .image img {
      width: 100%;
      border-radius: 8px;
      transition: transform 0.3s;
    }
    .image img:hover {
      transform: scale(1.05);
    }
    .load-more-container {
      margin: 20px 0;
          text-align: center;
    }
   
    #loadMoreBtn {
      padding: 10px 20px;
      background: #ffbe07;
      color: white;
      border: none;
      cursor: pointer;
      border-radius: 5px;
    }
    #loadMoreBtn:hover{
  background-color: #661d41;
  color: white;
}
    .no-results {
      grid-column: 1/-1;
      padding: 20px;
      background: white;
      border-radius: 8px;
      font-size: 18px;
      color: #555;
    }
/* =================Gallery page=============== */