/* ✅ تحميل خط الجزيرة */
@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;
}


/* ✅ تنسيق قسم تفاصيل الإعلان */
.ad-details {
    background: white;
    width: 90%;
    padding: 20px;
    border-radius: 10px;
    margin: 15px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.ad-details h1 {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
    color: blue;
}

.ad-details p {
    font-size: 18px;
    color: #555;
    margin: 8px 0;
    line-height: 1.6;
}

h2{
    margin-top: 10px;
    color: green;
}

ul{
    list-style: none;
    margin: 0 10px 10px 10px;
}

.agreement{
    text-align: center;
}

/* ✅ تنسيق الصور */
.ad-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 20px auto;
}

.ad-images img {
    width: 80%;
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.ad-images img:hover {
    transform: scale(1.1);
}

/* نافذة منبثقة */
.popup {
    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;
}

.popup img{
        width: 100px;
    height: 20px;
}

/* ✅ عندما تظهر النافذة */
.popup.show {
    opacity: 1;
    visibility: visible;
}
/* نافذة منبثقة */

/* ✅ استجابة التصميم للشاشات الصغيرة */
@media (max-width: 768px) {
    .site-name {
        font-size: 20px;
        font-weight: bold;
    }
    .logo img {
        height: 65px;
    }
    .content {
        flex-direction: column;
    }

    .search-filter {
        width: 100%;
        margin-bottom: 15px;
    }

    .ad-info p {
        font-size: 10px;
        color: #777;
        margin-top: 5px;
    }
}

@media (max-width: 350px) {
    .site-name {
        font-size: 18px;
        font-weight: bold;
    }
    
    .logo img {
        height: 65px;
    }
}

@media (max-width: 299px) {
    *{
    display: none;
    }
}

