/* Portal Systems Styles - Cards Only */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap');

* {
    font-family: 'Cairo', sans-serif !important;
}

/* استثناء Font Awesome Icons */
i[class*="fa-"],
.fa,
.fas,
.far,
.fab,
.fal,
.fad {
    font-family: 'Font Awesome 6 Free' !important;
}

/* إخفاء عناوين WordPress الافتراضية */
.entry-header,
.page-header,
.entry-title,
h1.wp-block-post-title,
.site-main > article > header,
.site-main h1:first-of-type,
.site-main h2.entry-title,
article h1:first-child,
article h2.entry-title {
    display: none !important;
}

/* Grid Layout للبطاقات */
.portal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    direction: rtl;
    text-align: right;
}

/* بطاقة التطبيق */
.app-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
    color: inherit;
}

.app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #156b68 0%, #caa453 100%);
}

.app-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(21, 107, 104, 0.3);
}

/* أيقونة التطبيق */
.app-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #156b68 0%, #caa453 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: all 0.3s ease;
}

.app-card:hover .app-icon {
    transform: scale(1.1) rotate(5deg);
}

/* عنوان التطبيق */
.app-title {
    color: #156b68;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* وصف التطبيق */
.app-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* حالة التطبيق */
.app-status {
    display: inline-block;
    padding: 8px 20px;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.app-status.coming-soon {
    background: #fff3e0;
    color: #ef6c00;
}

/* Responsive Design */
@media (max-width: 768px) {
    .portal-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .app-card {
        padding: 30px 20px;
    }
}
