body {
  font-family: 'Vazirmatn', sans-serif;
  background: linear-gradient(to bottom, #fff8f0, #fff);
}

/* انیمیشن متن */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-text {
  animation: fadeInUp 1s ease-out forwards;
}

/* Glow دکمه */
.btn-glow {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.btn-glow::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: all 0.5s;
}

.btn-glow:hover::after {
  left: 100%;
}

.btn-glow:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}
