
/* =====================================================
   TAKO Hero Video Background + Dark Overlay
   ===================================================== */

.hero__bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero__video {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: contrast(1.1) saturate(1.15);
  opacity: 0;
  animation: heroFadeIn 1.5s ease-in-out forwards;
}

.hero__overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    rgba(10, 0, 25, 0.55),
    rgba(10, 0, 25, 0.75)
  );
  z-index: 1;
  pointer-events: none;
}

.hero__container {
  position: relative;
  z-index: 2;
}

@keyframes heroFadeIn {
  to { opacity: 1; }
}

/* Optional: Brighten logo slightly */
.hero__title img {
  filter: drop-shadow(0 0 10px rgba(163, 99, 231, 0.7));
}


