/* Hero Section Styles matching Figma Prototype (ref_01_hero.png) */

.hero-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  max-height: 1080px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background-color: #000;
}

.hero-slides-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

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

.hero-bottom-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 400;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
  margin: 0;
}

.hero-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero-pagination .dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.hero-pagination .dot:hover {
  background-color: rgba(255, 255, 255, 0.75);
  transform: scale(1.2);
}

.hero-pagination .dot.active {
  background-color: #FFFFFF;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.9);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .hero-wrapper {
    min-height: 540px;
    height: 80vh;
  }
  .hero-title {
    font-size: 16px;
    letter-spacing: 2px;
  }
  .hero-bottom-content {
    padding-bottom: 35px;
    gap: 12px;
  }
}
