/* Hero Video Styles - Otomatik Oynatma */

.banner-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.banner-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}

/* Video üzerine hafif gradient overlay (opsiyonel) */
.banner-video::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 100%);
  pointer-events: none;
  z-index: 1;
  border-radius: 10px;
}

/* Responsive ayarlar */
@media (max-width: 991px) {
  .banner-video {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .banner-video {
    padding-bottom: 75%; /* Mobilde daha kare görünüm */
  }
}

/* Animasyon ekle */
.banner-video {
  animation: fadeInScale 0.8s ease-out;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
