body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f8f8f8;
  color: #333;
}

.gallery-header {
  background-color: #ba1c50;
  color: white;
  text-align: center;
  padding: 40px 20px 20px;
  position: relative;
}

.gallery-header h1 {
  margin: 0;
}

.back-button {
  position: absolute;
  left: 20px;
  top: 40px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.back-button:hover {
  color: #ffd1dc;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.footer {
  background: #ba1c50;
  color: #fff;
  text-align: center;
  padding: 20px;
}


.labelled-gallery-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.labelled-gallery-section h2 {
  color: #ba1c50;
  margin-bottom: 40px;
}

.labelled-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.gallery-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
}

.gallery-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.caption {
  padding: 12px;
  font-size: 15px;
  color: #444;
  font-weight: 500;
}  


.portrait-gallery-section {
  padding: 60px 20px;
  background: #fafafa;
  text-align: center;
}

.portrait-gallery-section h2 {
  color: #ba1c50;
  margin-bottom: 40px;
}

.portrait-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.portrait-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  aspect-ratio: 2 / 3;
  display: flex;
  /* align-items: center; */
  /* justify-content: center; */
}

.portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portrait-card:hover img {
  transform: scale(1.05);
}

  .video{
      
      font-family: Arial, sans-serif;
      background: #f4f4f4;
      margin: 0;
      padding: 20px;
      text-align: center;
    }

    h1 {
      margin-bottom: 30px;
    }

    .video-container {
      display: flex;
      gap: 30px;
      max-width: 600px;
      margin: 10px auto;
      background: #000;
      padding: 10px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    video {
      width: 100%;
      height: auto;
      border-radius: 10px;

    }



@media (max-width: 768px) {
  .gallery-header {
    padding: 30px 15px 15px;
  }

  .gallery-header h1 {
    font-size: 24px;
  }

  .back-button {
    top: 30px;
    left: 15px;
    font-size: 14px;
  }

  .gallery-grid,
  .labelled-gallery-grid,
  .portrait-gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 20px 15px;
  }

  .gallery-item img,
  .gallery-card img,
  .portrait-card img {
    height: auto;
    object-fit: contain;
  }

  .labelled-gallery-section,
  .portrait-gallery-section {
    padding: 40px 15px;
  }

  .labelled-gallery-section h2,
  .portrait-gallery-section h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .caption {
    font-size: 14px;
  }

  .video-container {
    flex-direction: column;
    gap: 15px;
    padding: 10px;
    max-width: 100%;
  }

  h1 {
    font-size: 24px;
  }

  .footer {
    padding: 15px;
    font-size: 14px;
  }
}
