/* تحسينات العرض للهاتف المحمول - الصفحة الشخصية */

/* تصميم أزرار التبديل للهواتف */
.mobile-view-toggle {
    display: none;
}

@media (max-width: 767.98px) {
    .mobile-view-toggle {
        display: block;
        position: fixed;
        top: 70px; /* Below navbar */
        left: 50%;
        transform: translateX(-50%);
        z-index: 1050;
        background: linear-gradient(135deg, var(--primary-rose-gold), var(--dark-brown));
        border-radius: 30px;
        padding: 6px;
        box-shadow: 0 8px 24px rgba(199, 154, 114, 0.4);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .mobile-view-toggle .btn-group {
        display: flex;
        gap: 6px;
    }

    .mobile-view-toggle .toggle-btn {
        background: rgba(255, 255, 255, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.2);
        color: white;
        padding: 10px 20px;
        border-radius: 25px;
        font-size: 14px;
        font-weight: 600;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        white-space: nowrap;
        min-width: 110px;
        text-align: center;
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }

    .mobile-view-toggle .toggle-btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .mobile-view-toggle .toggle-btn:hover::before {
        width: 300px;
        height: 300px;
    }

    .mobile-view-toggle .toggle-btn.active {
        background: white;
        color: var(--primary-rose-gold);
        border-color: white;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transform: scale(1.05);
    }

    .mobile-view-toggle .toggle-btn:not(.active):hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.4);
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .mobile-view-toggle .toggle-btn i {
        margin-left: 6px;
        font-size: 13px;
        transition: transform 0.3s ease;
    }

    .mobile-view-toggle .toggle-btn.active i {
        transform: scale(1.1);
    }
}

/* تحسينات للهواتف (أقل من 768px) */
@media (max-width: 767.98px) {
    .profile-page .mobile-view-toggle {
        display: block;
    }
    
    /* إخفاء الأعمدة والعرض الانتقالي */
    .profile-page .profile-column {
        transition: all 0.4s ease-in-out;
    }
    
    .profile-page .profile-column.hidden {
        display: none !important;
    }
    
    .profile-page .profile-column.visible {
        display: block !important;
    }
    
    /* تحسين العرض في الشاشات الصغيرة */
    .profile-page .col-md-4, 
    .profile-page .col-md-8 {
        padding: 0 10px;
    }
    
    .profile-page .card {
        margin-bottom: 15px;
    }
    
    /* تحسين البطاقات للهواتف */
    .profile-page .card-header {
        padding: 12px 15px;
    }
    
    .profile-page .card-header h5, 
    .profile-page .card-header h6 {
        font-size: 14px;
        margin: 0;
    }
    
    .profile-page .card-body {
        padding: 15px;
    }
    
    /* تحسين عرض صورة الملف الشخصي */
    .profile-page .profile-avatar {
        width: 80px !important;
        height: 80px !important;
        margin: 0 auto 15px;
        display: block;
    }
    
    /* تحسين المسافات */
    .profile-page.row {
        margin: 0;
    }
    
    /* Note: .container-fluid is usually a parent of .profile-page, so we might not be able to scope it easily if it's outside. 
       But if .profile-page IS inside .container-fluid, we can't style the parent.
       However, looking at layout.php, .container-fluid contains $content.
       So .profile-page is inside .container-fluid.
       The original CSS had: .container-fluid { padding: 0; }
       We should probably avoid modifying the global container-fluid from here.
       If we really need to remove padding from the parent container, we might need a different approach or just accept the padding.
       For now, I will omit the .container-fluid rule to avoid global side effects.
    */
    
    /* تحسين عرض النص */
    .profile-page h6 {
        font-size: 16px;
    }
    
    .profile-page .text-muted {
        font-size: 14px;
    }
    
    /* تحسين أزرار التنقل */
    .profile-page .btn {
        padding: 8px 20px;
        font-size: 14px;
    }
    
    /* تحسين عرض المنشورات */
    .profile-page .post-card {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    /* تحسين العناوين */
    .profile-page .post-card .card-header {
        padding: 12px 15px;
    }
    
    .profile-page .post-card .card-body {
        padding: 15px;
    }
    
    /* تحسين المسافات بين البطاقات */
    .profile-page .card + .card {
        margin-top: 15px;
    }
    
    /* تحسين عرض المعلومات الشخصية */
    .profile-page .profile-info-item {
        margin-bottom: 10px;
    }
    
    .profile-page .profile-info-item p {
        margin-bottom: 5px;
    }
    
    /* إخفاء العناصر الزائدة في الهواتف */
    .profile-page .d-none-mobile {
        display: none !important;
    }
    
    /* تحسين ألوان الخلفية */
    .profile-page .bg-primary-rose-gold {
        background: linear-gradient(135deg, var(--primary-rose-gold), var(--dark-brown)) !important;
    }
    
    .profile-page .bg-accent-gold {
        background: var(--accent-gold) !important;
    }
    
    /* تحسين الظلال */
    .profile-page .card {
        box-shadow: 0 3px 12px rgba(199, 154, 114, 0.15) !important;
    }
    
    .profile-page .mobile-view-toggle {
        box-shadow: 0 5px 20px rgba(199, 154, 114, 0.4);
    }
    
    /* تحسين التدرجات */
    .profile-page .gradient-primary {
        background: linear-gradient(135deg, var(--primary-rose-gold), var(--dark-brown)) !important;
    }
    
    /* Fix container padding for profile page on mobile */
    body .container-fluid {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    
    /* Ensure profile page uses full width */
    .profile-page {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Better spacing for profile sections */
    .profile-page > .row {
        margin: 0 !important;
    }
    
    .profile-page .col-md-4,
    .profile-page .col-md-8 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
}

/* تحسينات إضافية للشاشات الصغيرة جداً (أقل من 480px) */
@media (max-width: 479.98px) {
    .profile-page .mobile-view-toggle {
        bottom: 15px;
        padding: 6px;
    }
    
    .profile-page .mobile-view-toggle .toggle-btn {
        padding: 6px 12px;
        font-size: 13px;
        min-width: 80px;
    }
    
    .profile-page .card-header h5, 
    .profile-page .card-header h6 {
        font-size: 13px;
    }
    
    .profile-page .profile-avatar {
        width: 70px !important;
        height: 70px !important;
    }
    
    .profile-page .btn {
        padding: 6px 16px;
        font-size: 13px;
    }
}

/* تأثيرات الانتقال للعناصر */
.profile-page .fade-in {
    animation: fadeIn 0.4s ease-in-out;
}

.profile-page .fade-out {
    animation: fadeOut 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* تحسين العرض للأجهزة اللوحية */
@media (min-width: 768px) and (max-width: 991.98px) {
    .profile-page .mobile-view-toggle {
        display: none;
    }
    
    .profile-page .profile-column {
        display: block !important;
    }
}
