/**
 * Quick Dashboard Improvements
 * 
 * Focused enhancements for immediate visual impact
 * Test these one by one to see what works best
 */

/* ==========================================
   QUICK WINS - IMMEDIATE IMPROVEMENTS
   ========================================== */

/* 1. Better Welcome Section */
.dashboard-content h2 {
    background: linear-gradient(135deg, #ff6f00, #ff8f00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

/* 2. Enhanced Info Cards */
.dashboard-content > div,
.pmpro_box {
    background: linear-gradient(135deg, #fff 0%, #fafbfc 100%);
    border: 1px solid #e3e8ef;
    border-radius: 16px;
    padding: 30px;
    margin: 25px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.dashboard-content > div:hover,
.pmpro_box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 111, 0, 0.3);
}

/* 3. Better Typography */
.dashboard-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 15px;
}

.dashboard-content strong {
    color: #ff6f00;
    font-weight: 600;
}

/* 4. Enhanced "No Membership" Message */
p:contains("You do not have an active membership") {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 235, 59, 0.05)) !important;
    border: 2px solid rgba(255, 193, 7, 0.3) !important;
    border-radius: 16px !important;
    padding: 30px !important;
    text-align: center !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #f57f17 !important;
    position: relative !important;
    margin: 30px 0 !important;
}

/* 5. Better Links */
.dashboard-content a[href*="membership-level"] {
    background: linear-gradient(135deg, #ff6f00, #ff8f00);
    color: white !important;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    display: inline-block;
    margin: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.3);
}

.dashboard-content a[href*="membership-level"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 111, 0, 0.4);
}

/* 6. Improved Sidebar (if visible) */
.dashboard-sidebar {
    background: linear-gradient(135deg, #fff 0%, #fafbfc 100%);
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e3e8ef;
}

.dashboard-sidebar::before {
    font-size: 2rem;
    background: linear-gradient(135deg, #ff6f00, #ff8f00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 7. Enhanced User Info Display */
.dashboard-content p:first-child {
    /* font-size: 18px;
    color: #2d3748;
    background: rgba(255, 111, 0, 0.05);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #ff6f00; */
}

/* ==========================================
   W-9 SECTION SPECIFIC IMPROVEMENTS
   ========================================== */

/* Since W-9 section isn't showing, style it for when it appears */
#pmpro_account-w9 {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%) !important;
    border: 2px solid #4caf50 !important;
    border-radius: 16px !important;
    padding: 30px !important;
    position: relative !important;
    margin: 30px 0 !important;
}


#pmpro_account-w9 h3 {
    color: #1f201f;
    font-size: 1.4rem;
    margin-top: 10px;
}

/* ==========================================
   MOBILE RESPONSIVE IMPROVEMENTS
   ========================================== */

@media (max-width: 768px) {
    .membership-dashboard {
        padding: 15px;
    }
    
    .dashboard-content {
        padding: 20px;
    }
    
    .dashboard-content h2 {
        font-size: 1.8rem;
    }
    
    .dashboard-content > div,
    .pmpro_box {
        padding: 20px;
        margin: 15px 0;
    }
}

/* ==========================================
   ANIMATION ENHANCEMENTS
   ========================================== */

.dashboard-content,
.dashboard-sidebar {
    animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   QUICK STATUS INDICATORS
   ========================================== */

/* Add visual indicators for membership status */
.membership-dashboard::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6f00, #ff8f00, #4caf50);
    z-index: 1000;
}
