@font-face {
  font-family: "Vazirmatn";
  src: url("/files/fonts/Vazirmatn.ttf") format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Squada";
  src: url("/files/fonts/Squada.ttf") format("woff2");
  font-weight: normal;
  font-style: normal;
}

body {
    background-image: url("/files/image/background.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}
/* warm neon animation (red/orange/yellow) */
@keyframes warmNeon {
    0%,100%{text-shadow:0 0 8px rgba(255,183,77,0.9),0 0 24px rgba(255,99,71,0.6)}
    50%{text-shadow:0 0 14px rgba(255,99,71,1),0 0 36px rgba(255,215,64,0.6)}
}
.neon-warm{animation:warmNeon 2.4s ease-in-out infinite}

.glass { background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); backdrop-filter: blur(6px); }

/* responsive tweaks for very small screens */
@media (max-width:420px){
    .hero-title{font-size:1.4rem}
}

/* gallery image transition */
.gallery-img{transition:opacity .6s ease, transform .6s ease}