@font-face {
  font-family: "IranYekanX"; /* نام دلخواه برای فونت */
  src:
    url("../fonts/IRANYekanX-Regular.woff2") format("woff2"),
    /* فرمت مدرن */ url("../fonts/IRANYekanX-Regular.woff") format("woff"),
    /* فرمت قدیمی‌تر */ url("../fonts/IRANYekanX-Regular.ttf")
      format("truetype"); /* فرمت TTF */
  font-weight: normal; /* وزن فونت */
  font-style: normal; /* استایل فونت */
}
:root{
  --primary-color: #000080;
  --secondary-color: #fff;
  --background-light: #f5f5f5;
}

/* تنظیمات عمومی */
body, ul, li, a, img{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

*, *::before, *::after{
  box-sizing: border-box;
}

body{
  font-family: IRANYekanX, sans-serif;
  direction: rtl;
  line-height: 1.6;
  background-color: #f5f5f5; /* پس‌زمینه عمومی */
  color: #333333; /* متن عمومی */
}
html{
  scroll-behavior: smooth;
}
