body {
    font-family: Arial, sans-serif;
    margin: 10px;
    padding: 10px;
    background-color: #fff3e0; /* لون خلفية فاتح */
}

header {
    background-color: #ffcc00; /* أصفر */
    color: #ff0000; /* أحمر */
    padding: 20px;
    text-align: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #ff0000; /* أحمر */
    transition: color 0.3s ease, transform 0.3s ease;
}

nav ul li a:hover {
    color: grey; /* ذهبي */
    transform: translateY(20px); /* حركة لأعلى */
}

main {
    padding: 20px;
}

section {
    margin: 20px 0;
    text-align: center;
}

footer {
    background-color: #ffcc00; /* أصفر */
    color: #ff0000; /* أحمر */
    text-align: center;
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
}

form {
    margin-top: 20px;
}

form label {
    display: block;
    margin: 10px 0 5px;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

form button {
    background-color: #ff0000; /* أحمر */
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #cc0000; /* أحمر داكن */
}

.menu-item {
    display: inline-block;
    width: 30%; 
    margin: 10px;
    text-align: center;
}

.menu-item img {
    width: 100%; 
    height: 200px; 
    border-radius: 8px; 
    box-shadow: 0 4px 8px ;
    
    
}

.menu-item p {
    font-size: 1.2em; /* حجم الخط للكابشن */
    color: #ff0000; /* لون النص */
}

#home-img , #contact-img , #about-img{
    border-radius: 15px; 
    box-shadow: 0 4px 8px ;
}



