/*  assets/styles/global.css  */

/* تعریف فونت صمیم با آدرس‌دهی صحیح */
@font-face {
  font-family: 'Samim';
  src: url('../../fonts/Samim.eot');
  src: url('../../fonts/Samim.eot?#iefix') format('embedded-opentype'),
       url('../../fonts/Samim.woff') format('woff'),
       url('../../fonts/Samim.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* متغیرهای رنگی پروژه بر اساس پالت جدید */
:root {
  --primary-color: #F5F1EA;     
  --secondary-color: #C89B3C;   
  --accent-color: #7A4E2D;      
  --bg-cream: #2B1E16;          
  
  --text-dark: #2B1E16;         
  --text-muted: #7A4E2D;        
  --border-light: #e5dfd5;    
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-cream); /* تغییر رنگ پس‌زمینه به کرم روشن */
    font-family: 'Samim', Tahoma, -apple-system, BlinkMacSystemFont, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center; 
    overflow: hidden; /* جلوگیری از اسکرول خوردن‌های ناخواسته روی موبایل */
    padding: 20px;
    direction: rtl; /* جهت کلی صفحه راست‌به‌چپ */
    color: var(--text-dark); /* اعمال رنگ متن اصلی تیره */
}

.container {
    text-align: center;
    width: 100%;
    max-width: 500px;
    z-index: 1;
}
