/* ===== HERO SECTION ===== */

#hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

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

.slide.active { opacity: 1; }
.slide-1 {
  background-image: url('../assets/images/bb%20go.webp');
}
.slide-2 { background-image: url('https://images.unsplash.com/photo-1594612622464-ab6f730893f6?q=80&w=1920&auto=format&fit=crop'); }
.slide-3 { background-image: url('https://images.unsplash.com/photo-1596429746117-ee3337fa3fd0?q=80&w=897&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D'); }
.slide-4 { background-image: url('https://images.unsplash.com/photo-1755258486275-1b171daf43c4?q=80&w=871&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D'); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,31,21,0.3) 0%,
    rgba(13,31,21,0.1) 40%,
    rgba(13,31,21,0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: heroReveal 1.8s ease forwards;
  opacity: 0;
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 40px rgba(0,0,0,0.4);
}

.hero-title em {
  font-style: italic;
  color: var(--sand-light);
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 200;
  letter-spacing: 0.1em;
  color: rgba(245,239,230,0.85);
  margin-bottom: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: inline-block;
  padding: 1rem 3rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}

.hero-cta:hover { color: var(--dark); }
.hero-cta:hover::before { transform: scaleX(1); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: fadeInUp 2s 2s both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

.scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.6);
}

/* Slide dots */
.slide-dots {
  position: absolute;
  bottom: 3rem;
  right: 4rem;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(245,239,230,0.4);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: var(--gold);
  transform: scale(1.3);
}