/* ====== Gallery Section ====== */
.gallery {
    padding: 4rem 1rem;
    background-color: #f7f7f7;
  }
  
  .gallery .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-family: 'Chakra Petch', sans-serif;
    color: #333;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: #fff;
  }
  
  .gallery-img,
  .gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .gallery-video {
    max-height: 220px;
  }
  
  /* Responsive tweaks */
  @media screen and (max-width: 1024px) {
    .gallery-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
  }
  
  @media screen and (max-width: 600px) {
    .gallery {
      padding: 2rem 1rem;
    }
  
    .gallery .section-title {
      font-size: 1.8rem;
    }
  
    .gallery-video {
      max-height: 180px;
    }
  }
  