/* إعادة تعيين الهوامش والحشوات لجميع العناصر */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* جعل الجسم والـ HTML يغطيان الصفحة بأكملها */
body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    direction: rtl; /* جعل النصوص من اليمين لليسار */
}

/* تنسيق القائمة الثابتة في الأعلى */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    padding: 10px 0;
    z-index: 1000;
}

.navbar ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

.navbar ul li {
    margin: 0 15px;
}

.navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.navbar ul li a:hover {
    color: #f39c12; /* تغيير اللون عند التمرير على الرابط */
}

/* تنسيق المحتوى الرئيسي */
.section {
    padding: 100px 20px; /* إضافة مساحة أعلى بسبب الثابت */
    text-align: center;
}

h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.image-container {
    margin-top: 20px;
}

/* تحديد حجم الصورة في الصفحة الرئيسية إلى 200x200 */
.main-image {
    width: 200px;
    height: 200px;
    object-fit: cover; /* لتحديد تغطية الصورة بشكل مناسب */
}

/* تنسيق روابط التواصل الاجتماعي */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icon img {
    width: 200px;
    height: 200px;
    transition: transform 0.3s ease;
}

.social-icon img:hover {
    transform: scale(1.1);
}

/* تنسيق حقوق الملكية */
footer {
    text-align: center;
    background-color: #333;
    color: #fff;
    padding: 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

/* استجابة للأجهزة الصغيرة */
@media (max-width: 600px) {
    .navbar ul li a {
        font-size: 16px;
    }

    .social-icon img {
        width: 150px;
        height: 150px;
    }

    /* تصغير الصورة في الصفحة الرئيسية للأجهزة الصغيرة */
    .main-image {
        width: 150px;
        height: 150px;
    }
}
