@charset "UTF-8";
/* CSS Document */
 .hero-media {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

/* Video ayarları */
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Görsel ayarları */
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

/* 📱 Mobilde video kapat, görsel aç */
@media (max-width: 768px) {
  .hero-video {
    display: none;
  }

  .hero-image {
    display: block;
  }

  .hero-media {
    max-width: 768px;
  }
}

.sound-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  padding: 10px 15px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
}
