/**
 * VectorAI Gate - Frontend Styles
 * Author: Jeremiah Castillo - Kre8ivTech, LLC
 */

.vectorgate-results {
    margin: 2rem 0;
}

.vectorgate-results h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.vectorgate-matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.vectorgate-consultant-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.vectorgate-consultant-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.consultant-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.consultant-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.consultant-info {
    flex: 1;
}

.consultant-name {
    font-size: 1.25rem;
    margin: 0 0 0.5rem 0;
    color: #333;
}

.consultant-rank {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.rank-badge {
    background: #0073aa;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.match-score {
    color: #46b450;
    font-weight: 600;
    font-size: 0.875rem;
}

.consultant-body {
    margin: 1rem 0;
}

.consultant-bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.consultant-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    font-size: 0.9rem;
}

.detail-item strong {
    min-width: 100px;
    color: #555;
}

.detail-item span {
    color: #333;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.skill-tag {
    background: #f0f0f0;
    color: #333;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
}

.skill-tag.more {
    background: #e0e0e0;
    font-weight: 600;
}

.detail-item.rate {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #f0f0f0;
}

.rate-value {
    color: #0073aa;
    font-weight: 700;
    font-size: 1.1rem;
}

.consultant-footer {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.btn-request-proposal,
.btn-view-profile {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    border: none;
}

.btn-request-proposal {
    background: #0073aa;
    color: #fff;
}

.btn-request-proposal:hover {
    background: #005a87;
    color: #fff;
}

.btn-view-profile {
    background: #f0f0f0;
    color: #333;
    display: inline-block;
    line-height: 1.5;
}

.btn-view-profile:hover {
    background: #e0e0e0;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .vectorgate-matches-grid {
        grid-template-columns: 1fr;
    }
    
    .consultant-header {
        flex-direction: column;
        text-align: center;
    }
    
    .consultant-avatar {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}
