/* assets/css/style.css */

/* Video arka planı */
.bg-video {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  object-fit: cover;
  z-index: 0;       /*— 0 yapıyoruz, artık body’nin arkasına düşmez */
}

/* Sparkle katmanı */
#sparkleCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  pointer-events: none;
  background: transparent;
  z-index: 1;       /* video üstünde, ama buton altında */
}

/* Müzik butonu */
.music-icon {
  position: fixed;
  bottom: 20px; right: 20px;
  width: 60px; height: 60px;
  font-size: 2rem;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 2;       /* en üstte görünsün */
}

/* Mobilde video ve canvas’ı gizle, yerine arka plan fotoğraf */
@media only screen and (max-width: 768px) {
  .bg-video, #sparkleCanvas {
    display: none;
  }
  body {
    background: url('../img/stars.jpg') center/cover no-repeat fixed;
    overflow: auto;
  }
}
