/* لود فونت اختصاصی */
@font-face {
  font-family: "IRANSans";
  src: url("../font/IRANSans.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

/* تنظیمات پایه */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  direction: rtl;
  text-align: right;
  font-family: "IRANSans", Arial, sans-serif;
  background-color: #333; /* خاکستری متریال دیزاین */
  color: #ffffff;
  height: 100%;
}

/* استایل هدر */
header {
  background: #424242; /* خاکستری متریال */
  color: white;
  padding: 15px;
}

/* استایل فوتر */
footer {
  background: #424242;
  color: white;
  text-align: center;
  padding: 10px;
  margin-top: auto;
  position: relative;
  width: 100%;
}

/* دکمه‌ها */
.btn-custom {
  background-color: #616161;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background 0.3s ease-in-out;
}

.btn-custom:hover {
  background-color: #757575;
}

/* مرکز‌چین کردن محتوا */
.centered-content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  flex-direction: column;
}

/* لینک‌ها */
a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

a:hover {
  color: #bdbdbd;
}
