/* Hero Background Gallery Styles */
.hero-gallery {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-gallery-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-gallery-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

.hero-gallery-slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
}

.hero-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Dots/Indicators */
.hero-gallery-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.hero-gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hero-gallery-dot.active {
  background-color: var(--primary-color, #FFD700);
  border-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.hero-gallery-dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

/* Fade transition animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.hero-gallery-slide.fade-in {
  animation: fadeIn 0.8s ease-in-out;
}

.hero-gallery-slide.fade-out {
  animation: fadeOut 0.8s ease-in-out;
}

/* Loading state */
.hero-gallery-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 1.25rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-gallery-dots {
    bottom: 1rem;
    gap: 0.5rem;
  }
  
  .hero-gallery-dot {
    width: 10px;
    height: 10px;
  }
}