@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@400;700&display=swap");
body {
  font-family: "Tajawal", sans-serif;
  background: url("../img/background.png") no-repeat center center/cover;
  margin: 0;
  padding: 0;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.firstheader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0px;
  margin-bottom: 1px;
}
@media (max-width: 768px) {
  .firstheader {
    flex-direction: column;
    text-align: center;
  }
}
.firstheader .logo {
  width: 120px; /* تحديد عرض اللوغو */
  height: 60px; /* تحديد ارتفاع اللوغو */
  background-image: url("../img/chocodar.png"); /* تحميل الصورة */
  background-size: contain; /* جعل الصورة تتكيف مع الحجم */
  background-repeat: no-repeat; /* منع تكرار الصورة */
  background-position: center; /* توسيط الصورة */
}
@media (max-width: 768px) {
  .firstheader .logo {
    height: 50px;
    margin-top: 15px;
  }
}
.firstheader .logomknooon {
  width: 120px; /* تحديد عرض اللوغو */
  height: 60px; /* تحديد ارتفاع اللوغو */
  background-image: url("../img/mknooon.png"); /* تحميل الصورة */
  background-size: contain; /* جعل الصورة تتكيف مع الحجم */
  background-repeat: no-repeat; /* منع تكرار الصورة */
  background-position: center; /* توسيط الصورة */
}
@media (max-width: 768px) {
  .firstheader .logomknooon {
    height: 50px;
  }
}
.firstheader .social-icons {
  display: flex; /* يجعل العناصر بجانب بعضها */
  justify-content: center; /* توسيط العناصر */
  gap: 2px; /* مسافة بين الأيقونات */
  margin-top: 10px;
}
.firstheader .call {
  width: 30px; /* تحديد عرض اللوغو */
  height: 30px; /* تحديد ارتفاع اللوغو */
  background-image: url("../img/call.png"); /* تحميل الصورة */
  background-size: contain; /* جعل الصورة تتكيف مع الحجم */
  background-repeat: no-repeat; /* منع تكرار الصورة */
  background-position: center; /* توسيط الصورة */
}
@media (max-width: 768px) {
  .firstheader .call {
    height: 50px;
  }
}
.firstheader .insta {
  width: 30px; /* تحديد عرض اللوغو */
  height: 30px; /* تحديد ارتفاع اللوغو */
  background-image: url("../img/insta.png"); /* تحميل الصورة */
  background-size: contain; /* جعل الصورة تتكيف مع الحجم */
  background-repeat: no-repeat; /* منع تكرار الصورة */
  background-position: center; /* توسيط الصورة */
}
@media (max-width: 768px) {
  .firstheader .insta {
    height: 50px;
  }
}
.firstheader .facebook {
  width: 30px; /* تحديد عرض اللوغو */
  height: 30px; /* تحديد ارتفاع اللوغو */
  background-image: url("../img/facebook.png"); /* تحميل الصورة */
  background-size: contain; /* جعل الصورة تتكيف مع الحجم */
  background-repeat: no-repeat; /* منع تكرار الصورة */
  background-position: center; /* توسيط الصورة */
}
@media (max-width: 768px) {
  .firstheader .facebook {
    height: 50px;
  }
}
.firstheader .tiktok {
  width: 30px; /* تحديد عرض اللوغو */
  height: 30px; /* تحديد ارتفاع اللوغو */
  background-image: url("../img/tiktok.png"); /* تحميل الصورة */
  background-size: contain; /* جعل الصورة تتكيف مع الحجم */
  background-repeat: no-repeat; /* منع تكرار الصورة */
  background-position: center; /* توسيط الصورة */
}
@media (max-width: 768px) {
  .firstheader .tiktok {
    height: 50px;
  }
}
.firstheader .custom-login-btn {
  background-color: rgb(255, 255, 255);
  color: #000;
  border: none;
  border-radius: 15px;
  padding: 10px 20px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.firstheader .custom-login-btn:hover {
  background-color: #D0B148;
  color: #000;
}
@media (max-width: 768px) {
  .firstheader .custom-login-btn {
    margin-top: 10px;
  }
}

.blog-container {
  background: rgba(255, 251, 251, 0.3);
  padding: 20px;
  border-radius: 15px;
  max-width: 90%;
  width: 800px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
}

header {
  margin-top: 0px;
}
header h1 {
  color: #D0B148;
}
header .search-filter {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 15px 0;
}
header .search-filter input, header .search-filter select {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.reports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.report-card {
  background: #ffffff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
  text-align: center; /* توسيط النص */
  display: flex;
  flex-direction: column; /* ترتيب العناصر عموديًا */
  align-items: center;
  margin: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  transition: 0.3s;
}
.report-card:hover {
  transform: scale(1.05);
}

.news-image {
  width: 100%; /* جعل الصورة تأخذ عرض الكارد بالكامل */
  height: 200px; /* ضبط ارتفاع مناسب */
  object-fit: cover; /* لجعل الصورة متناسقة دون تمدد */
  border-top-left-radius: 10px; /* زوايا مستديرة للصورة */
  border-top-right-radius: 10px;
}

.report-card a {
  text-decoration: none; /* إزالة الخط السفلي من الرابط */
  color: inherit; /* جعل لون النص متناسق */
}

.report-card h3 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px; /* إضافة مسافة بعد الصورة */
  text-decoration: none; /* إزالة الخط السفلي */
}

.article-container {
  padding: 20px;
}

.article-title {
  font-size: 2em;
  color: #ffffff;
  margin-bottom: 20px;
  direction: rtl;
}

.article-content {
  font-size: 1.2em;
  color: #ffffff;
  line-height: 1.6;
  direction: rtl; /* جعل الكتابة من اليمين إلى اليسار */
  text-align: right; /* محاذاة النص إلى اليمين */
  font-family: "Tajawal", Arial, sans-serif; /* اختيار خط مناسب للعربية */
  line-height: 1.8; /* تحسين المسافات بين الأسطر */
  padding: 10px; /* إضافة هوامش داخلية */
}

.article-image {
  width: 50%;
  height: auto;
  margin-bottom: 20px;
}

/*# sourceMappingURL=art.css.map */
