/* إعدادات عامة */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    direction: rtl;
    scroll-behavior: smooth;
    background-color: #f5f5f5;
}

a {
    text-decoration: none;
    color: inherit;
}

/* قائمة التنقل */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.8);
    display: flex;
    justify-content: flex-end;
    padding: 10px 25px;
    z-index: 1000;
}

nav a {
    color: white;
    margin-left: 20px;
    font-weight: bold;
    transition: 0.3s;
}

nav a:hover {
    color: #1E90FF;
}

/* رأس الصفحة مع خلفية بارالكس */
header {
    background: url('png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

header::after {
    content: "";
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color: rgba(0,0,0,0.5);
    z-index:1;
}

header h1, header p, header .button {
    position: relative;
    z-index: 2;
    margin: 0;
}

header h1 {
    font-size: 3rem;
}

header p {
    font-size: 1.5rem;
    margin: 15px 0 25px 0;
}

.button {
    padding: 12px 25px;
    background-color: #1E90FF;
    color: white;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: 0.3s;
}

.button:hover {
    background-color: #0f71c1;
}

/* أقسام الصفحة */
section {
    padding: 80px 20px;
    max-width: 1000px;
    margin: auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

section h2 {
    color: #1E90FF;
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
}

section p, section li {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

ul {
    list-style-type: disc;
    padding-right: 25px;
}

/* اتصل بنا */
#contact p a {
    color: #1E90FF;
}

/* التذييل */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 25px 10px;
}

footer a {
    color: #1E90FF;
    margin: 0 10px;
}

/* استجابة الهواتف */
@media(max-width:768px){
    header h1 {
        font-size: 2.2rem;
    }
    header p {
        font-size: 1.2rem;
    }
    .button {
        font-size: 1rem;
    }
    section {
        padding: 50px 15px;
    }
    nav {
        padding: 10px 15px;
    }
}
