/* Business Card QR Frontend Styles */

.bcqr-card-page {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.bcqr-card-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.bcqr-card-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    text-align: center;
}

.bcqr-card-image {
    margin-bottom: 30px;
}

.bcqr-card-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #667eea;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.bcqr-card-name {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #333;
}

.bcqr-card-title {
    font-size: 20px;
    color: #667eea;
    margin: 0 0 10px 0;
    font-weight: 500;
}

.bcqr-card-company {
    font-size: 18px;
    color: #666;
    margin: 0 0 20px 0;
}

.bcqr-card-bio {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0 0 30px 0;
    text-align: left;
}

.bcqr-card-contact {
    margin: 30px 0;
    text-align: left;
}

.bcqr-contact-item {
    margin: 15px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bcqr-icon {
    font-size: 24px;
    width: 30px;
    text-align: center;
}

.bcqr-contact-item a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bcqr-contact-item a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.bcqr-card-social {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.bcqr-social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    min-width: 100px;
}

.bcqr-social-link:hover {
    background: #667eea;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.bcqr-social-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.bcqr-social-label {
    font-size: 14px;
    font-weight: 600;
}

/* Shortcode Display */
.bcqr-card-shortcode {
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    max-width: 400px;
    margin: 20px auto;
}

.bcqr-card-shortcode .bcqr-card-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.bcqr-card-shortcode .bcqr-card-name {
    font-size: 24px;
    margin: 0 0 10px 0;
}

.bcqr-card-shortcode .bcqr-qr-code {
    margin-top: 20px;
}

.bcqr-card-shortcode .bcqr-qr-code img {
    max-width: 200px;
    height: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .bcqr-card-container {
        padding: 20px 15px;
    }
    
    .bcqr-card-content {
        padding: 30px 20px;
    }
    
    .bcqr-card-name {
        font-size: 28px;
    }
    
    .bcqr-card-image img {
        width: 150px;
        height: 150px;
    }
    
    .bcqr-card-social {
        gap: 10px;
    }
    
    .bcqr-social-link {
        padding: 12px 15px;
        min-width: 80px;
    }
    
    .bcqr-social-icon {
        font-size: 24px;
    }
    
    .bcqr-social-label {
        font-size: 12px;
    }
}
