/* 1. الإعدادات العامة والخلفية */
body {
    background-image: url('restaurant-bg.jpg'); 
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-color: Gray; 
    background-blend-mode: Multiply; 

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* 2. شريط الإعلانات والقائمة */
#announcement-bar {
    background-color: FireBrick;
    color: Yellow;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    width: 100%;
}

nav {
    background-color: Black;
    padding: 15px;
    text-align: center;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav a {
    color: White;
    text-decoration: none;
    margin: 0 20px;
    font-weight: bold;
}

/* 3. تنسيق الصناديk (Sections) الموحد */
section, .order-section {
    width: 90%;
    max-width: 900px;
    background-color: White; 
    padding: 25px;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 10px 25px Black;
    text-align: center;
    border-top: 5px solid Red;
}

/* 4. الجداول والقوائم */
table {
    width: 100%;
    margin: 15px 0;
    border-collapse: collapse;
}

th { background-color: DarkRed; color: White; padding: 12px; }
td { padding: 10px; border-bottom: 1px solid LightGray; }

/* 5. تنسيق نموذج الطلب (مخفي افتراضياً) */
#order-form-container {
    display: none; /* مخفي حتى يتم الضغط على متابعة */
}

.form-group {
    margin-bottom: 15px;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group input {
    padding: 10px;
    border: 1px solid LightGray;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
}

/* 6. الأزرار */
button {
    background-color: DarkGreen;
    color: White;
    padding: 12px 25px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
}

button:hover { background-color: Green; }

/* 7. التذييل */
footer {
    width: 100%;
    background-color: Black;
    color: LightGray;
    text-align: center;
    padding: 20px 0;
    margin-top: auto;
}