#ll-hero {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}

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

#ll-hero .ll-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: right center;
  opacity: 0;
  transition: opacity 1s ease;
  will-change: transform, opacity;
}

#ll-hero .ll-hero-slide--visible {
  opacity: 1;
}

#ll-hero .ll-hero-slide--moving {
  animation: ll-kenburns 13s linear forwards;
}

@keyframes ll-kenburns {
  0% {
    transform: scale(1) translateX(0);
  }
  100% {
    transform: scale(1.05) translateX(-40px);
  }
}

#ll-hero .ll-hero-darkoverlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

#ll-hero .ll-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  text-align: center;
}

#ll-hero .ll-hero-title {
  font-family: 'Hind', sans-serif !important;
  font-size: 50px !important;
  line-height: 60px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  letter-spacing: 2px !important;
  margin: 0 !important;
}

#ll-hero .ll-hero-subtitle {
  font-family: 'Hind', sans-serif !important;
  font-size: 24px !important;
  line-height: 24px !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.8) !important;
  letter-spacing: 1px !important;
  margin: 15px 0 0 !important;
}

#ll-hero .ll-hero-arrow {
  margin-top: 30px;
  opacity: 0.7;
  animation: ll-bounce 2s ease infinite;
  cursor: pointer;
}

@keyframes ll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Homepage menu: white over hero, dark on scroll */
.home .header:not(.hover) .thb-full-menu > li > a {
  color: #ffffff !important;
}

.home .header:not(.hover) .thb-full-menu > li > a:hover {
  color: #111111 !important;
}

.home .header.hover .thb-full-menu > li > a,
.home .header:hover .thb-full-menu > li > a {
  color: #111111 !important;
}

@media (max-width: 480px) {
  #ll-hero {
    height: 400px;
  }
  #ll-hero .ll-hero-title {
    font-size: 30px !important;
    line-height: 36px !important;
    letter-spacing: 1px !important;
  }
  #ll-hero .ll-hero-subtitle {
    font-size: 16px !important;
    letter-spacing: 0.5px !important;
  }
}
