/* ============================================
   HERO.CSS — Banner ảnh lớn đầu trang
   Sửa: chiều cao hero, ảnh nền, overlay text
   ============================================ */

#hero {
  overflow: hidden;
  min-height: 100svh !important;
  background-color: var(--cream);
}

#hero picture,
#hero img {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  transition: none;
  backface-visibility: hidden;
}

#hero img {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100vh;
  min-width: 0;
  min-height: 0;
  max-width: 100vw;
  max-height: 100vh;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 767px) {
  #hero {
    min-height: 90svh !important;
  }
  #hero picture,
  #hero img {
    height: 92vh !important;
    max-height: 99vh !important;
  }
}
