/* ==========================================
   ALL NEWS PAGE STYLES
========================================== */

.all-news-section {
    position: relative;
    padding: 80px 0;
    background: transparent;
    min-height: 100vh;
}

/* Section Header - نفس التصميم اللي عندك */
.section-header-modern {
    text-align: center;
    margin-bottom: 60px;
}

.header-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.badge-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #daa520, #daa520, #daa520, transparent);
}

.badge-text {
    color: #daa520;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title-modern {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
    text-transform: uppercase;
}

.section-title-modern .text-gold {
    color: #daa520;
    position: relative;
    display: inline-block;
}

.section-subtitle-modern {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* News Grid */
.news-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* News Card */
.news-card-fancy {
    position: relative;
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(218, 165, 32, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.news-card-fancy:hover {
    transform: translateY(-10px);
    border-color: rgba(218, 165, 32, 0.4);
    box-shadow: 0 20px 40px rgba(218, 165, 32, 0.15);
}

.card-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(218, 165, 32, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.news-card-fancy:hover .card-backdrop {
    opacity: 1;
}

/* Card Media */
.card-media {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.news-card-fancy:hover .card-media img {
    transform: scale(1.1);
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

/* Card Badge */
.card-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(218, 165, 32, 0.9);
    color: #000;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 3;
}

/* Card Views */
.card-views {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 3;
    border: 1px solid rgba(218, 165, 32, 0.3);
}

.card-views i {
    color: #daa520;
}

/* Card Content */
.card-content {
    padding: 20px;
    position: relative;
    z-index: 2;
}

.card-title {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.card-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-title a:hover {
    color: #daa520;
}

/* Card Footer */
.card-footer {
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid rgba(218, 165, 32, 0.2);
    padding-top: 15px;
}

.readmore-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #daa520;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.readmore-link:hover {
    gap: 12px;
    color: #ffd700;
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(10px);
    padding: 10px 15px;
    border-radius: 50px;
    border: 1px solid rgba(218, 165, 32, 0.2);
}

.page-num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-weight: 500;
}

.page-num:hover {
    background: rgba(218, 165, 32, 0.2);
    color: #daa520;
}

.page-num.active {
    background: #daa520;
    color: #000;
    font-weight: 700;
}

.page-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(218, 165, 32, 0.3);
    font-size: 14px;
}

.page-btn:hover {
    background: rgba(218, 165, 32, 0.2);
    border-color: #daa520;
}

.page-btn i {
    font-size: 12px;
}

/* No News Found */
.no-news-found {
    text-align: center;
    padding: 80px 20px;
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(218, 165, 32, 0.2);
}

.no-news-found i {
    font-size: 64px;
    color: #daa520;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-news-found h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
}

.no-news-found p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.back-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: #daa520;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-home-btn:hover {
    background: #ffd700;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
    .news-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title-modern {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .news-grid-enhanced {
        grid-template-columns: 1fr;
    }
    
    .pagination {
        flex-wrap: wrap;
        justify-content: center;
    }
}