/**
 * تنسيقات الواجهة الأمامية
 * 
 * @package Nabd_AI_News
 */

/* تنسيقات عامة */
.nabd-news-form-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* تنسيقات النموذج */
.nabd-news-form {
    background: #fff;
}

/* تنسيقات الحقول */
.nabd-input:hover,
.nabd-textarea:hover {
    border-color: #8c8f94;
}

/* تنسيقات الأزرار */
.nabd-button {
    font-family: inherit;
}

.nabd-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.nabd-button .dashicons {
    vertical-align: middle;
    margin-left: 5px;
}

/* تنسيقات معرض الصور */
.nabd-gallery-item {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.nabd-gallery-item:hover {
    transform: scale(1.05);
}

.nabd-gallery-item img {
    display: block;
}

/* تنسيقات الرسائل */
.nabd-message {
    animation: nabd-slide-down 0.3s ease-out;
}

@keyframes nabd-slide-down {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* تنسيقات متجاوبة */
@media screen and (max-width: 768px) {
    .nabd-news-form-container {
        padding: 20px;
        margin: 15px;
        border-radius: 10px;
    }
    
    .nabd-form-header h2 {
        font-size: 20px;
    }
    
    .nabd-form-header p {
        font-size: 14px;
    }
    
    .nabd-form-group {
        margin-bottom: 20px;
    }
    
    .nabd-label {
        font-size: 14px;
    }
    
    .nabd-input,
    .nabd-textarea,
    .nabd-select {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .nabd-button-primary,
    .nabd-button-secondary,
    .nabd-button-large {
        width: 100%;
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .nabd-image-upload-area {
        padding: 30px 15px;
    }
    
    .nabd-image-preview {
        max-width: 100%;
    }
    
    .nabd-images-gallery {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
    }
    
    .nabd-images-gallery img {
        height: 120px;
    }
    
    .nabd-form-footer {
        padding: 15px;
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .nabd-news-form-container {
        padding: 15px;
        margin: 10px;
        border-radius: 8px;
    }
    
    .nabd-form-header {
        padding: 20px 15px;
    }
    
    .nabd-form-header h2 {
        font-size: 18px;
    }
    
    .nabd-form-group {
        margin-bottom: 18px;
    }
    
    .nabd-input,
    .nabd-textarea,
    .nabd-select {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .nabd-textarea {
        min-height: 150px;
    }
    
    .nabd-button-primary,
    .nabd-button-secondary {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .nabd-image-upload-area {
        padding: 25px 12px;
    }
    
    .nabd-upload-icon {
        font-size: 36px;
    }
    
    .nabd-images-gallery {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 8px;
    }
    
    .nabd-images-gallery img {
        height: 100px;
    }
    
    .nabd-help-text {
        font-size: 12px;
    }
    
    .nabd-form-footer {
        padding: 12px;
        font-size: 12px;
    }
}

/* تنسيقات إضافية للتحسين */
.nabd-input:focus,
.nabd-textarea:focus {
    animation: nabd-focus-pulse 0.3s ease-out;
}

@keyframes nabd-focus-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 113, 177, 0.4);
    }
    100% {
        box-shadow: 0 0 0 4px rgba(34, 113, 177, 0);
    }
}

/* تنسيقات زر الحذف */
.nabd-remove-image {
    transition: all 0.3s;
    font-size: 20px;
    line-height: 1;
    padding: 0;
}

.nabd-remove-image:hover {
    background: #a00 !important;
    transform: scale(1.1);
}

/* تنسيقات شريط التقدم */
.nabd-progress-bar {
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

/* تنسيقات رسالة تسجيل الدخول */
.nabd-login-message h3 {
    color: #1a1a1a;
    margin-bottom: 10px;
}

.nabd-login-message p {
    color: #666;
    margin-bottom: 20px;
}

/* تحسينات إضافية */
.nabd-form-group {
    position: relative;
}

.nabd-label {
    font-size: 15px;
}

.nabd-help-text {
    transition: color 0.3s;
}

.nabd-input:focus + .nabd-help-text,
.nabd-textarea:focus + .nabd-help-text {
    color: #2271b1;
}

/* تنسيقات الطباعة */
@media print {
    .nabd-news-form-container {
        box-shadow: none;
    }
    
    .nabd-button {
        display: none;
    }
}
