/* ✅ تحميل خط الجزيرة */
@font-face {
    font-family: 'Aljazeera';
    src: url('/ads/fonts/aljazeera.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* ✅ إعادة تعيين الأنماط الافتراضية وإزالة الهوامش */
* {
    font-family: 'Aljazeera', Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Tajawal", sans-serif;
    direction: rtl;
    text-decoration: none;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100vh;
    background: #f5f5f5;
    overflow-x: hidden; /* منع التمرير الأفقي */
}

.header_a{
    color:white;
}

/* ✅ إزالة الهامش الخارجي تمامًا */
.container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ✅ الهيدر الأول (اسم الموقع + شعار الموقع) */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #007bff;
    color: white;
    padding: 15px 20px;
    height: 75px;
    position: relative;
    overflow: hidden;
}

.site-name {
    font-size: 25px;
    font-weight: bold;
    font-family: 'Aljazeera', Arial, sans-serif;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 65px;
    display: block;
}

/* ✅ الهيدر الثاني (تسجيل الدخول والتسجيل) */
.header-auth {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    padding: 5px 15px;
    background: #f8f9fa;
    overflow-x: auto;
    white-space: nowrap;
    max-width: 100%;
    direction: ltr;
}

.header-auth button {
    padding: 3px 15px;
    font-size: 15px;
    border: none;
    background: #007bff;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
    direction: rtl;
}

.header-auth button:hover {
    background: #0056b3;
}



/* ✅ تقسيم الصفحة إلى 3 أعمدة: يمين البحث - وسط الإعلانات - يسار العمود الإضافي */
.content {
    align-items: flex-start;
    display: flex;
    gap: 10px;
    padding: 10px 20px;
    flex: 1;
}

/* أزرار إظهار/إخفاء البحث والعمود الإضافي (موبايل) */
.search-toggle{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 12px;
  border:0;
  border-radius:8px;
  background:#007bff;
  color:#fff;
  font:inherit;
  cursor:pointer
}

.extra-column1{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 12px;
  border:0;
  border-radius:8px;
  background:#007bff;
  color:#fff;
  font:inherit;
  cursor:pointer
}

/* موبايل أولاً: افتراضياً مخفية (يتم فتحها بالـ JS) */
#searchFilter{display:none;}
#searchFilter.is-open{display:block;}
#extraColmn{display:none;}
#extraColmn.is-open{display:block;}

/* شاشات كبيرة: البحث والعمود الإضافي ظاهرين دائماً، الأزرار مخفية */
@media (min-width: 900px){
  .search-toggle{display:none !important;}
  .extra-column1{display:none !important;}
  #searchFilter{display:block !important;}
  #extraColmn{display:block !important;}
}

/* ✅ القسم الأيمن (فلترة البحث) */
.search-filter {
    width: 250px;
    background: white;
    padding: 10px 25px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.search-filter h3 {
    margin-bottom: 10px;
    font-size: 16px;
}

.search-filter input,
.search-filter select,
.extra-column input,
.extra-column select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.search-filter input:focus,
.search-filter select:focus,
.extra-column input:focus,
.extra-column select:focus {
    border-color: #007bff;
    outline: none;
}

/* ✅ القسم الأوسط (عرض الإعلانات) */
.main-content {
    width:100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

/* ✅ العمود الإضافي الأيسر */
.extra-column{
    text-align:center;
    width: 250px;
    background: white;
    padding: 10px 25px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* ✅ تصميم الاعلان */
.ad-card {
    display: flex;
    overflow: hidden;
    align-items: center;
    background: white;
    border-radius: 8px;
    padding: 1px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    border-bottom: 1px solid #ddd;
}

.ad-card:hover {
    transform: scale(1.02);
    border-bottom: 5px solid #ddd;
}

.ad-card img {
    display: block;
    width: 35px;
    height: 35px;
    object-fit: cover;
    border-radius: 5px;
    margin: 5px;
}

.ad-info {
    flex: 1;
    margin: 0 5px;
}

.ad-info h3 {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: block !important;
    max-width: 100% !important;
    margin: 0 !important;
    font-size: 15px !important;
    font-weight: bold !important;
    color: #333 !important;
}

.ad-info p {
    font-size: 12px;
    color: #777;
    margin-top: 5px;
}

/* نافذة منبثقة */
.popup2 {
    font-family: 'Aljazeera', Arial, sans-serif;
    position: relative;
    margin: 0 auto;
    background: #0056b3;
    color: white;
    padding: 5px;
    font-size: 15px;
    text-align: center;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.popup2 img{
    width: 100px;
    height: 20px;
}

.popup2.show {
    opacity: 1;
    visibility: visible;
}

/* زر اظهار المزيد */
.load-more-container {
    text-align: center;
    margin: 20px auto;
    padding-bottom: 20px;
}

#loadMoreBtn {
    background-color: #007bff;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    padding: 3px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
    display: inline-block;
    margin-top: 3px;
}

#loadMoreBtn:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

#loadMoreBtn:active {
    transform: scale(0.95);
}

#loadMoreBtn.hidden {
    display: none;
}

#loadMoreBtn {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

#loadMoreBtn.visible {
    display: block;
    opacity: 1;
}

/* ✅ ضمان عدم تلاصق الزر بالفوتر */
footer {
    position: relative;
    display: flex;
    justify-content: space-between;
    direction: rtl;
    font-size: 15px;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background-color: #007bff;
    color: white;
    text-align: center;
    border-top: 1px solid #ddd;
    margin-top: 30px;
    font-family: Arial, sans-serif;
}

footer a{
    color: white;
    font-family: Arial, sans-serif;
}

/* ✅ استجابة التصميم للشاشات الصغيرة */
@media (max-width: 900px) {

    #showMoreButton { 
        display: none !important;
    }

    .site-name {
        font-size: 20px;
        font-weight: bold;
    }

    .logo img {
        height: 65px;
    }

    .content {
        flex-direction: column;
    }

    /* ⚠️ هنا الترتيب: 1 البحث – 2 العمود الإضافي – 3 الإعلانات */
    .search-filter {
        width: 100%;
        margin-bottom: 15px;
        order: 1;
    }

    .extra-column {
        width: 100%;
        margin-bottom: 15px;
        order: 2;
    }

    .main-content {
        order: 3;
    }

    .ad-card img {
        width: 35px;
        height: 35px;
        margin: 5px;
    }

    .ad-info h3 {
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        display: block !important;
        max-width: 100% !important;
        margin: 0 !important;
        font-size: 15px !important;
        font-weight: bold !important;
        color: #333 !important;
    }

    .ad-info p {
        font-size: 13px;
        color: #777;
        margin-top: 5px;
    }
}

/* ✅ استجابة التصميم للشاشات الأصغر */
@media (max-width: 480px) {

    #showMoreButton { 
        display: none !important;
    }

    .site-name {
        font-size: 20px;
        font-weight: bold;
    }

    .logo img {
        height: 65px;
    }

    .content {
        flex-direction: column;
    }

    /* إعادة التأكيد على الترتيب لنفس الأحجام الأصغر */
    .search-filter {
        width: 100%;
        margin-bottom: 15px;
        order: 1;
    }

    .extra-column {
        width: 100%;
        margin-bottom: 15px;
        order: 2;
    }

    .main-content {
        order: 3;
    }

    .ad-info p {
        font-size: 10px !important;
        color: #777 !important;
        margin-top: 5px !important;
    }

    .ad-info h3 {
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        display: block !important;
        max-width: 100% !important;
        margin: 0 !important;
        font-size: 15px !important;
        font-weight: bold !important;
        color: #333 !important;
    }

    .ad-card img {
        width: 35px;
        height: 35px;
        margin: 5px;
    }
}

@media (max-width: 375px) {
    #loadMoreBtn {
        display: none !important;
    }
}

@media (max-width: 330px) {
    *{
        display: none;
    }
}



/* ===== إعلان مميز في العمود الأيسر ===== */

.extra-column h3 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
}

/* البطاقة العمودية */
.left-ad-card {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 8px rgba(0,0,0,0.12);
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* الصورة */
.left-ad-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
}

/* معلومات الإعلان */
.left-ad-info {
    width: 100%;
    padding: 10px;
    text-align: center;
}

/* العنوان */
.left-ad-info h4 {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin: 5px 0;

    /* أهم شيء… منع خروج النص */
    white-space: normal !important; 
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;

    display: -webkit-box;
    -webkit-line-clamp: 2;   /* سطرين فقط */
    -webkit-box-orient: vertical;
}

/* النصوص أسفل العنوان */
.left-ad-meta {
    font-size: 12px;
    color: #777;
    margin: 3px 0;
}

/* نص عند عدم وجود إعلان */
.no-left-ad {
    text-align: center;
    color: #999;
    font-size: 14px;
}






/* الهيدر الثالث والرابع والخامس */
/* ===========================
   شريط الأقسام الرئيسية + الفروع
   =========================== */

.header-main,
.header-sub {
    display: flex;
    align-items: center;
    gap: 6px;                 /* تقارب بين الأزرار */
    padding: 3px 5px;
    margin: 1px 0;            /* تقليل التباعد بين الهيدرات */
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    direction: rtl;           /* المحاذاة لليمين */

    /* نخفي السكرول بار تماماً (لكن التمرير يظل شغّال) */
    scrollbar-width: none;          /* فايرفوكس */
}
.header-main::-webkit-scrollbar,
.header-sub::-webkit-scrollbar {
    height: 0;                       /* كروم / سفاري / إيدج */
    background: transparent;
}

/* زر الرئيسية (الأيقونة 🏠) */
.header-main > button:first-child {
    flex: 0 0 auto;
}

/* قاعدة عامة لأزرار الأقسام والفروع */
.header-main button,
.header-sub button,
.category-btn {
    flex: 0 0 auto;
    border: none;
    cursor: pointer;
    padding: 5px 9px;
    font-size: 15px;
    border-radius: 6px;     /* زوايا خفيفة */
    color: #f9fafb;
    font-weight: 600;
    letter-spacing: 0.2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease;
    white-space: nowrap;
}

/* الأقسام الرئيسية */
.header-main .category-btn {
    background: linear-gradient(135deg, #007bff, #007bff);
}

/* الفروع الأولى */
#first-branches button {
    background: linear-gradient(135deg, #007bff, #007bff);
}

/* الفروع الثانية */
#second-branches button {
    background: linear-gradient(135deg, #007bff, #007bff);
}

/* زر الرئيسية (البيت) */
.header-main > button[onclick="showHome()"] {
    background: linear-gradient(135deg, #0056b3, #0056b3);
    padding-inline: 10px;
}

/* هوفر / ضغط */
.header-main button:hover,
.header-sub button:hover,
.category-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.25);
    opacity: 0.96;
}

.header-main button:active,
.header-sub button:active,
.category-btn:active {
    transform: translateY(0);
    box-shadow: none;
    opacity: 0.9;
}
