/* Betheme reveals ".animate" elements via scroll/init JS; that JS depends on
   plugins (slick, waypoints) that don't fully work in this static export, so
   force content visible instead of relying on it. */
.animate {
  opacity: 1 !important;
}

/* Lightweight replacement for the original Revolution Slider hero (3 slides). */
.hero-carousel {
  position: relative;
  height: 85vh;
  overflow: hidden;
  background-color: #222;
}

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

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 34%;
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.45) 0px, rgba(255, 255, 255, 0.45) 1px, transparent 1px, transparent 6px),
    linear-gradient(to right, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0));
  -webkit-backdrop-filter: blur(0.5px);
  backdrop-filter: blur(0.5px);
}

.hero-slide-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  padding: 0 60px;
  color: #222;
  max-width: 34%;
  box-sizing: border-box;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: #2f9bf0;
}

.hero-logo {
  max-width: 220px;
  height: auto;
  display: block;
}

.hero-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-logo-subtitle {
  display: block;
  margin-top: -1px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 800;
  color: #222;
}

.hero-title {
  font-size: 42px;
  line-height: 1.25;
  font-weight: 700;
  margin: 0;
  color: #222;
  text-shadow: none;
}

.hero-dots {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50% !important;
  border: 2px solid #fff !important;
  background: transparent !important;
  padding: 0 !important;
  cursor: pointer;
}

.hero-dot.is-active {
  background: #fff !important;
}

@media (max-width: 767px) {
  .hero-carousel {
    height: 480px;
  }

  .hero-title {
    font-size: 26px;
  }

  .hero-slide-inner {
    padding: 0 24px;
  }
}