
* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
    -webkit-tap-highlight-color: transparent; /* تحسين اللمس في أندرويد وآيفون */
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: var(--bg-color);
    overflow-x: hidden; /* يمنع التمرير الجانبي تماماً */
}

/* الناف بار */
.navbar {
    position: fixed;
    top: -70px;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: left;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-logo {
    color: #ffffff;
    font-size: 1.3rem;
    padding: 0 15px;
}

.navbar.visible { top: 0; }

/* البانر */
.banner-container {
    position: relative;
    width: 100%;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
}

.logo {
    position: absolute;
    top: 15px;
    left: 15px;
    color: white;
    font-size: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    z-index: 10;
}

/* سكشن الوصف */
.tagline-section {
    background-color: white;
    padding: 25px 15px;
    text-align: center;
}

.tagline-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 90% ;
    margin: 0 auto;
}

/* المنيو */
.content-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    padding: 0 10px; /* مسافة بسيطة من الجوانب في الموبايل */
}

.section-title {
    color: green;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-img {
    width: 100%; /* تأخذ عرض الشاشة */
    height: auto; /* الحفاظ على النسبة */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* قسم التواصل */
.contact-section {
    background: white;
    padding: 40px 15px;
    text-align: center;
}

.phones {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; /* لجعل الأرقام تنزل تحت بعضها في الشاشات الضيقة */
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.phones a {
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    white-space: nowrap; /* يمنع انقسام الرقم الواحد على سطرين */
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    font-size: 32px;
}

.fb { color: #1877F2; }
.inst { color: #E4405F; }
.tk { color: #000; }
.wa { color: #25D366; }
/* تحسينات خاصة للموبايل الصغير (أندرويد وآيفون) */
@media (max-width: 400px) {
    .logo { font-size: 1.2rem; }
    .nav-logo { font-size: 1.1rem; }
    .phones { flex-direction: column; } /* الأرقام فوق بعض في أضيق الشاشات */
    .divider { display: none; }
}