.hero-slideshow  { font-family: Arial, Helvetica, sans-serif; }

/* ── SLIDESHOW CONTAINER ─────────────────────────── */
.hero-slideshow {
  height: 100vh;
  background-color: #000;
  position: relative;
}

.hero-slideshow .uk-slideshow-items {
  height: 90vh !important;
}

/* ── EACH SLIDE ──────────────────────────────────── */
.hero-slide {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.10);
}

.hero-slide-bg-mobile {
  display: none;
}

@media (max-width: 639px) {
  .hero-slide-bg-mobile { display: block; }
  .hero-slide-bg-desktop { display: none; }
}

.hero-slide-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
  z-index: 1;
}

/* ── CONTENT LAYER ───────────────────────────────── */
.hero-slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 80px;
}

/* Default: content fills full width */
.hero-slide-inner {
  width: 100%;
}

/* Slide with logo: 3fr text + 1fr logo */
.hero-slide-inner--with-logo {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-slide-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-slide-logo img {
  max-width: 100%;
  max-height: 360px;
  object-fit: contain;
}

/* ── TEXT ────────────────────────────────────────── */
.hero-slide-text h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1;
  margin: 0 0 16px;
  text-transform: uppercase;
  max-width: 30ch;
}

.hero-slide-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  line-height: 1.2;
  margin: 0 0 28px;
  max-width: 650px;
}

/* ── BUTTON ──────────────────────────────────────── */
.hero-btn {
  display: inline-block;
  background-color: rgb(0, 122, 255);
  color: #fff !important;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
  margin-top:30px;
}

.hero-btn:hover {
  background-color: rgb(0, 100, 220);
  transform: scale(1.04);
  color: #fff !important;
  text-decoration: none;
}

/* ── DOT NAVIGATION ──────────────────────────────── */
.hero-dotnav {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 9999;
  pointer-events: none;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  padding: 0;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.2s;
}

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

/* ── MOBILE ──────────────────────────────────────── */
@media (max-width: 639px) {
  .hero-slide-content {
    padding: 32px;
  }

  .hero-slide-inner--with-logo {
    grid-template-columns: 1fr;
  }

  .hero-slide-logo {
    display: none;
  }

  .hero-slide-text p {
    max-width: 100%;
  }
}
