/* ===== HERO GALLERY ===== */
.hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; }

.hero-gallery { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.80) 0%, rgba(255,107,0,0.35) 100%);
}

.hero-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 2rem;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 2;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900; color: #fff; line-height: 1.15;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-content h1 span { color: var(--orange); }
.hero-content p {
  font-size: 1.15rem; color: rgba(255,255,255,0.85);
  margin-bottom: 2rem; line-height: 1.7; max-width: 650px;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Dots */
.hero-dots {
  position: absolute; bottom: 4rem; left: 50%;
  transform: translateX(-50%); z-index: 10;
  display: flex; gap: 0.5rem;
}
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.45); cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.dot.active { background: var(--orange); transform: scale(1.3); }

/* Arrows */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; background: rgba(255,255,255,0.15);
  border: none; color: #fff; width: 44px; height: 44px;
  border-radius: 50%; cursor: pointer; font-size: 1rem;
  backdrop-filter: blur(4px);
  transition: background 0.3s;
}
.hero-arrow:hover { background: var(--orange); }
.hero-arrow.prev { left: 1.5rem; }
.hero-arrow.next { right: 1.5rem; }

/* Scroll caret */
.hero-scroll {
  position: absolute; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%); z-index: 10;
}
.hero-scroll a { color: #fff; font-size: 1.3rem; animation: bounce 1.5s infinite; }
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}
