 /* ===============================
   HERO – SABİT KART SİSTEMİ
=============================== */

.hero-video{
  position: relative;
  height: 80vh;
  overflow: hidden;
}

/* VIDEO */
.hero-video video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video .hero-text{
  position: absolute;
  inset: 0;                 /* 👈 KRİTİK */
  margin: auto;             /* 👈 KRİTİK */

  width: 520px;
  height: 520px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background: #4b0f73;
  border-radius: 18px;

  text-align: center;
  color: #fff;

  box-shadow: 0 40px 90px rgba(0,0,0,.35);
  z-index: 10;
}


  width: 520px;              /* 🔒 SABİT */
  max-width: 520px;
  min-width: 520px;

  padding: 48px 46px;
  background: #4b0f73;       /* Purple Shoes moru */

  border-radius: 18px;
  text-align: center;
  color: #fff;

  box-shadow: 0 40px 90px rgba(0,0,0,.35);
  z-index: 10;
}

/* ÜST KÜÇÜK METİN */
.hero-video .hero-eyebrow{
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  letter-spacing: 4px;
  margin-bottom: 14px;
  opacity: .9;
}

/* BAŞLIK */
.hero-video .hero-text h1{
  font-family: 'Anton', sans-serif;
  font-size: 54px;
  line-height: 1.05;
  margin-bottom: 18px;
  text-transform: uppercase;
}

/* ALT METİN */
.hero-video .hero-text p{
  font-size: 14px;
  font-weight: 600;
}

/* OVAL BUTON */
.hero-cta{
  margin-top: 28px;
  padding: 14px 42px;

  background: #ffffff;
  color: #4b0f73;

  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;

  border-radius: 999px;
  text-decoration: none;

  box-shadow: 0 14px 30px rgba(0,0,0,.25);
  transition: .25s ease;
}

.hero-cta:hover{
  background: #2b003f;
  color: #fff;
}

/* ===============================
   MOBİL
=============================== */
@media (max-width: 768px){

  .hero-video{
    height: 70vh;
  }

  .hero-video .hero-text{
    width: 88%;
    min-width: unset;
    max-width: 360px;
    padding: 34px 24px;
  }

  .hero-video .hero-text h1{
    font-size: 32px;
  }
}
.hero-video .hero-text h1{
  font-family: 'Anton', sans-serif;
  font-size: 78px;        /* ⬅️ 68 → 78 */
  line-height: 1.1;       /* güvenli satır aralığı */
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-video .hero-eyebrow{
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;        /* 15 → 16 */
  letter-spacing: 4px;
  margin-bottom: 18px;
  opacity: .9;
}

.hero-video .hero-text p{
  font-size: 17px;        /* 16 → 17 */
  font-weight: 600;
}
ight: 600;
}
@media (max-width: 768px){

  .hero-video .hero-text h1{
    font-size: 42px;     /* 38 → 42 */
    line-height: 1.15;
  }

  .hero-video .hero-text p{
    font-size: 15px;
  }

  .hero-video .hero-eyebrow{
    font-size: 13px;
  }
}
.hero-video .hero-text::before{
  content: "";
  position: absolute;

  width: 520px;     /* ✅ eski genişlik */
  height: 520px;    /* ✅ dikey form */

  background: #4b0f73;
  border-radius: 24px;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  z-index: -1;
  box-shadow: 0 40px 90px rgba(0,0,0,.35);
}
@media (max-width: 768px){
  .hero-video .hero-text::before{
    width: 90%;
    height: 440px;
    border-radius: 20px;
  }
}
/* === HERO TEXT – GERÇEK MERKEZ (OVERRIDE) === */
.hero-video .hero-text{
  position: absolute !important;

  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;

  width: 520px !important;
  max-width: 520px !important;
  min-width: 520px !important;

  padding: 48px 46px !important;

  background: #4b0f73 !important;
  border-radius: 18px !important;

  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;

  text-align: center !important;
  color: #ffffff !important;

  box-shadow: 0 40px 90px rgba(0,0,0,.35) !important;
  z-index: 999 !important;
}
