@font-face {
    font-family: DINNextLTArabic;
    src: url(../font/DINNEXTLTARABIC-LIGHT-2-2.ttf);
}
body {
    font-family: 'DINNextLTArabic';
    background-color: #1a1a1a;
    color: white;
    text-align: center;
    direction: rtl;
    padding: 20px;
    margin: 0;
}
.menu-container {
    max-width: 1000px;
    margin: auto;
    background: #222;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.5);
    background-image: url('https://imgur.com/39rg2gc.jpg');
}
.header {
    text-align: center;
    margin-bottom: 20px;
}
.header h1 {
    color: #ffcc00;
    font-size: 2.5em;
}
.header p {
    font-size: 1.2em;
}
.menu-images {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.menu-images img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #ffcc00;
}
.filx {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.menu-section {
    background: rgba(0, 0, 0, 0.6);
    padding: 10px;
    border-radius: 10px;
    margin: 10px;
    width: 100%;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}



.menu-section ul {
    max-height: 200px; /* تحديد أقصى ارتفاع للصنف */
    overflow-y: auto;  /* إضافة شريط تمرير عمودي */
    padding-right: 10px;
}
.menu-section ul::-webkit-scrollbar {
    width: 6px;
}

.menu-section ul::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.menu-section ul::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.menu-section ul::-webkit-scrollbar-thumb:hover {
    background: #555;
}



.menu-section h2 {
    background: #ffcc00;
    color: black;
    padding: 5px 15px;
    border-radius: 40px;
    display: inline-block;
    font-size: 1.5em;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #444;
    margin: 8px 0;
    border-radius: 5px;
    font-size: 1.1em;
}
.price {
    color: #ffcc00;
    font-weight: bold;
    margin-right: 10px;
}

@media (min-width: 600px) {
    .menu-images img {
        width: 120px;
        height: 120px;
    }
    .menu-section {
        width: 40%;
    }
}

@media (min-width: 900px) {
    .menu-section {
        width: 28%;
    }
}
/* تنسيق الفوتر */
.social-footer {
    background-color: #33333300;
    text-align: center;
    margin-top: 20px;
}

/* تنسيق الفوتر */
.social-footer {
    background-color: #33333300;
    text-align: center;
    margin-top: 20px;
}

/* تنسيق الأيقونات */
.social-icons a {
    margin: 0 10px;
    font-size: 24px;
    color: #ffffff00; /* لون افتراضي */
    transition: color 0.3s ease;
}
/* تغيير لون الأيقونات حسب المنصة */
.social-icons a .fa-facebook { color: #ffffff; }   /* لون فيسبوك */
.social-icons a .fa-twitter { color: #1da1f2; }     /* لون تويتر */
.social-icons a .fa-instagram { color: #e1306c; }   /* لون انستجرام */
.social-icons a .fa-whatsapp { color: #25d366; }    /* لون واتساب */
/* تغيير لون الأيقونات حسب المنصة */
.social-icons a:hover .fa-facebook { color: #3b5998; }   /* لون فيسبوك */
.social-icons a:hover .fa-twitter { color: #ffffff; }     /* لون تويتر */
.social-icons a:hover .fa-instagram { color: #ffffff; }   /* لون انستجرام */
.social-icons a:hover .fa-whatsapp { color: #ffffff; }    /* لون واتساب */

