/* ===============================
   HERO – CLEAN & LOCKED
================================ */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;          /* 🔒 Mobil varsayılan */
  overflow: hidden;
}

/* VIDEO */
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 12%;
  color: #fff;
  max-width: 720px;
}

/* TEXT */
.hero-content h1 {
  font-size: 64px;
  line-height: 1.08;
  font-weight: 500;
}

.hero-lead {
  margin-top: 20px;
  font-size: 28px;
  opacity: 0.95;
}

.hero-desc {
  margin-top: 22px;
  font-size: 18px;
  opacity: 0.85;
  line-height: 1.6;
}

/* BUTTON */
.hero-btn {
  margin-top: 30px;
  display: inline-block;
  padding: 16px 44px;
  border-radius: 14px;
  background: linear-gradient(135deg,#6a11cb,#2575fc);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  width: fit-content;
}

/* ===============================
   DESKTOP HEIGHT CONTROL
================================ */
@media (min-width: 1024px) {
  .hero {
    height: 64vh;     /* 🔥 SADECE BURADAN AYARLANIR */
  }
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 768px) {
  .hero {
    height: 100vh;
  }

  .hero-content {
    padding: 0 7%;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-lead {
    font-size: 20px;
  }

  .hero-desc {
    font-size: 16px;
  }
}
