@font-face {
  font-family: 'Samim';
  src: url('/assets/fonts/Samim.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

/* ساختار اصلی */
.home-intro-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  padding-top: 15vh;
  box-sizing: border-box;
}

/* عنوان ثابت */
.home-intro-title {
  font-family: 'Samim', sans-serif;
  font-size: 2.4rem; /* 3 برابر متن متحرک */
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 90vw;
  text-shadow: 0 0 6px #ffd700, 0 0 12px #ffea00;
  margin-bottom: 1rem;
}

/* متن متحرک */
.home-intro-typed {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 0.5rem;
}

#typed {
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 0 6px #ffd700, 0 0 12px #ffea00;
  animation: glow 1.8s ease-in-out infinite;
  display: inline-block;
  min-height: 30px;
}

/* افکت درخشش */
@keyframes glow {
  0%   { text-shadow: 0 0 6px #ffd700, 0 0 12px #ffd700; }
  50%  { text-shadow: 0 0 16px #ffea00, 0 0 20px #ffea00; }
  100% { text-shadow: 0 0 6px #ffd700, 0 0 12px #ffd700; }
}

/* نسخه موبایل */
@media (max-width: 576px) {
  .home-intro-content {
    padding-top: 25vh;
    height: auto;
  }

  .home-intro-title {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
    white-space: normal;
    line-height: 1.4;
  }

  #typed {
    font-size: 0.6rem;
  }

  .home-intro-typed {
    justify-content: center;
    padding-left: 0;
  }
}