body {
  font-family: "Inter", sans-serif;
}

.yacht-card:hover .yacht-info {
  transform: translateY(0);
  opacity: 1;
}

.back-video {
  position: absolute;
  height: auto;
  width: 100%;
  z-index: -1;
}

.hero-bg {
  position: relative;
  overflow: hidden;
}
.hero-bg .back-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
}
.hero-bg .container {
  position: relative;
  z-index: 1;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

@keyframes ball-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
.animate-ball-bounce {
  animation: ball-bounce 1s infinite;
}
