/* إعدادات الخطوط والمسافات العامة */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: #f4f1ea;
    color: #000000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

/* حاوية الهيدر الصوري الجديد */
.header-image-container {
    width: 100%;
    height: 120px; /* الارتفاع القياسي المناسب للهيدر على الهواتف */
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 75px; /* ترك مساحة مريحة لبروز اللوقو */
}

/* تنسيق صورة الهيدر لتملأ المساحة بالكامل */
.header-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* يضمن فرش الصورة بالكامل على أي عرض شاشة دون تشويه */
}

/* حاوية الشعار الدائري فوق صورة الهيدر */
.logo-container {
    position: absolute;
    bottom: -60px; /* يثبت اللوقو في منتصف الحافة السفلية لصورة الهيدر */
    width: 160px;
    height: 160px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 10;
}

.main-logo {
    width: 95%;
    height: 95%;
    object-fit: contain;
}

/* حاوية المحتوى الرئيسي */
.container {
    width: 100%;
    max-width: 480px;
    padding: 0 16px 30px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* قسم النصوص والعناوين */
.info-section {
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
}

.main-title {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 4px;
}

.sub-title {
    font-size: 15px;
    font-weight: 700;
    color: #000000;
}

.description {
    font-size: 13px;
    color: #444444;
    margin-top: 4px;
    font-weight: 700;
}

.phone-numbers {
    font-size: 17px;
    font-weight: 700;
    color: #000000;
    margin-top: 8px;
    direction: ltr;
}

.clickable-phone {
    color: #0066cc;
    text-decoration: none;
}

/* بنر زر المنيو */
.menu-banner {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #000000;
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #000000;
    font-weight: 900;
    font-size: 18px;
    margin-bottom: 20px;
}


.menu-text {
    font-size: 35px;
    font-weight: 900;
    flex: 1;
    text-align: center;
}

.menu-icon-img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

/* الهيكل المقسم إلى عمودين */
.links-layout {
    width: 100%;
    display: grid;
    grid-template-columns: 3fr 1fr; 
    gap: 15px;
    align-items: stretch; /* هذا يضمن أن كلا العمودين بنفس الطول */
}

/* عمود الأزرار */
.links-column {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* تصميم كرت الرابط الواحد */
.link-card {
    background-color: #ffffff;
    border: 1px solid #000000;
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #000000;
    font-weight: 700;
    font-size: 15px;
    min-height: 52px;
}

/* حاوية الأيقونات الصورية */
.card-icon-img-wrapper {
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* عمود الصور الجانبية */
.circles-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

/* حاوية صور الـ PNG الشفافة الجانبية الكبيرة */
.food-png-wrapper {
    width: 115px;
    height: 115px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    margin-left: -5px;
}

.food-png-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* تحسينات إضافية للهواتف الصغيرة جداً */
@media (max-width: 380px) {
    .food-png-wrapper {
        width: 95px;
        height: 95px;
    }
    .logo-container {
        width: 115px;
        height: 115px;
        bottom: -50px;
    }
    .header-image-container {
        margin-bottom: 60px;
        height: 100px;
    }
    .link-card {
        font-size: 13px;
        padding: 8px 10px;
        min-height: 46px;
    }
    .main-title {
        font-size: 22px;
    }
}