/* Navigation positioning adjustments */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

/* Hero backdrop layout */
.hero.hero-backdrop {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 140px 6vw 100px;
  color: #fff;
  overflow: hidden;
}

.hero-video-slideshow {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(1.1);
  opacity: 0;
  transition: opacity 4s ease-in-out;
}

.hero-video.active {
  opacity: 1;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(0, 0, 0, 0.65) 100%);
  z-index: -1;
}

.hero-content-backdrop {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  position: relative;
  z-index: 1;
}

.hero-content-backdrop h1 {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: .5px;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.55);
}

.hero-content-backdrop p {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  opacity: 0.92;
  font-weight: 400;
}

.hero-content-backdrop .hero-cta {
  justify-content: flex-start;
}

/* Video indicators */
.video-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 2;
}

.video-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.video-indicator:hover {
  border-color: rgba(255, 255, 255, 0.9);
  transform: scale(1.2);
}

.video-indicator.active {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 1);
}

@media (max-width: 900px) {
  .hero.hero-backdrop {
    padding: 120px 5vw 80px;
  }

  .hero-content-backdrop h1 {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .hero-content-backdrop p {
    font-size: 1rem;
  }
}

@media (max-width: 900px) {
  .hero.hero-split {
    flex-direction: column;
    min-height: unset;
    padding: 80px 4vw 40px;
    gap: 2rem;
  }

  .hero-media {
    flex: unset;
    min-height: 280px;
    padding: 0;
  }

  .hero-media video,
  .hero-media img {
    border-radius: 20px !important;
  }

  .hero-content.hero-content-split {
    flex: unset;
    min-height: 320px;
    padding: 2.5rem 2rem;
    border-radius: 20px;
  }
}