/* أنماط خلفية الشعار وعنوان الموقع */
.header-background {
    background-color: #000;
    position: relative;
    padding: 20px 0;
    overflow: hidden;
}

.header-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/logo_background.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.9;
    z-index: 0;
}

/* تحسين وضوح عنوان الموقع وتنسيقه الهرمي */
.site-title {
    position: relative;
    z-index: 1;
    margin: 15px auto 20px;
    text-align: center;
    color: #f8d568; /* لون ذهبي يتناسب مع الخلفية المصرية */
    text-shadow: 
        0 0 10px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(0, 0, 0, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.9);
    letter-spacing: 2px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%);
    padding: 15px 30px;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(248, 213, 104, 0.3);
    line-height: 1.2; /* ضبط ارتفاع السطر */
}

.site-title .title-line1,
.site-title .title-line2 {
    display: block; /* جعل كل سطر كتلة منفصلة */
    font-weight: 800;
}

.site-title .title-line1 {
    font-size: 3.5rem; /* حجم الخط للسطر الأول */
    margin-bottom: 5px; /* مسافة صغيرة بين السطرين */
}

.site-title .title-line2 {
    font-size: 2.8rem; /* حجم خط أصغر قليلاً للسطر الثاني */
    letter-spacing: 1.5px;
}

.logo-container {
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 10px auto;
    max-width: 100%;
}

.logo-container img {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: none; /* إخفاء الشعار القديم لأن الصورة الجديدة تحتوي على الشعار */
}

/* تعديلات للشاشات المختلفة */
@media (min-width: 768px) {
    .header-background {
        padding: 30px 0;
    }
    .site-title .title-line1 {
        font-size: 4rem;
    }
    .site-title .title-line2 {
        font-size: 3.2rem;
    }
}

@media (min-width: 1200px) {
    .header-background {
        padding: 40px 0;
    }
    .site-title .title-line1 {
        font-size: 4.5rem;
    }
    .site-title .title-line2 {
        font-size: 3.6rem;
    }
}

@media (max-width: 767px) {
    .site-title {
        padding: 10px 20px;
    }
    .site-title .title-line1 {
        font-size: 2.5rem;
    }
    .site-title .title-line2 {
        font-size: 2.0rem;
    }
}

/* تعديل لون النص في القائمة ليكون أكثر وضوحاً على الخلفية */
nav ul li a {
    color: #fff;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

nav ul li a:hover {
    color: #f8d568;
}

