
/* Global Styles */
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
  background-color: #f7f7f7;
}
  
  /* Title */
  .title {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
  }
  
  /* Gallery Container */
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 20px;
  }
  
  /* Gallery Item */
  .gallery a {
    display: block;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    height: 200px; /* Added fixed height */
  }
  
  .gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .gallery a:hover img {
    transform: scale(1.1);
  }
  
  /* Lightbox Caption */
  .lb-caption {
    font-size: 16px;
    text-align: center;
    margin-top: 10px;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .gallery {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
  }