.header-section {
  background-color: #2d3748;
  color: white;
  padding: 60px 20px;
  text-align: center;
}
.header-section h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
/* .breadcrumb {
  color: #a0aec0;
  font-size: 0.9rem;
} */
.filter-section {
  background: white;
  padding: 30px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.filter-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.filter-icon {
  color: #718096;
  margin-right: 15px;
}
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 10px;
}
.filter-btn {
  padding: 12px 28px;
  border: none;
  border-radius: 25px;
  background-color: #e2e8f0;
  color: #4a5568;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover {
  background-color: #cbd5e0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.filter-btn.active {
  background-color: #48bb78;
  color: white;
  box-shadow: 0 4px 12px rgba(72, 187, 120, 0.4);
  transform: scale(1.05);
}
.results-counter {
  margin-top: 20px;
  color: #718096;
  font-size: 0.9rem;
}
.gallery-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}
.gallery-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  display: none;
}
.gallery-item.show {
  display: block;
}
.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.image-wrapper {
  position: relative;
  overflow: hidden;
  height: 250px;
}
.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:hover .image-wrapper img {
  transform: scale(1.1);
}
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .image-overlay {
  opacity: 1;
}
.image-overlay span {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
}
.item-info {
  padding: 20px;
}
.item-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 10px;
}
.item-category {
  display: inline-block;
  padding: 6px 14px;
  background-color: #c6f6d5;
  color: #22543d;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.loading {
  text-align: center;
  padding: 60px 20px;
}
.spinner {
  border: 4px solid #e2e8f0;
  border-top: 4px solid #48bb78;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: #718096;
  font-size: 1.2rem;
}

/* CONTENT DETAILS  */

#customGalleryContainer {
  position: relative;
  font-family: Arial, sans-serif;
  max-width: 100%;
}

.customSlide {
  display: none;
}
 
#customPrevBtn,
#customNextBtn {
  cursor: pointer;
  position: absolute;
  top: 45%;
  padding: 10px 15px;
  font-size: 24px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  z-index: 2;
  user-select: none;
}

#customPrevBtn {
  left: 0;
  border-radius: 0 3px 3px 0;
}
#customNextBtn {
  right: 0;
  border-radius: 3px 0 0 3px;
}

#customPrevBtn:hover,
#customNextBtn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.customNumberText {
  color: white;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 8px;
  left: 8px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 3px;
}

#customCaptionContainer {
  text-align: center;
  background-color: #222;
  color: white;
  padding: 8px;
  margin-top: 5px;
}

#customThumbnailRow {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}

.customThumbCol {
  width: 80px;
  flex: 0 0 auto;
}

.customThumb {
  width: 100%;
  opacity: 0.6;
  border: 2px solid transparent;
  transition: opacity 0.3s, border-color 0.3s;
}

.customThumb:hover,
.customThumb.active {
  opacity: 1;
  border-color: #007bff;
}


.customSlide img {
  max-height: 400px;
  width: 100%;
  object-fit: contain;
  border-radius: 5px;
}
 