.home-hero {
  margin: 10px auto;
  padding: 30px 24px;
  max-width: 500px;
  text-align: center;
  color: #3C2A21;
  animation: fadeUp 1s ease;
}

/* 🔥 gradient şerit container */
.hero-text-bg {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 14px 24px; /* 🔥 gradient yüksekliğini kontrol eder */
}

/* 🔥 arka plan gradient */
.hero-text-bg::before {

  content: "";

  position: absolute;

  

  top: 0;

  left: 50%;

  transform: translateX(-50%);

  width: 120vw;   /* 🔥 ekranı aşar */

  height: 100%;

  background: linear-gradient(

    to right,

    transparent 10%,

    #ede2d5 50%,

    transparent 100%

  );

  border-radius: 14px;

  z-index: 0;

}

/* yazılar gradient üstünde */
.welcome-title,
.welcome-subtitle {
  position: relative;
  z-index: 1;
  margin: 0;
}

/* TITLE */
.welcome-title {
  font-size: 48px;
  font-weight: 700;
  margin: 0;
  color: #3D2012;
  text-align: center;
  display: inline-block;
}

/* shine sadece title */
.welcome-title::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;

  width: 45%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.28) 50%,
    transparent 100%
  );

  transform: skewX(-18deg);
  animation: shine 5s infinite;
}

/* SUBTITLE */
.welcome-subtitle {
  font-size: 16px;
  opacity: 0.7;
  margin-top: 6px; /* 🔥 yakınlık kontrolü */
}

/* ANİMASYON */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SHINE */
@keyframes shine {
  0% { left: -120%; }
  100% { left: 140%; }
}

@media (max-width: 500px) {
  .welcome-title {
    font-size: 32px;
  }
}