/* ✦ KZ Hero Section - תמונת hero אחידה ✦ */
.kz-hero-bg {
  position: relative;
  background: linear-gradient(135deg, rgba(11,31,58,0.85), rgba(26,58,92,0.85)), url('/images/hero-shofar.png');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  color: white;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
}
.kz-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(11,31,58,0.5));
  pointer-events: none;
}
.kz-hero-bg > * { position: relative; z-index: 1; }
.kz-hero-bg h1 {
  font-size: clamp(28px, 5vw, 48px);
  color: #C9A14A;
  margin-bottom: 14px;
  font-weight: 900;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.kz-hero-bg p {
  font-size: clamp(16px, 2.5vw, 20px);
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
}

/* Hero עם וידאו */
.kz-hero-video {
  position: relative;
  overflow: hidden;
  height: 60vh;
  min-height: 400px;
}
.kz-hero-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}
.kz-hero-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,31,58,0.3), rgba(11,31,58,0.7));
  z-index: 1;
}
.kz-hero-video-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  color: white;
}

@media (max-width: 768px) {
  .kz-hero-bg { padding: 40px 16px; }
  .kz-hero-video { height: 50vh; min-height: 300px; }
}
