/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -     HERO 2 (home)     - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* General Styles for #home */
#video {
	filter: brightness(75%);
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Background Video (if applicable) */
#background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0; /* Place behind the content */
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter:brightness(100%);
}

/* For responsive video adjustments */
@media (max-width: 768px) {
#background-video {
    min-width: 100%;
    min-height: 100%;
    object-fit:absolute;
}
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20%);
    }
    60% {
        transform: translateX(-50%) translateY(-10%);
    }
}

/* Scroll-down arrow */
.scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2000ms ease-out infinite;
    cursor: pointer;
    z-index: 1;
}

.scroll-down img {
    width: 45px; /* Default size */
    opacity: 1;
    transition: opacity 300ms ease;
}

/* Adjust size for smaller screens */
@media (max-width: 768px) {
  .scroll-down img {
      width: 30px;
  }
}

.scroll-down:hover img {
    opacity: 0.8;
}

/* Bounce animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20%);
    }
    60% {
        transform: translateX(-50%) translateY(-10%);
    }
}



.mute-toggle,
.play-toggle {
  position: absolute;
  left: 15px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: unset;
  backdrop-filter: unset;
  border: none;
  border-radius: 100px;
  padding: 10px;
  cursor: pointer;
  z-index: 2;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.mute-toggle {
  bottom: 15px;
}

.play-toggle {
  bottom: 80px;
}

.mute-toggle img,
.play-toggle img {
  cursor:pointer;
  width: 24px;
  height: 24px;
}

/* hover effect */
.mute-toggle:hover,
.play-toggle:hover {
  cursor:pointer;
  background-color: rgba(255, 255, 255, 0.75);
}