/**
 * تنسيقات الواجهة الأمامية - Egypt Projects Map
 * Modern Public Styles
 * 
 * @package Egypt_Projects_Map
 * @version 2.0.0
 */

/* ========================================
   استيراد الخطوط
======================================== */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;600;700;800&display=swap');

/* ========================================
   دعم RTL
======================================== */
body.rtl .egypt-projects-map-container {
    direction: rtl;
    font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ========================================
   Container العام
======================================== */
.egypt-projects-map-container {
    font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1e293b;
    direction: rtl;
}

/* ========================================
   العناوين
======================================== */
.egypt-projects-map-container h1,
.egypt-projects-map-container h2,
.egypt-projects-map-container h3,
.egypt-projects-map-container h4,
.egypt-projects-map-container h5,
.egypt-projects-map-container h6 {
    font-family: 'Tajawal', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: #1e293b;
}

.egypt-projects-map-container h1 { font-size: 48px; }
.egypt-projects-map-container h2 { font-size: 36px; }
.egypt-projects-map-container h3 { font-size: 28px; }
.egypt-projects-map-container h4 { font-size: 24px; }
.egypt-projects-map-container h5 { font-size: 20px; }
.egypt-projects-map-container h6 { font-size: 18px; }

/* ========================================
   الروابط
======================================== */
.egypt-projects-map-container a {
    color: #6366f1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.egypt-projects-map-container a:hover {
    color: #4f46e5;
}

/* ========================================
   الأزرار
======================================== */
.egypt-projects-map-container .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Tajawal', sans-serif;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgb(99 102 241 / 0.3);
}

.egypt-projects-map-container .btn:hover {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    box-shadow: 0 10px 15px -3px rgb(99 102 241 / 0.4);
    transform: translateY(-2px);
}

.egypt-projects-map-container .btn:active {
    transform: translateY(0);
}

/* ========================================
   Loading Spinner
======================================== */
.egypt-projects-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    gap: 20px;
}

.egypt-projects-loading i {
    font-size: 48px;
    color: #6366f1;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.egypt-projects-loading p {
    font-size: 18px;
    font-weight: 600;
    color: #475569;
    margin: 0;
}

/* ========================================
   رسائل الحالة
======================================== */
.egypt-projects-message {
    padding: 20px 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.egypt-projects-message i {
    font-size: 20px;
}

.egypt-projects-message.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #065f46;
}

.egypt-projects-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #991b1b;
}

.egypt-projects-message.warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #92400e;
}

.egypt-projects-message.info {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #3730a3;
}

/* ========================================
   Responsive
======================================== */
@media (max-width: 768px) {
    .egypt-projects-map-container h1 { font-size: 32px; }
    .egypt-projects-map-container h2 { font-size: 28px; }
    .egypt-projects-map-container h3 { font-size: 24px; }
    .egypt-projects-map-container h4 { font-size: 20px; }
    .egypt-projects-map-container h5 { font-size: 18px; }
    .egypt-projects-map-container h6 { font-size: 16px; }
}

/* ========================================
   Utilities
======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 40px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 40px; }

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }
.p-5 { padding: 40px; }
