.dm-hero-widget {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 100vh;
  color: #fff;
}

.dm-hero-content {
  position: relative;
  z-index: 2; /* Place above the overlay */
  text-align: center;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.dm-hero-content h1 {
    font-family: Montserrat;
    font-size: 3rem;
    font-weight: 700;
    line-height: 3.5rem;
    letter-spacing: 0.5px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #ffffff;
    text-transform: uppercase;

}

.dm-hero-content .action {
    display: block;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 28px;
    text-align: center;

}

.dm-hero-play-button {
  display: inline-block;
  margin-top: 20px;
  font-size: 2rem;
  color: #ffffff;

  text-decoration: none;
  border-radius: 50%;
  line-height: 46px;
  text-align: center;
  transition: 0.3s;
}

.dm-hero-play-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  opacity: 1;
}

@media (max-width: 768px) {
  .dm-hero-content h1 {
      font-family: Montserrat;
      font-size: 44px;
      font-weight: 700;
      line-height: 53.64px;
      text-align: center;

  }
  .dm-hero-play-button svg {
      height: 80.14px;
      width: 77.89px;
  }
  .dm-hero-play-button {
    height: 80.14px;
    width: 77.89px;
  }
}

.dm-scroll-down {
    position: absolute;
    bottom: 44px;
    right: 44px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    transition: background 0.3s;
    animation: bounce 2s infinite ease-in-out;
}

.dm-scroll-down:hover {
    background: rgba(255, 255, 255, 1);
}

/* Subtle bounce animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}


.lenis.lenis-smooth iframe {
    pointer-events: all !important;
}

    .dm-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.8);
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .dm-modal-content {
            position: relative;
            width: 80%;
            max-width: 800px;
            background: #fff;
            padding: 32px 20px 20px 20px ;
            border-radius: 10px;
        }
        .dm-close {
            position: absolute;
            top: -8px;
            right: 15px;
            font-size: 30px;
            cursor: pointer;
        }
