/* style.css - النسخة الإسلامية الكاملة */

@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700&display=swap');
/* خط أميري للعناوين ليعطي طابعاً عربياً أصيلاً */
@import url('https://fonts.googleapis.com/css2?family=Amiri:wght@400;700&display=swap');

:root {
    /* ألوان الثيم الإسلامي */
    --primary-color: #1a5c49;   /* أخضر إسلامي غامق */
    --secondary-color: #c5a059; /* ذهبي */
    --bg-color: #fdfbf7;        /* لون كريمي (ورق كتب) */
    --text-color: #2b2b2b;      /* أسود غير حالك للقراءة المريحة */
    --border-color: #e3dccf;    
    
    /* ارتفاع الهيدر والفوتر */
    --header-height: 70px;
    --footer-height: 60px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body, .exercise-body, .question-text, .answer-content, .order-item {
    -webkit-user-select: none; /* Chrome, Safari, Opera */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* Internet Explorer/Edge */
    user-select: none;         /* Standard syntax */
}

body {
    font-family: 'Tajawal', sans-serif;
    color: var(--text-color);
    direction: rtl;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    
    /* إعدادات الخلفية الجديدة */
    background-image: url('../images/bg.png');
    background-repeat: no-repeat;
    background-size: cover;     /* تمديد الصورة لتغطي كامل الشاشة */
    background-position: center center;
}

/* الهيدر: سنجعله بلوننا الأخضر المميز */
.exercise-header {
    height: var(--header-height);
    background-color: #075936; /* الأخضر الغامق */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 4px solid #d3b358;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* ظل خفيف لفصل الهيدر عن الخلفية */
    z-index: 10;
}

/* جسم التمرين */
.exercise-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* الكرت الذي يحتوي النص والأسئلة */
.content-wrapper {
    width: 100%;
    /* خلفية بيضاء ولكن شفافة قليلاً لكي تظهر نقوش الخلفية من ورائها بشكل جمالي */

}

/* الفوتر */
.exercise-footer {
    height: var(--footer-height);
    /* نجعل الفوتر شفافاً تماماً أو بلون خفيف ليدمج مع الخلفية */
    background-color: rgba(255, 255, 255, 0.9); 
    border-top: 1px solid #d3b358;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 10;
}

/* تنسيق الأزرار بشكل إسلامي (ذهبي وأخضر) */
.nav-btn {
    text-decoration: none;
    background-color: #075936;
    color: #d3b358;
    border: 2px solid #075936;
    padding: 8px 25px;
    border-radius: 50px; /* دائري */
    font-family: 'Tajawal', sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-btn:hover {
    background-color: transparent;
    color: #075936; /* النص يصبح ذهبي عند التحويم */
    border-color: #075936;
}

.nav-btn .arrow {
    font-size: 1.2rem;
    color: #d3b358; /* السهم دائماً ذهبي */
}

.nav-btn:hover .arrow {
    color: #d3b358;
}

/* تخصيص السكرول بار ليناسب التصميم */
.exercise-body::-webkit-scrollbar {
    width: 8px;
}
.exercise-body::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
.exercise-body::-webkit-scrollbar-thumb {
    background: #d3b358; 
    border-radius: 4px;
}

/* Media Query */
@media (max-width: 600px) {
    .exercise-header h2 { font-size: 1.3rem; }
    .exercise-body { padding: 10px; }
    .content-wrapper { padding: 15px; }
    .nav-btn { padding: 6px 15px; font-size: 0.9rem; }
}

@font-face {
  font-family: 'KFGQPC';
  src: url('Symbols1_Ver02.woff2') format('woff2'),
       url('Symbols1_Ver02.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  unicode-range: U+F000-F8FF; /* منطقة الرموز */
}

@font-face {
  font-family: 'AdwaAssalaf';
  src: url('../fonts/adwa-assalaf.woff2') format('woff2'),
       url('../fonts/adwa-assalaf.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
