 body { background: #fff6fa; margin: 0; }
    .gallery-hero {
      background: linear-gradient(90deg, #fff 60%, #ffe6f6 100%);
      text-align: center;
      padding: 2.5rem 0 1.3rem 0;
      border-radius: 0 0 38px 38px;
      margin-bottom: 2.2rem;
    }
    .gallery-hero-title {
      font-size: 2.2em;
      font-weight: 900;
      color: #E70098;
      margin-bottom: 0.3em;
      letter-spacing: 1px;
    }
    .gallery-hero-desc {
      font-size: 1.13em;
      color: #222;
      font-weight: 600;
      margin-bottom: 0.2em;
    }
    .gallery-section {
      max-width: 1200px;
      margin: 0 auto 2.4rem auto;
      padding: 0 1rem;
    }
    .gallery-grid {
      display: grid;
   grid-template-columns: repeat(3, 1fr);  /* 3 columns */

  gap: 1.3rem;
    }
    .gallery-item {
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 4px 16px #e7009833;
      overflow: hidden;
      transition: box-shadow 0.2s, transform 0.2s;
      position: relative;
      
    }
    .gallery-item:hover {
      box-shadow: 0 8px 32px #e7009875;
      transform: translateY(-4px) scale(1.04);
    }
    .gallery-img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      display: block;
    }
    


    .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* 3 columns */
  gap: 1.3rem;
}

/* Tablets / medium screens: 2 per row */
@media (max-width: 900px) {
  .gallery-section { padding: 0 0.3rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-img { height: 400px; }
}

/* Small screens */
@media (max-width: 600px) {
  .gallery-hero { padding: 1.2rem 0 0.7rem 0; border-radius: 0 0 16px 16px; }
  .gallery-section { padding: 0 0.18rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
  .gallery-img { height: 100px; }
}

/* Very small screens: 1 per row */
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .gallery-img { height: 350px; }
}


.gallery-video {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border: none;
  outline: none;
}

@media (max-width: 900px) {
  .gallery-video { height: 140px; }
}

@media (max-width: 600px) {
  .gallery-video { height: 100px; }
}

@media (max-width: 480px) {
  .gallery-video { height: 108px; }
}

