/* ================================
   FILM VIDEO HERO (Responsive)
================================= */
.film-image {
  position: relative;
  width: 100%;
  height: 100vh; /* Ekran yüksekliği kadar */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black; /* Video yüklenmeden önce siyah */
}

/* Video ayarları: responsive fullscreen */
.film-image video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;       /* genişlik otomatik */
  height: 100%;      /* ekranı dikeyde doldur */
  min-width: 100%;   /* yatayda tam otur */
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover; /* taşan kısmı kırp */
  z-index: 0;
  opacity: 0.7;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.5s ease;
}

/* Ana yazı katmanı */
.film-image .main-text {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  max-width: 90%;
  user-select: none;
}

/* Başlık */
.film-image .main-text h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-family: 'Orbitron', sans-serif;
  color: #e60012;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

/* Alt metin */
.film-image .main-text p {
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-style: italic;
  color: #ddd;
  line-height: 1.5;
  margin: 0;
}

/* Tablet ve büyük telefonlar (1024px altı) */
@media (max-width: 1024px) {
  .film-image { height: 80vh; }
  .film-image video {
    width: auto;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .film-image .main-text { padding: 1.5rem 1rem; }
}

/* Telefonlar ve küçük tabletler (768px altı) */
@media (max-width: 768px) {
  .film-image { height: 60vh; }
  .film-image video {
    width: auto;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
  }
  .film-image .main-text { padding: 1rem; }
}

/* Küçük telefonlar (480px altı) */
@media (max-width: 480px) {
  .film-image { height: 50vh; }
  .film-image video {
    width: auto;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
  }
  .film-image .main-text { padding: 0.8rem; }
}
