/* gallery.css */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    padding: 10px;
  }
  
  .gallery-item {
    position: relative;
  }
  
  .gallery-img {
    width: 100%;
    height: 150px; /* Standardized height */
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  
  .gallery-img:hover {
    transform: scale(1.05);
  }
  
  /* Lightbox styling */
  .lightbox {
    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;
  }
  
  .lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
  }
  