/* Circular Gallery Styles */

.circular-gallery-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  cursor: grab;
  border-radius: 12px;
  background: #fff;
}

.circular-gallery-container:active {
  cursor: grabbing;
}

.circular-gallery-container canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Gallery overlay for text labels */
.gallery-overlay {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 40px;
  pointer-events: none;
  z-index: 10;
}

.gallery-label {
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent, #e851ec);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

/* Scroll hint */
.gallery-hint {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  color: var(--muted, #888);
  letter-spacing: 0.05em;
  opacity: 0.5;
  pointer-events: none;
}

/* Section hint below gallery */
section .gallery-hint {
  position: static;
  transform: none;
  text-align: center;
  margin-top: 16px;
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: 12px;
  color: var(--dim);
  letter-spacing: 0.05em;
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
  .circular-gallery-container {
    height: 350px;
  }
  
  .gallery-overlay {
    gap: 20px;
    bottom: 20px;
  }
  
  .gallery-label {
    font-size: 12px;
  }
}
