
.GalleryBg {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background-color: #eaefec4d;
  padding: 80px 0px;
  /* margin-bottom: 50px; */
}
.GalleryTitle {
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
}
.GallerySubTitle {
  color: #737373;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 35px;
}
.GalleryBtnContainer {
font-family: "Outfit", sans-serif;
  text-align: center;
  margin-top: 20px;
}

.buttons {
  margin-bottom: 20px;
}

.buttons button {
  background-color: #f0f0f0;
  border: none;
  padding: 10px 20px;
  margin: 0 5px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s ease;
}

.buttons button.active {
  background-color: #D4AF37;
  color: white;
}

.content {
  display: none;
}

.content.active {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}


.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: center;
  padding: 10px;
}

.photo-item {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.photo-item:hover {
  transform: translateY(-5px);
}

.photo-item img {
  width: 100%;
  height: auto;
  display: block;
}

.photo-title {
  font-size: 16px;
  font-weight: bold;
  margin: 8px 0 4px;
  color: #333;
}

.photo-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}



.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: center;
  padding: 10px;
}

.video-item {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  width: 100%;
}

.video-item:hover {
  transform: translateY(-5px);
}

.video-item video {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #eee;
}

.video-title {
  font-size: 16px;
  font-weight: bold;
  margin: 8px 0 4px;
  color: #333;
}

.video-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}



/* Responsive breakpoints */
@media (max-width: 768px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .photo-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .video-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}