/* ===============================
   HERO – TEMİZ VE SON HAL
=============================== */

.hero-video{
  position: relative;
}

/* YAZI ALANI */
.hero-video .hero-text{
  position: absolute;
  inset: 0;
  z-index: 20;

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

  text-align: center;
  color: #fff;
  pointer-events: none;
}

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

/* ANA BAŞLIK */
.hero-video .hero-text h1{
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 6vw, 92px);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0 0 22px;
  text-transform: uppercase;

  color: #fff;
  text-shadow: 0 6px 18px rgba(0,0,0,.25);
}

/* ALT METİN */
.hero-video .hero-text p{
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  opacity: .95;
}

/* BUTON – ESKİ ŞIK OVAL */
.hero-cta{
  margin-top: 34px;

  padding: 14px 44px;
  border-radius: 999px;

  background: #ffffff;
  color: #4b1f6f;

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

  text-decoration: none;
  pointer-events: auto;

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

.hero-cta:hover{
  background: #4b1f6f;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,.3);
}

/* MOBİL */
@media (max-width: 768px){
  .hero-video .hero-text h1{
    font-size: 36px;
  }

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

  .hero-cta{
    padding: 12px 34px;
    font-size: 13px;
  }
}

/* ===============================
   HERO CTA – OVAL BUTON
=============================== */

.hero-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 240px;        /* büyük görünüm */
  height: 56px;

  padding: 0 36px;
  border-radius: 999px;   /* 🔴 TAM OVAL */

  background: #ffffff;
  color: #4b167a;         /* Purple Shoes uyumlu */

  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;

  text-decoration: none;
  border: none;
  cursor: pointer;

  transition: all .25s ease;
}

/* HOVER */
.hero-cta:hover{
  background: #4b167a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

/* MOBİL */
@media (max-width:768px){
  .hero-cta{
    min-width: 220px;
    height: 52px;
    font-size: 13px;
  }
}
